diff --git a/grammar.js b/grammar.js index 9e639869..386bd226 100644 --- a/grammar.js +++ b/grammar.js @@ -29,7 +29,8 @@ module.exports = grammar({ extras: $ => [ $.comment, - /[\s\f\uFEFF\u2060\u200B]|\\\r?\n/ + /[\s\f\uFEFF\u2060\u200B]|\r?\n/, + $.line_continuation, ], conflicts: $ => [ @@ -40,6 +41,7 @@ module.exports = grammar({ [$.with_item, $._collection_elements], [$.named_expression, $.as_pattern], [$.match_statement, $.primary_expression], + [$.print_statement, $.primary_expression], ], supertypes: $ => [ @@ -55,9 +57,9 @@ module.exports = grammar({ $._newline, $._indent, $._dedent, - $._string_start, + $.string_start, $._string_content, - $._string_end, + $.string_end, // Mark comments as external tokens so that the external scanner is always // invoked, even if no external token is expected. This allows for better @@ -177,11 +179,11 @@ module.exports = grammar({ repeat(seq(',', field('argument', $.expression))), optional(',')) ), - prec(-10, seq( + prec(-3, prec.dynamic(-1, seq( 'print', commaSep1(field('argument', $.expression)), optional(',') - )) + ))), ), chevron: $ => seq( @@ -286,7 +288,7 @@ module.exports = grammar({ commaSep1( field( 'pattern', - alias(choice($.expression, $.list_splat_pattern), $.case_pattern), + alias($.expression, $.case_pattern), ) ), optional(','), @@ -427,7 +429,7 @@ module.exports = grammar({ exec_statement: $ => seq( 'exec', - field('code', $.string), + field('code', choice($.string, $.identifier)), optional( seq( 'in', @@ -556,7 +558,7 @@ module.exports = grammar({ ), default_parameter: $ => seq( - field('name', $.identifier), + field('name', choice($.identifier, $.tuple_pattern)), '=', field('value', $.expression) ), @@ -598,15 +600,15 @@ module.exports = grammar({ $.comparison_operator, $.not_operator, $.boolean_operator, - $.await, $.lambda, $.primary_expression, $.conditional_expression, $.named_expression, - $.as_pattern + $.as_pattern, ), primary_expression: $ => choice( + $.await, $.binary_operator, $.identifier, $.keyword_identifier, @@ -630,7 +632,8 @@ module.exports = grammar({ $.tuple, $.parenthesized_expression, $.generator_expression, - $.ellipsis + $.ellipsis, + alias($.list_splat_pattern, $.list_splat), ), not_operator: $ => prec(PREC.not, seq( @@ -757,6 +760,7 @@ module.exports = grammar({ $.expression_list, $.assignment, $.augmented_assignment, + $.pattern_list, $.yield ), @@ -930,15 +934,12 @@ module.exports = grammar({ ), string: $ => seq( - field('prefix', alias($._string_start, '"')), - repeat(choice( - field('interpolation', $.interpolation), - field('string_content', $.string_content) - )), - field('suffix', alias($._string_end, '"')) + $.string_start, + repeat(choice($.interpolation, $.string_content)), + $.string_end, ), - string_content: $ => prec.right(0, repeat1( + string_content: $ => prec.right(repeat1( choice( $._escape_interpolation, $.escape_sequence, @@ -947,7 +948,7 @@ module.exports = grammar({ ))), interpolation: $ => seq( - token.immediate('{'), + '{', field('expression', $._f_expression), optional('='), optional(field('type_conversion', $.type_conversion)), @@ -958,6 +959,7 @@ module.exports = grammar({ _f_expression: $ => choice( $.expression, $.expression_list, + $.pattern_list, $.yield, ), @@ -972,6 +974,7 @@ module.exports = grammar({ /\d{3}/, /\r?\n/, /['"abfrntv\\]/, + /N\{[^}]+\}/, ) ))), @@ -1050,6 +1053,8 @@ module.exports = grammar({ comment: $ => token(seq('#', /.*/)), + line_continuation: $ => token(seq('\\', choice(seq(optional('\r'), '\n'), '\0'))), + positional_separator: $ => '/', keyword_separator: $ => '*', } diff --git a/src/grammar.json b/src/grammar.json index ea5d6250..f93426a0 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -428,60 +428,64 @@ }, { "type": "PREC", - "value": -10, + "value": -3, "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "print" - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "expression" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "expression" + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "print" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } } - } - ] + ] + } } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + } } } ] @@ -983,17 +987,8 @@ "content": { "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "list_splat_pattern" - } - ] + "type": "SYMBOL", + "name": "expression" }, "named": true, "value": "case_pattern" @@ -1014,17 +1009,8 @@ "content": { "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "list_splat_pattern" - } - ] + "type": "SYMBOL", + "name": "expression" }, "named": true, "value": "case_pattern" @@ -1780,8 +1766,17 @@ "type": "FIELD", "name": "code", "content": { - "type": "SYMBOL", - "name": "string" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] } }, { @@ -2411,8 +2406,17 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "tuple_pattern" + } + ] } }, { @@ -2593,10 +2597,6 @@ "type": "SYMBOL", "name": "boolean_operator" }, - { - "type": "SYMBOL", - "name": "await" - }, { "type": "SYMBOL", "name": "lambda" @@ -2622,6 +2622,10 @@ "primary_expression": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "await" + }, { "type": "SYMBOL", "name": "binary_operator" @@ -2717,6 +2721,15 @@ { "type": "SYMBOL", "name": "ellipsis" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "list_splat_pattern" + }, + "named": true, + "value": "list_splat" } ] }, @@ -3714,6 +3727,10 @@ "type": "SYMBOL", "name": "augmented_assignment" }, + { + "type": "SYMBOL", + "name": "pattern_list" + }, { "type": "SYMBOL", "name": "yield" @@ -4595,17 +4612,8 @@ "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "prefix", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_string_start" - }, - "named": false, - "value": "\"" - } + "type": "SYMBOL", + "name": "string_start" }, { "type": "REPEAT", @@ -4613,36 +4621,19 @@ "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "interpolation", - "content": { - "type": "SYMBOL", - "name": "interpolation" - } + "type": "SYMBOL", + "name": "interpolation" }, { - "type": "FIELD", - "name": "string_content", - "content": { - "type": "SYMBOL", - "name": "string_content" - } + "type": "SYMBOL", + "name": "string_content" } ] } }, { - "type": "FIELD", - "name": "suffix", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_string_end" - }, - "named": false, - "value": "\"" - } + "type": "SYMBOL", + "name": "string_end" } ] }, @@ -4678,11 +4669,8 @@ "type": "SEQ", "members": [ { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "{" - } + "type": "STRING", + "value": "{" }, { "type": "FIELD", @@ -4753,6 +4741,10 @@ "type": "SYMBOL", "name": "expression_list" }, + { + "type": "SYMBOL", + "name": "pattern_list" + }, { "type": "SYMBOL", "name": "yield" @@ -4813,6 +4805,10 @@ { "type": "PATTERN", "value": "['\"abfrntv\\\\]" + }, + { + "type": "PATTERN", + "value": "N\\{[^}]+\\}" } ] } @@ -5283,6 +5279,48 @@ ] } }, + "line_continuation": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\r" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "\n" + } + ] + }, + { + "type": "STRING", + "value": "\u0000" + } + ] + } + ] + } + }, "positional_separator": { "type": "STRING", "value": "/" @@ -5299,7 +5337,11 @@ }, { "type": "PATTERN", - "value": "[\\s\\f\\uFEFF\\u2060\\u200B]|\\\\\\r?\\n" + "value": "[\\s\\f\\uFEFF\\u2060\\u200B]|\\r?\\n" + }, + { + "type": "SYMBOL", + "name": "line_continuation" } ], "conflicts": [ @@ -5330,6 +5372,10 @@ [ "match_statement", "primary_expression" + ], + [ + "print_statement", + "primary_expression" ] ], "precedences": [], @@ -5348,7 +5394,7 @@ }, { "type": "SYMBOL", - "name": "_string_start" + "name": "string_start" }, { "type": "SYMBOL", @@ -5356,7 +5402,7 @@ }, { "type": "SYMBOL", - "name": "_string_end" + "name": "string_end" }, { "type": "SYMBOL", diff --git a/src/node-types.json b/src/node-types.json index ddd5588a..bcf7f12a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -115,10 +115,6 @@ "type": "as_pattern", "named": true }, - { - "type": "await", - "named": true - }, { "type": "boolean_operator", "named": true @@ -229,6 +225,10 @@ "type": "attribute", "named": true }, + { + "type": "await", + "named": true + }, { "type": "binary_operator", "named": true @@ -281,6 +281,10 @@ "type": "list_comprehension", "named": true }, + { + "type": "list_splat", + "named": true + }, { "type": "none", "named": true @@ -455,6 +459,10 @@ "type": "expression_list", "named": true }, + { + "type": "pattern_list", + "named": true + }, { "type": "yield", "named": true @@ -595,6 +603,10 @@ "type": "expression_list", "named": true }, + { + "type": "pattern_list", + "named": true + }, { "type": "yield", "named": true @@ -832,29 +844,6 @@ } } }, - { - "type": "case_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "attribute", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "subscript", - "named": true - } - ] - } - }, { "type": "chevron", "named": true, @@ -1063,6 +1052,10 @@ { "type": "identifier", "named": true + }, + { + "type": "tuple_pattern", + "named": true } ] }, @@ -1287,6 +1280,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "identifier", + "named": true + }, { "type": "string", "named": true @@ -1466,6 +1463,10 @@ "type": "expression_list", "named": true }, + { + "type": "pattern_list", + "named": true + }, { "type": "yield", "named": true @@ -1760,6 +1761,10 @@ "type": "expression_list", "named": true }, + { + "type": "pattern_list", + "named": true + }, { "type": "yield", "named": true @@ -1940,9 +1945,21 @@ "multiple": false, "required": true, "types": [ + { + "type": "attribute", + "named": true + }, { "type": "expression", "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "subscript", + "named": true } ] } @@ -2353,47 +2370,28 @@ { "type": "string", "named": true, - "fields": { - "interpolation": { - "multiple": true, - "required": false, - "types": [ - { - "type": "interpolation", - "named": true - } - ] - }, - "prefix": { - "multiple": false, - "required": true, - "types": [ - { - "type": "\"", - "named": false - } - ] - }, - "string_content": { - "multiple": true, - "required": false, - "types": [ - { - "type": "string_content", - "named": true - } - ] - }, - "suffix": { - "multiple": false, - "required": true, - "types": [ - { - "type": "\"", - "named": false - } - ] - } + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "interpolation", + "named": true + }, + { + "type": "string_content", + "named": true + }, + { + "type": "string_end", + "named": true + }, + { + "type": "string_start", + "named": true + } + ] } }, { @@ -2761,10 +2759,6 @@ "type": "!=", "named": false }, - { - "type": "\"", - "named": false - }, { "type": "%", "named": false @@ -3065,6 +3059,10 @@ "type": "lambda", "named": false }, + { + "type": "line_continuation", + "named": true + }, { "type": "match", "named": false @@ -3105,6 +3103,14 @@ "type": "return", "named": false }, + { + "type": "string_end", + "named": true + }, + { + "type": "string_start", + "named": true + }, { "type": "true", "named": true diff --git a/src/parser.c b/src/parser.c index cab1fe9a..35a78ffa 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2226 -#define LARGE_STATE_COUNT 175 +#define STATE_COUNT 2545 +#define LARGE_STATE_COUNT 186 #define SYMBOL_COUNT 245 #define ALIAS_COUNT 5 #define TOKEN_COUNT 106 #define EXTERNAL_TOKEN_COUNT 10 -#define FIELD_COUNT 36 +#define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 134 +#define PRODUCTION_ID_COUNT 130 enum { sym_identifier = 1, @@ -103,25 +103,25 @@ enum { sym_ellipsis = 84, anon_sym_LBRACE = 85, anon_sym_RBRACE = 86, - anon_sym_LBRACE2 = 87, - sym__escape_interpolation = 88, - sym_escape_sequence = 89, - sym__not_escape_sequence = 90, - aux_sym_format_specifier_token1 = 91, - sym_type_conversion = 92, - sym_integer = 93, - sym_float = 94, - anon_sym_await = 95, - sym_true = 96, - sym_false = 97, - sym_none = 98, - sym_comment = 99, + sym__escape_interpolation = 87, + sym_escape_sequence = 88, + sym__not_escape_sequence = 89, + aux_sym_format_specifier_token1 = 90, + sym_type_conversion = 91, + sym_integer = 92, + sym_float = 93, + anon_sym_await = 94, + sym_true = 95, + sym_false = 96, + sym_none = 97, + sym_comment = 98, + sym_line_continuation = 99, sym__newline = 100, sym__indent = 101, sym__dedent = 102, - sym__string_start = 103, + sym_string_start = 103, sym__string_content = 104, - sym__string_end = 105, + sym_string_end = 105, sym_module = 106, sym__statement = 107, sym__simple_statements = 108, @@ -356,7 +356,6 @@ static const char * const ts_symbol_names[] = { [sym_ellipsis] = "ellipsis", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", - [anon_sym_LBRACE2] = "{", [sym__escape_interpolation] = "_escape_interpolation", [sym_escape_sequence] = "escape_sequence", [sym__not_escape_sequence] = "_not_escape_sequence", @@ -369,12 +368,13 @@ static const char * const ts_symbol_names[] = { [sym_false] = "false", [sym_none] = "none", [sym_comment] = "comment", + [sym_line_continuation] = "line_continuation", [sym__newline] = "_newline", [sym__indent] = "_indent", [sym__dedent] = "_dedent", - [sym__string_start] = "\"", + [sym_string_start] = "string_start", [sym__string_content] = "_string_content", - [sym__string_end] = "\"", + [sym_string_end] = "string_end", [sym_module] = "module", [sym__statement] = "_statement", [sym__simple_statements] = "_simple_statements", @@ -609,7 +609,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_ellipsis] = sym_ellipsis, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_LBRACE2] = anon_sym_LBRACE, [sym__escape_interpolation] = sym__escape_interpolation, [sym_escape_sequence] = sym_escape_sequence, [sym__not_escape_sequence] = sym__not_escape_sequence, @@ -622,12 +621,13 @@ static const TSSymbol ts_symbol_map[] = { [sym_false] = sym_false, [sym_none] = sym_none, [sym_comment] = sym_comment, + [sym_line_continuation] = sym_line_continuation, [sym__newline] = sym__newline, [sym__indent] = sym__indent, [sym__dedent] = sym__dedent, - [sym__string_start] = sym__string_start, + [sym_string_start] = sym_string_start, [sym__string_content] = sym__string_content, - [sym__string_end] = sym__string_start, + [sym_string_end] = sym_string_end, [sym_module] = sym_module, [sym__statement] = sym__statement, [sym__simple_statements] = sym__simple_statements, @@ -1123,10 +1123,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACE2] = { - .visible = true, - .named = false, - }, [sym__escape_interpolation] = { .visible = false, .named = true, @@ -1175,6 +1171,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_line_continuation] = { + .visible = true, + .named = true, + }, [sym__newline] = { .visible = false, .named = true, @@ -1187,17 +1187,17 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__string_start] = { + [sym_string_start] = { .visible = true, - .named = false, + .named = true, }, [sym__string_content] = { .visible = false, .named = true, }, - [sym__string_end] = { + [sym_string_end] = { .visible = true, - .named = false, + .named = true, }, [sym_module] = { .visible = true, @@ -1797,27 +1797,23 @@ enum { field_format_specifier = 13, field_function = 14, field_guard = 15, - field_interpolation = 16, - field_key = 17, - field_left = 18, - field_module_name = 19, - field_name = 20, - field_object = 21, - field_operator = 22, - field_operators = 23, - field_parameters = 24, - field_pattern = 25, - field_prefix = 26, - field_return_type = 27, - field_right = 28, - field_string_content = 29, - field_subject = 30, - field_subscript = 31, - field_suffix = 32, - field_superclasses = 33, - field_type = 34, - field_type_conversion = 35, - field_value = 36, + field_key = 16, + field_left = 17, + field_module_name = 18, + field_name = 19, + field_object = 20, + field_operator = 21, + field_operators = 22, + field_parameters = 23, + field_pattern = 24, + field_return_type = 25, + field_right = 26, + field_subject = 27, + field_subscript = 28, + field_superclasses = 29, + field_type = 30, + field_type_conversion = 31, + field_value = 32, }; static const char * const ts_field_names[] = { @@ -1837,7 +1833,6 @@ static const char * const ts_field_names[] = { [field_format_specifier] = "format_specifier", [field_function] = "function", [field_guard] = "guard", - [field_interpolation] = "interpolation", [field_key] = "key", [field_left] = "left", [field_module_name] = "module_name", @@ -1847,13 +1842,10 @@ static const char * const ts_field_names[] = { [field_operators] = "operators", [field_parameters] = "parameters", [field_pattern] = "pattern", - [field_prefix] = "prefix", [field_return_type] = "return_type", [field_right] = "right", - [field_string_content] = "string_content", [field_subject] = "subject", [field_subscript] = "subscript", - [field_suffix] = "suffix", [field_superclasses] = "superclasses", [field_type] = "type", [field_type_conversion] = "type_conversion", @@ -1861,561 +1853,539 @@ static const char * const ts_field_names[] = { }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [2] = {.index = 0, .length = 2}, - [3] = {.index = 2, .length = 1}, - [4] = {.index = 3, .length = 1}, - [5] = {.index = 4, .length = 1}, - [6] = {.index = 5, .length = 1}, - [8] = {.index = 6, .length = 1}, - [9] = {.index = 7, .length = 1}, - [10] = {.index = 8, .length = 1}, - [11] = {.index = 9, .length = 2}, - [12] = {.index = 11, .length = 2}, - [13] = {.index = 13, .length = 1}, - [14] = {.index = 14, .length = 1}, - [15] = {.index = 15, .length = 4}, - [16] = {.index = 19, .length = 4}, - [17] = {.index = 23, .length = 2}, - [18] = {.index = 25, .length = 1}, - [19] = {.index = 26, .length = 2}, - [20] = {.index = 28, .length = 1}, - [21] = {.index = 29, .length = 1}, - [22] = {.index = 30, .length = 1}, - [23] = {.index = 31, .length = 2}, - [24] = {.index = 33, .length = 2}, - [25] = {.index = 35, .length = 2}, - [26] = {.index = 37, .length = 3}, - [27] = {.index = 40, .length = 1}, - [28] = {.index = 41, .length = 2}, - [29] = {.index = 43, .length = 1}, - [30] = {.index = 44, .length = 2}, - [31] = {.index = 46, .length = 1}, - [32] = {.index = 47, .length = 1}, - [33] = {.index = 48, .length = 2}, - [34] = {.index = 50, .length = 2}, - [35] = {.index = 52, .length = 1}, - [36] = {.index = 53, .length = 2}, - [37] = {.index = 55, .length = 1}, - [39] = {.index = 56, .length = 1}, - [40] = {.index = 57, .length = 2}, - [41] = {.index = 59, .length = 1}, - [42] = {.index = 60, .length = 2}, - [43] = {.index = 62, .length = 1}, - [44] = {.index = 63, .length = 2}, - [45] = {.index = 65, .length = 2}, - [46] = {.index = 67, .length = 2}, - [47] = {.index = 69, .length = 2}, - [48] = {.index = 30, .length = 1}, - [49] = {.index = 71, .length = 1}, - [50] = {.index = 72, .length = 2}, - [51] = {.index = 74, .length = 1}, - [52] = {.index = 75, .length = 2}, - [53] = {.index = 77, .length = 2}, - [54] = {.index = 79, .length = 2}, - [55] = {.index = 81, .length = 2}, - [56] = {.index = 81, .length = 2}, - [58] = {.index = 83, .length = 2}, - [59] = {.index = 85, .length = 2}, - [60] = {.index = 87, .length = 3}, - [61] = {.index = 90, .length = 3}, - [62] = {.index = 93, .length = 3}, - [63] = {.index = 96, .length = 2}, - [64] = {.index = 98, .length = 2}, - [65] = {.index = 100, .length = 3}, - [66] = {.index = 103, .length = 1}, - [67] = {.index = 104, .length = 3}, - [68] = {.index = 107, .length = 3}, - [69] = {.index = 110, .length = 2}, - [70] = {.index = 112, .length = 2}, - [71] = {.index = 114, .length = 3}, - [72] = {.index = 117, .length = 3}, - [73] = {.index = 120, .length = 3}, - [74] = {.index = 123, .length = 3}, - [75] = {.index = 31, .length = 2}, - [76] = {.index = 126, .length = 1}, - [77] = {.index = 127, .length = 3}, - [78] = {.index = 130, .length = 2}, - [79] = {.index = 132, .length = 2}, - [80] = {.index = 134, .length = 2}, - [81] = {.index = 136, .length = 3}, - [82] = {.index = 139, .length = 1}, - [83] = {.index = 140, .length = 2}, - [84] = {.index = 142, .length = 2}, - [85] = {.index = 144, .length = 4}, - [86] = {.index = 148, .length = 4}, - [87] = {.index = 152, .length = 4}, - [88] = {.index = 156, .length = 3}, - [89] = {.index = 159, .length = 2}, - [90] = {.index = 161, .length = 3}, - [91] = {.index = 164, .length = 3}, - [92] = {.index = 167, .length = 4}, - [94] = {.index = 171, .length = 4}, - [95] = {.index = 175, .length = 4}, - [96] = {.index = 179, .length = 3}, - [97] = {.index = 182, .length = 3}, - [98] = {.index = 185, .length = 2}, - [99] = {.index = 187, .length = 3}, - [100] = {.index = 190, .length = 5}, - [101] = {.index = 195, .length = 1}, - [102] = {.index = 196, .length = 2}, - [103] = {.index = 198, .length = 2}, - [104] = {.index = 200, .length = 3}, + [3] = {.index = 0, .length = 1}, + [4] = {.index = 1, .length = 1}, + [6] = {.index = 2, .length = 1}, + [7] = {.index = 3, .length = 1}, + [8] = {.index = 4, .length = 1}, + [9] = {.index = 5, .length = 2}, + [10] = {.index = 7, .length = 2}, + [11] = {.index = 9, .length = 1}, + [12] = {.index = 10, .length = 1}, + [13] = {.index = 11, .length = 2}, + [14] = {.index = 13, .length = 1}, + [15] = {.index = 14, .length = 2}, + [16] = {.index = 16, .length = 1}, + [17] = {.index = 17, .length = 1}, + [18] = {.index = 18, .length = 1}, + [19] = {.index = 19, .length = 2}, + [20] = {.index = 21, .length = 2}, + [21] = {.index = 23, .length = 2}, + [22] = {.index = 25, .length = 3}, + [23] = {.index = 28, .length = 1}, + [24] = {.index = 29, .length = 2}, + [25] = {.index = 31, .length = 1}, + [26] = {.index = 32, .length = 2}, + [27] = {.index = 34, .length = 1}, + [28] = {.index = 35, .length = 1}, + [29] = {.index = 36, .length = 2}, + [30] = {.index = 38, .length = 2}, + [31] = {.index = 40, .length = 1}, + [32] = {.index = 41, .length = 2}, + [33] = {.index = 43, .length = 1}, + [35] = {.index = 44, .length = 1}, + [36] = {.index = 45, .length = 2}, + [37] = {.index = 47, .length = 1}, + [38] = {.index = 48, .length = 2}, + [39] = {.index = 50, .length = 1}, + [40] = {.index = 51, .length = 2}, + [41] = {.index = 53, .length = 2}, + [42] = {.index = 55, .length = 2}, + [43] = {.index = 57, .length = 2}, + [44] = {.index = 18, .length = 1}, + [45] = {.index = 59, .length = 1}, + [46] = {.index = 60, .length = 2}, + [47] = {.index = 62, .length = 1}, + [48] = {.index = 63, .length = 2}, + [49] = {.index = 65, .length = 2}, + [50] = {.index = 67, .length = 2}, + [51] = {.index = 69, .length = 2}, + [52] = {.index = 69, .length = 2}, + [54] = {.index = 71, .length = 2}, + [55] = {.index = 73, .length = 2}, + [56] = {.index = 75, .length = 3}, + [57] = {.index = 78, .length = 3}, + [58] = {.index = 81, .length = 3}, + [59] = {.index = 84, .length = 2}, + [60] = {.index = 86, .length = 2}, + [61] = {.index = 88, .length = 3}, + [62] = {.index = 91, .length = 1}, + [63] = {.index = 92, .length = 3}, + [64] = {.index = 95, .length = 3}, + [65] = {.index = 98, .length = 2}, + [66] = {.index = 100, .length = 2}, + [67] = {.index = 102, .length = 3}, + [68] = {.index = 105, .length = 3}, + [69] = {.index = 108, .length = 3}, + [70] = {.index = 111, .length = 3}, + [71] = {.index = 19, .length = 2}, + [72] = {.index = 114, .length = 1}, + [73] = {.index = 115, .length = 3}, + [74] = {.index = 118, .length = 2}, + [75] = {.index = 120, .length = 2}, + [76] = {.index = 122, .length = 2}, + [77] = {.index = 124, .length = 3}, + [78] = {.index = 127, .length = 1}, + [79] = {.index = 128, .length = 2}, + [80] = {.index = 130, .length = 2}, + [81] = {.index = 132, .length = 4}, + [82] = {.index = 136, .length = 4}, + [83] = {.index = 140, .length = 4}, + [84] = {.index = 144, .length = 3}, + [85] = {.index = 147, .length = 2}, + [86] = {.index = 149, .length = 3}, + [87] = {.index = 152, .length = 3}, + [88] = {.index = 155, .length = 4}, + [90] = {.index = 159, .length = 4}, + [91] = {.index = 163, .length = 4}, + [92] = {.index = 167, .length = 3}, + [93] = {.index = 170, .length = 3}, + [94] = {.index = 173, .length = 2}, + [95] = {.index = 175, .length = 3}, + [96] = {.index = 178, .length = 5}, + [97] = {.index = 183, .length = 1}, + [98] = {.index = 184, .length = 2}, + [99] = {.index = 186, .length = 2}, + [100] = {.index = 188, .length = 3}, + [101] = {.index = 191, .length = 4}, + [102] = {.index = 195, .length = 4}, + [103] = {.index = 199, .length = 4}, [105] = {.index = 203, .length = 4}, - [106] = {.index = 207, .length = 4}, - [107] = {.index = 211, .length = 4}, - [109] = {.index = 215, .length = 4}, - [110] = {.index = 219, .length = 3}, - [111] = {.index = 222, .length = 2}, - [112] = {.index = 224, .length = 3}, - [113] = {.index = 227, .length = 3}, - [114] = {.index = 230, .length = 3}, - [115] = {.index = 233, .length = 4}, - [116] = {.index = 237, .length = 4}, - [117] = {.index = 241, .length = 4}, - [118] = {.index = 245, .length = 5}, - [119] = {.index = 250, .length = 5}, - [120] = {.index = 255, .length = 3}, - [121] = {.index = 258, .length = 3}, - [122] = {.index = 261, .length = 4}, - [123] = {.index = 265, .length = 3}, - [124] = {.index = 268, .length = 4}, - [125] = {.index = 272, .length = 4}, - [126] = {.index = 276, .length = 5}, - [127] = {.index = 281, .length = 5}, - [129] = {.index = 286, .length = 4}, - [130] = {.index = 290, .length = 4}, - [131] = {.index = 294, .length = 4}, - [132] = {.index = 298, .length = 5}, - [133] = {.index = 303, .length = 5}, + [106] = {.index = 207, .length = 3}, + [107] = {.index = 210, .length = 2}, + [108] = {.index = 212, .length = 3}, + [109] = {.index = 215, .length = 3}, + [110] = {.index = 218, .length = 3}, + [111] = {.index = 221, .length = 4}, + [112] = {.index = 225, .length = 4}, + [113] = {.index = 229, .length = 4}, + [114] = {.index = 233, .length = 5}, + [115] = {.index = 238, .length = 5}, + [116] = {.index = 243, .length = 3}, + [117] = {.index = 246, .length = 3}, + [118] = {.index = 249, .length = 4}, + [119] = {.index = 253, .length = 3}, + [120] = {.index = 256, .length = 4}, + [121] = {.index = 260, .length = 4}, + [122] = {.index = 264, .length = 5}, + [123] = {.index = 269, .length = 5}, + [125] = {.index = 274, .length = 4}, + [126] = {.index = 278, .length = 4}, + [127] = {.index = 282, .length = 4}, + [128] = {.index = 286, .length = 5}, + [129] = {.index = 291, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = - {field_prefix, 0}, - {field_suffix, 1}, - [2] = - {field_string_content, 0}, - [3] = - {field_interpolation, 0}, - [4] = {field_name, 1, .inherited = true}, - [5] = + [1] = {field_name, 0}, - [6] = + [2] = {field_argument, 1}, - [7] = + [3] = {field_value, 0}, - [8] = + [4] = {field_code, 1}, - [9] = + [5] = {field_argument, 1}, {field_operator, 0}, - [11] = + [7] = {field_arguments, 1}, {field_function, 0}, - [13] = + [9] = {field_operators, 1, .inherited = true}, - [14] = + [10] = {field_definition, 1}, - [15] = - {field_interpolation, 1, .inherited = true}, - {field_prefix, 0}, - {field_string_content, 1, .inherited = true}, - {field_suffix, 2}, - [19] = - {field_interpolation, 0, .inherited = true}, - {field_interpolation, 1, .inherited = true}, - {field_string_content, 0, .inherited = true}, - {field_string_content, 1, .inherited = true}, - [23] = + [11] = {field_name, 0}, {field_name, 1, .inherited = true}, - [25] = + [13] = {field_argument, 2, .inherited = true}, - [26] = + [14] = {field_argument, 1}, {field_argument, 2, .inherited = true}, - [28] = + [16] = {field_cause, 2}, - [29] = + [17] = {field_subject, 1}, - [30] = + [18] = {field_body, 2}, - [31] = + [19] = {field_name, 0}, {field_value, 2}, - [33] = + [21] = {field_left, 0}, {field_type, 2}, - [35] = + [23] = {field_left, 0}, {field_right, 2}, - [37] = + [25] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [40] = + [28] = {field_alias, 2}, - [41] = + [29] = {field_attribute, 2}, {field_object, 0}, - [43] = + [31] = {field_operators, 0}, - [44] = + [32] = {field_operators, 0, .inherited = true}, {field_operators, 1, .inherited = true}, - [46] = + [34] = {field_expression, 1}, - [47] = + [35] = {field_name, 1}, - [48] = + [36] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [50] = + [38] = {field_alias, 2}, {field_name, 0}, - [52] = + [40] = {field_name, 3, .inherited = true}, - [53] = + [41] = {field_module_name, 1}, {field_name, 3, .inherited = true}, - [55] = + [43] = {field_module_name, 1}, - [56] = + [44] = {field_body, 1}, - [57] = + [45] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, - [59] = + [47] = {field_cause, 3}, - [60] = + [48] = {field_condition, 1}, {field_consequence, 3}, - [62] = + [50] = {field_alternative, 0}, - [63] = + [51] = {field_alternative, 3, .inherited = true}, {field_subject, 1}, - [65] = + [53] = {field_subject, 1}, {field_subject, 2, .inherited = true}, - [67] = + [55] = {field_subject, 0, .inherited = true}, {field_subject, 1, .inherited = true}, - [69] = + [57] = {field_body, 3}, {field_condition, 1}, - [71] = + [59] = {field_body, 3}, - [72] = + [60] = {field_body, 3}, {field_name, 1}, - [74] = + [62] = {field_type, 2}, - [75] = + [63] = {field_body, 3}, {field_parameters, 1}, - [77] = + [65] = {field_key, 0}, {field_value, 2}, - [79] = + [67] = {field_subscript, 2}, {field_value, 0}, - [81] = + [69] = {field_operators, 0}, {field_operators, 1}, - [83] = + [71] = {field_expression, 1}, {field_type_conversion, 2}, - [85] = + [73] = {field_expression, 1}, {field_format_specifier, 2}, - [87] = + [75] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 3}, - [90] = + [78] = {field_alternative, 4, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, - [93] = + [81] = {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [96] = + [84] = {field_alternative, 4, .inherited = true}, {field_subject, 1}, - [98] = + [86] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [100] = + [88] = {field_alternative, 4, .inherited = true}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [103] = + [91] = {field_body, 4}, - [104] = + [92] = {field_alternative, 4}, {field_body, 3}, {field_condition, 1}, - [107] = + [95] = {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [110] = + [98] = {field_body, 2}, {field_body, 3}, - [112] = + [100] = {field_body, 3}, {field_body, 4}, - [114] = + [102] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [117] = + [105] = {field_body, 3}, {field_body, 4}, {field_name, 1}, - [120] = + [108] = {field_body, 4}, {field_name, 1}, {field_superclasses, 2}, - [123] = + [111] = {field_left, 0}, {field_right, 4}, {field_type, 2}, - [126] = + [114] = {field_subscript, 1}, - [127] = + [115] = {field_subscript, 2}, {field_subscript, 3, .inherited = true}, {field_value, 0}, - [130] = + [118] = {field_subscript, 0, .inherited = true}, {field_subscript, 1, .inherited = true}, - [132] = + [120] = {field_expression, 1}, {field_type_conversion, 3}, - [134] = + [122] = {field_expression, 1}, {field_format_specifier, 3}, - [136] = + [124] = {field_expression, 1}, {field_format_specifier, 3}, {field_type_conversion, 2}, - [139] = + [127] = {field_name, 4, .inherited = true}, - [140] = + [128] = {field_module_name, 1}, {field_name, 4, .inherited = true}, - [142] = + [130] = {field_left, 1}, {field_right, 3}, - [144] = + [132] = {field_alternative, 4, .inherited = true}, {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, - [148] = + [136] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [152] = + [140] = {field_alternative, 5, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [156] = + [144] = {field_alternative, 5, .inherited = true}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [159] = + [147] = {field_body, 4}, {field_body, 5}, - [161] = + [149] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [164] = + [152] = {field_body, 5}, {field_left, 1}, {field_right, 3}, - [167] = + [155] = {field_alternative, 5}, {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [171] = + [159] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_parameters, 2}, - [175] = + [163] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_superclasses, 2}, - [179] = + [167] = {field_name, 0}, {field_type, 2}, {field_value, 4}, - [182] = + [170] = {field_expression, 1}, {field_format_specifier, 4}, {field_type_conversion, 3}, - [185] = + [173] = {field_left, 2}, {field_right, 4}, - [187] = + [175] = {field_left, 1}, {field_right, 3}, {field_right, 4}, - [190] = + [178] = {field_alternative, 5, .inherited = true}, {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [195] = + [183] = {field_pattern, 1}, - [196] = + [184] = {field_consequence, 3}, {field_pattern, 1}, - [198] = + [186] = {field_pattern, 0, .inherited = true}, {field_pattern, 1, .inherited = true}, - [200] = + [188] = {field_body, 6}, {field_left, 2}, {field_right, 4}, - [203] = + [191] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_parameters, 3}, - [207] = + [195] = {field_alternative, 6}, {field_body, 5}, {field_left, 1}, {field_right, 3}, - [211] = + [199] = {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [215] = + [203] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [219] = + [207] = {field_left, 2}, {field_right, 4}, {field_right, 5}, - [222] = + [210] = {field_consequence, 4}, {field_pattern, 1}, - [224] = + [212] = {field_consequence, 3}, {field_consequence, 4}, {field_pattern, 1}, - [227] = + [215] = {field_consequence, 4}, {field_guard, 2}, {field_pattern, 1}, - [230] = + [218] = {field_consequence, 4}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [233] = + [221] = {field_alternative, 7}, {field_body, 6}, {field_left, 2}, {field_right, 4}, - [237] = + [225] = {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [241] = + [229] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [245] = + [233] = {field_alternative, 7}, {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [250] = + [238] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [255] = + [243] = {field_consequence, 4}, {field_consequence, 5}, {field_pattern, 1}, - [258] = + [246] = {field_consequence, 5}, {field_guard, 3}, {field_pattern, 1}, - [261] = + [249] = {field_consequence, 4}, {field_consequence, 5}, {field_guard, 2}, {field_pattern, 1}, - [265] = + [253] = {field_consequence, 5}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [268] = + [256] = {field_consequence, 4}, {field_consequence, 5}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [272] = + [260] = {field_consequence, 5}, {field_guard, 3}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [276] = + [264] = {field_alternative, 8}, {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [281] = + [269] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [286] = + [274] = {field_consequence, 5}, {field_consequence, 6}, {field_guard, 3}, {field_pattern, 1}, - [290] = + [278] = {field_consequence, 5}, {field_consequence, 6}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [294] = + [282] = {field_consequence, 6}, {field_guard, 4}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [298] = + [286] = {field_consequence, 5}, {field_consequence, 6}, {field_guard, 3}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [303] = + [291] = {field_consequence, 6}, {field_consequence, 7}, {field_guard, 4}, @@ -2428,152 +2398,155 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = sym_identifier, }, - [7] = { + [2] = { + [0] = sym_list_splat, + }, + [5] = { [1] = sym_identifier, }, - [27] = { + [23] = { [2] = alias_sym_as_pattern_target, }, - [38] = { + [34] = { [1] = sym_parenthesized_expression, }, - [42] = { + [38] = { [3] = sym_block, }, - [47] = { + [43] = { [3] = sym_block, }, - [48] = { + [44] = { [2] = sym_block, }, - [49] = { + [45] = { [3] = sym_block, }, - [50] = { + [46] = { [3] = sym_block, }, - [55] = { + [51] = { [0] = anon_alias_sym_notin, [1] = anon_alias_sym_notin, }, - [56] = { + [52] = { [0] = anon_alias_sym_isnot, [1] = anon_alias_sym_isnot, }, - [57] = { + [53] = { [0] = alias_sym_format_expression, }, - [60] = { + [56] = { [3] = sym_block, }, - [61] = { + [57] = { [3] = sym_block, }, - [66] = { + [62] = { [4] = sym_block, }, - [67] = { + [63] = { [3] = sym_block, }, - [71] = { + [67] = { [4] = sym_block, }, - [73] = { + [69] = { [4] = sym_block, }, - [75] = { + [71] = { [0] = sym_identifier, }, - [85] = { + [81] = { [3] = sym_block, }, - [90] = { + [86] = { [5] = sym_block, }, - [91] = { + [87] = { [5] = sym_block, }, - [93] = { + [89] = { [2] = sym_block, }, - [101] = { + [97] = { [1] = alias_sym_case_pattern, }, - [102] = { + [98] = { [1] = alias_sym_case_pattern, [3] = sym_block, }, - [104] = { + [100] = { [6] = sym_block, }, - [106] = { + [102] = { [5] = sym_block, }, - [108] = { + [104] = { [3] = sym_block, }, - [109] = { + [105] = { [6] = sym_block, }, - [111] = { + [107] = { [1] = alias_sym_case_pattern, [4] = sym_block, }, - [112] = { + [108] = { [1] = alias_sym_case_pattern, }, - [113] = { + [109] = { [1] = alias_sym_case_pattern, [4] = sym_block, }, - [114] = { + [110] = { [1] = alias_sym_case_pattern, [4] = sym_block, }, - [115] = { + [111] = { [6] = sym_block, }, - [117] = { + [113] = { [7] = sym_block, }, - [120] = { + [116] = { [1] = alias_sym_case_pattern, }, - [121] = { + [117] = { [1] = alias_sym_case_pattern, [5] = sym_block, }, - [122] = { + [118] = { [1] = alias_sym_case_pattern, }, - [123] = { + [119] = { [1] = alias_sym_case_pattern, [5] = sym_block, }, - [124] = { + [120] = { [1] = alias_sym_case_pattern, }, - [125] = { + [121] = { [1] = alias_sym_case_pattern, [5] = sym_block, }, - [128] = { + [124] = { [5] = sym_block, }, - [129] = { + [125] = { [1] = alias_sym_case_pattern, }, - [130] = { + [126] = { [1] = alias_sym_case_pattern, }, - [131] = { + [127] = { [1] = alias_sym_case_pattern, [6] = sym_block, }, - [132] = { + [128] = { [1] = alias_sym_case_pattern, }, - [133] = { + [129] = { [1] = alias_sym_case_pattern, }, }; @@ -2587,7 +2560,7 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_parenthesized_expression, sym_list_splat_pattern, 2, sym_list_splat_pattern, - alias_sym_case_pattern, + sym_list_splat, sym_expression, 3, sym_expression, alias_sym_as_pattern_target, @@ -2614,85 +2587,85 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 15, + [15] = 6, [16] = 16, - [17] = 17, + [17] = 8, [18] = 18, [19] = 19, - [20] = 20, + [20] = 9, [21] = 21, - [22] = 18, - [23] = 16, + [22] = 10, + [23] = 12, [24] = 24, - [25] = 8, - [26] = 26, - [27] = 27, + [25] = 25, + [26] = 14, + [27] = 2, [28] = 28, - [29] = 15, - [30] = 13, - [31] = 31, + [29] = 19, + [30] = 30, + [31] = 21, [32] = 32, - [33] = 33, - [34] = 12, - [35] = 11, - [36] = 14, + [33] = 25, + [34] = 34, + [35] = 35, + [36] = 36, [37] = 37, - [38] = 10, - [39] = 7, - [40] = 19, - [41] = 4, - [42] = 42, - [43] = 6, - [44] = 44, - [45] = 27, - [46] = 33, - [47] = 37, - [48] = 42, - [49] = 26, + [38] = 38, + [39] = 24, + [40] = 5, + [41] = 28, + [42] = 36, + [43] = 38, + [44] = 30, + [45] = 32, + [46] = 37, + [47] = 47, + [48] = 34, + [49] = 18, [50] = 50, - [51] = 51, + [51] = 7, [52] = 3, - [53] = 20, - [54] = 32, - [55] = 2, - [56] = 28, - [57] = 24, - [58] = 9, - [59] = 31, - [60] = 44, + [53] = 4, + [54] = 47, + [55] = 50, + [56] = 11, + [57] = 13, + [58] = 35, + [59] = 16, + [60] = 60, [61] = 61, - [62] = 61, - [63] = 51, - [64] = 17, - [65] = 5, - [66] = 21, - [67] = 50, - [68] = 68, - [69] = 69, - [70] = 69, + [62] = 60, + [63] = 60, + [64] = 60, + [65] = 60, + [66] = 66, + [67] = 60, + [68] = 66, + [69] = 60, + [70] = 70, [71] = 71, - [72] = 69, - [73] = 69, - [74] = 71, - [75] = 69, - [76] = 69, - [77] = 69, + [72] = 72, + [73] = 72, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 77, [78] = 78, [79] = 79, [80] = 80, - [81] = 79, + [81] = 81, [82] = 82, [83] = 83, [84] = 84, [85] = 85, [86] = 86, - [87] = 87, + [87] = 82, [88] = 88, - [89] = 86, - [90] = 90, - [91] = 91, - [92] = 84, - [93] = 93, + [89] = 89, + [90] = 85, + [91] = 86, + [92] = 88, + [93] = 89, [94] = 94, [95] = 95, [96] = 96, @@ -2703,2135 +2676,2454 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [101] = 101, [102] = 102, [103] = 103, - [104] = 104, + [104] = 94, [105] = 105, - [106] = 95, - [107] = 107, - [108] = 108, - [109] = 109, + [106] = 77, + [107] = 79, + [108] = 81, + [109] = 78, [110] = 110, - [111] = 108, - [112] = 112, - [113] = 87, - [114] = 94, - [115] = 104, - [116] = 116, - [117] = 112, - [118] = 118, - [119] = 103, - [120] = 110, - [121] = 93, - [122] = 98, - [123] = 101, - [124] = 124, - [125] = 90, - [126] = 105, - [127] = 99, - [128] = 124, - [129] = 129, - [130] = 97, - [131] = 107, - [132] = 82, - [133] = 109, - [134] = 85, - [135] = 102, - [136] = 91, - [137] = 100, - [138] = 83, - [139] = 129, - [140] = 140, - [141] = 96, - [142] = 140, - [143] = 118, - [144] = 88, - [145] = 116, - [146] = 146, - [147] = 146, - [148] = 146, - [149] = 146, - [150] = 146, + [111] = 111, + [112] = 95, + [113] = 105, + [114] = 100, + [115] = 98, + [116] = 96, + [117] = 111, + [118] = 110, + [119] = 84, + [120] = 76, + [121] = 102, + [122] = 83, + [123] = 123, + [124] = 80, + [125] = 97, + [126] = 75, + [127] = 123, + [128] = 99, + [129] = 103, + [130] = 101, + [131] = 131, + [132] = 131, + [133] = 133, + [134] = 131, + [135] = 133, + [136] = 133, + [137] = 133, + [138] = 131, + [139] = 133, + [140] = 131, + [141] = 133, + [142] = 133, + [143] = 131, + [144] = 131, + [145] = 145, + [146] = 74, + [147] = 71, + [148] = 148, + [149] = 148, + [150] = 150, [151] = 151, - [152] = 151, - [153] = 151, - [154] = 151, - [155] = 146, - [156] = 151, + [152] = 148, + [153] = 153, + [154] = 148, + [155] = 74, + [156] = 156, [157] = 151, - [158] = 151, - [159] = 146, - [160] = 160, - [161] = 161, - [162] = 161, - [163] = 163, - [164] = 161, - [165] = 161, - [166] = 161, - [167] = 161, - [168] = 163, - [169] = 161, - [170] = 161, - [171] = 80, - [172] = 80, - [173] = 173, - [174] = 173, - [175] = 175, - [176] = 176, - [177] = 175, - [178] = 178, - [179] = 179, - [180] = 175, - [181] = 176, - [182] = 182, - [183] = 183, - [184] = 175, - [185] = 176, - [186] = 176, - [187] = 175, - [188] = 183, - [189] = 175, + [158] = 71, + [159] = 71, + [160] = 151, + [161] = 74, + [162] = 148, + [163] = 151, + [164] = 148, + [165] = 148, + [166] = 156, + [167] = 148, + [168] = 74, + [169] = 153, + [170] = 74, + [171] = 156, + [172] = 151, + [173] = 151, + [174] = 151, + [175] = 74, + [176] = 151, + [177] = 150, + [178] = 150, + [179] = 74, + [180] = 180, + [181] = 74, + [182] = 150, + [183] = 180, + [184] = 150, + [185] = 150, + [186] = 151, + [187] = 187, + [188] = 188, + [189] = 189, [190] = 190, [191] = 190, - [192] = 190, + [192] = 189, [193] = 190, - [194] = 190, - [195] = 190, - [196] = 190, + [194] = 188, + [195] = 188, + [196] = 189, [197] = 190, - [198] = 198, - [199] = 199, - [200] = 200, - [201] = 200, - [202] = 200, + [198] = 188, + [199] = 189, + [200] = 189, + [201] = 189, + [202] = 188, [203] = 203, - [204] = 204, - [205] = 200, - [206] = 200, - [207] = 200, - [208] = 200, - [209] = 200, - [210] = 210, - [211] = 211, - [212] = 211, + [204] = 189, + [205] = 190, + [206] = 189, + [207] = 188, + [208] = 190, + [209] = 209, + [210] = 189, + [211] = 188, + [212] = 203, [213] = 213, - [214] = 214, - [215] = 215, - [216] = 214, - [217] = 213, - [218] = 211, + [214] = 190, + [215] = 188, + [216] = 190, + [217] = 189, + [218] = 218, [219] = 219, - [220] = 215, - [221] = 221, - [222] = 210, - [223] = 210, - [224] = 210, - [225] = 221, - [226] = 213, - [227] = 211, - [228] = 213, - [229] = 219, - [230] = 215, - [231] = 219, + [220] = 220, + [221] = 220, + [222] = 222, + [223] = 223, + [224] = 218, + [225] = 222, + [226] = 222, + [227] = 222, + [228] = 222, + [229] = 222, + [230] = 222, + [231] = 231, [232] = 219, - [233] = 210, - [234] = 221, - [235] = 221, - [236] = 215, - [237] = 221, - [238] = 213, - [239] = 211, - [240] = 211, - [241] = 213, - [242] = 214, - [243] = 215, - [244] = 219, - [245] = 210, - [246] = 221, - [247] = 219, - [248] = 215, - [249] = 219, - [250] = 215, - [251] = 221, - [252] = 210, - [253] = 211, - [254] = 213, - [255] = 214, - [256] = 214, - [257] = 213, - [258] = 214, - [259] = 211, - [260] = 260, - [261] = 219, - [262] = 215, - [263] = 221, - [264] = 210, - [265] = 265, - [266] = 266, - [267] = 265, - [268] = 268, - [269] = 265, - [270] = 266, - [271] = 266, - [272] = 272, - [273] = 273, - [274] = 274, - [275] = 272, - [276] = 276, - [277] = 277, - [278] = 278, - [279] = 278, - [280] = 280, - [281] = 281, - [282] = 277, - [283] = 283, - [284] = 276, - [285] = 277, - [286] = 273, - [287] = 287, - [288] = 276, - [289] = 281, - [290] = 272, - [291] = 280, - [292] = 278, - [293] = 287, - [294] = 280, - [295] = 295, - [296] = 296, + [233] = 233, + [234] = 222, + [235] = 235, + [236] = 236, + [237] = 236, + [238] = 238, + [239] = 235, + [240] = 240, + [241] = 235, + [242] = 242, + [243] = 240, + [244] = 242, + [245] = 245, + [246] = 246, + [247] = 242, + [248] = 245, + [249] = 242, + [250] = 245, + [251] = 236, + [252] = 238, + [253] = 246, + [254] = 235, + [255] = 236, + [256] = 238, + [257] = 240, + [258] = 240, + [259] = 235, + [260] = 242, + [261] = 246, + [262] = 246, + [263] = 235, + [264] = 240, + [265] = 245, + [266] = 236, + [267] = 238, + [268] = 238, + [269] = 236, + [270] = 238, + [271] = 238, + [272] = 245, + [273] = 236, + [274] = 242, + [275] = 240, + [276] = 235, + [277] = 240, + [278] = 235, + [279] = 236, + [280] = 238, + [281] = 246, + [282] = 246, + [283] = 242, + [284] = 245, + [285] = 242, + [286] = 245, + [287] = 240, + [288] = 245, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 291, + [294] = 294, + [295] = 291, + [296] = 292, [297] = 297, [298] = 297, - [299] = 299, - [300] = 299, - [301] = 260, - [302] = 296, - [303] = 299, - [304] = 299, - [305] = 297, - [306] = 260, - [307] = 307, - [308] = 299, - [309] = 297, - [310] = 299, - [311] = 297, - [312] = 297, - [313] = 297, - [314] = 299, - [315] = 295, - [316] = 297, - [317] = 299, - [318] = 260, - [319] = 319, - [320] = 320, - [321] = 274, - [322] = 319, - [323] = 319, - [324] = 324, - [325] = 325, - [326] = 324, - [327] = 320, - [328] = 324, - [329] = 320, - [330] = 319, - [331] = 331, - [332] = 320, - [333] = 319, - [334] = 324, - [335] = 319, + [299] = 289, + [300] = 297, + [301] = 301, + [302] = 290, + [303] = 292, + [304] = 301, + [305] = 301, + [306] = 306, + [307] = 289, + [308] = 308, + [309] = 290, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 311, + [314] = 311, + [315] = 315, + [316] = 310, + [317] = 311, + [318] = 233, + [319] = 233, + [320] = 233, + [321] = 312, + [322] = 310, + [323] = 311, + [324] = 312, + [325] = 310, + [326] = 310, + [327] = 310, + [328] = 310, + [329] = 310, + [330] = 311, + [331] = 311, + [332] = 311, + [333] = 333, + [334] = 334, + [335] = 333, [336] = 336, - [337] = 324, - [338] = 320, - [339] = 324, - [340] = 320, - [341] = 319, - [342] = 342, - [343] = 283, - [344] = 320, - [345] = 319, - [346] = 324, - [347] = 324, - [348] = 320, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, + [337] = 334, + [338] = 334, + [339] = 339, + [340] = 340, + [341] = 334, + [342] = 334, + [343] = 334, + [344] = 340, + [345] = 333, + [346] = 334, + [347] = 333, + [348] = 336, + [349] = 339, + [350] = 339, + [351] = 339, + [352] = 339, + [353] = 308, + [354] = 333, + [355] = 333, [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 354, - [361] = 361, - [362] = 362, - [363] = 359, - [364] = 352, - [365] = 365, - [366] = 366, - [367] = 361, + [357] = 339, + [358] = 333, + [359] = 334, + [360] = 333, + [361] = 339, + [362] = 339, + [363] = 334, + [364] = 339, + [365] = 339, + [366] = 294, + [367] = 367, [368] = 368, - [369] = 357, - [370] = 368, - [371] = 274, - [372] = 368, + [369] = 333, + [370] = 370, + [371] = 333, + [372] = 334, [373] = 373, - [374] = 368, - [375] = 368, - [376] = 368, + [374] = 374, + [375] = 375, + [376] = 376, [377] = 377, - [378] = 378, + [378] = 308, [379] = 379, - [380] = 368, - [381] = 362, - [382] = 382, - [383] = 354, - [384] = 283, + [380] = 380, + [381] = 374, + [382] = 377, + [383] = 383, + [384] = 377, [385] = 385, - [386] = 386, - [387] = 365, + [386] = 294, + [387] = 387, [388] = 388, - [389] = 283, - [390] = 351, + [389] = 389, + [390] = 377, [391] = 391, [392] = 392, - [393] = 378, - [394] = 368, - [395] = 391, - [396] = 350, - [397] = 373, - [398] = 365, - [399] = 352, - [400] = 373, - [401] = 357, - [402] = 402, + [393] = 393, + [394] = 294, + [395] = 395, + [396] = 395, + [397] = 397, + [398] = 377, + [399] = 377, + [400] = 400, + [401] = 377, + [402] = 308, [403] = 403, - [404] = 404, - [405] = 274, - [406] = 406, + [404] = 377, + [405] = 405, + [406] = 377, [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 283, - [412] = 410, - [413] = 413, - [414] = 274, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, + [408] = 375, + [409] = 379, + [410] = 393, + [411] = 411, + [412] = 412, + [413] = 379, + [414] = 414, + [415] = 397, + [416] = 393, + [417] = 374, + [418] = 405, + [419] = 377, + [420] = 395, + [421] = 385, + [422] = 375, [423] = 423, [424] = 424, - [425] = 424, - [426] = 426, - [427] = 427, + [425] = 425, + [426] = 308, + [427] = 294, [428] = 428, - [429] = 426, - [430] = 419, - [431] = 413, + [429] = 429, + [430] = 430, + [431] = 425, [432] = 432, - [433] = 418, - [434] = 428, - [435] = 420, + [433] = 433, + [434] = 432, + [435] = 423, [436] = 436, [437] = 437, - [438] = 438, + [438] = 424, [439] = 439, - [440] = 440, - [441] = 437, - [442] = 439, - [443] = 443, - [444] = 444, + [440] = 436, + [441] = 430, + [442] = 442, + [443] = 428, + [444] = 442, [445] = 445, [446] = 446, - [447] = 446, + [447] = 447, [448] = 448, [449] = 449, - [450] = 449, + [450] = 445, [451] = 451, - [452] = 452, - [453] = 440, - [454] = 437, + [452] = 446, + [453] = 453, + [454] = 454, [455] = 451, - [456] = 443, + [456] = 453, [457] = 457, [458] = 458, - [459] = 445, + [459] = 449, [460] = 460, - [461] = 449, - [462] = 452, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 440, - [469] = 437, - [470] = 443, - [471] = 471, - [472] = 467, - [473] = 465, - [474] = 474, - [475] = 475, + [461] = 447, + [462] = 448, + [463] = 449, + [464] = 445, + [465] = 446, + [466] = 453, + [467] = 448, + [468] = 468, + [469] = 469, + [470] = 447, + [471] = 458, + [472] = 453, + [473] = 447, + [474] = 449, + [475] = 458, [476] = 476, - [477] = 446, + [477] = 477, [478] = 478, - [479] = 446, - [480] = 478, - [481] = 481, - [482] = 452, - [483] = 483, - [484] = 484, - [485] = 457, + [479] = 479, + [480] = 447, + [481] = 446, + [482] = 448, + [483] = 449, + [484] = 445, + [485] = 485, [486] = 446, - [487] = 478, - [488] = 478, - [489] = 449, + [487] = 487, + [488] = 453, + [489] = 458, [490] = 451, - [491] = 460, - [492] = 478, - [493] = 438, - [494] = 449, + [491] = 491, + [492] = 446, + [493] = 447, + [494] = 494, [495] = 495, [496] = 451, - [497] = 452, - [498] = 440, - [499] = 499, - [500] = 438, - [501] = 444, - [502] = 449, - [503] = 443, - [504] = 478, - [505] = 505, + [497] = 445, + [498] = 449, + [499] = 448, + [500] = 500, + [501] = 447, + [502] = 458, + [503] = 453, + [504] = 446, + [505] = 449, [506] = 506, - [507] = 507, - [508] = 438, - [509] = 451, - [510] = 452, - [511] = 478, - [512] = 512, - [513] = 476, + [507] = 445, + [508] = 451, + [509] = 446, + [510] = 453, + [511] = 445, + [512] = 453, + [513] = 469, [514] = 514, - [515] = 499, - [516] = 439, - [517] = 476, - [518] = 518, - [519] = 446, - [520] = 443, - [521] = 443, - [522] = 507, - [523] = 507, - [524] = 476, - [525] = 437, - [526] = 437, - [527] = 440, - [528] = 528, - [529] = 452, - [530] = 440, - [531] = 440, - [532] = 532, - [533] = 452, - [534] = 476, - [535] = 451, - [536] = 505, - [537] = 449, - [538] = 484, - [539] = 483, - [540] = 507, - [541] = 451, - [542] = 542, - [543] = 476, - [544] = 532, + [515] = 476, + [516] = 449, + [517] = 448, + [518] = 458, + [519] = 447, + [520] = 458, + [521] = 447, + [522] = 453, + [523] = 523, + [524] = 446, + [525] = 494, + [526] = 446, + [527] = 448, + [528] = 449, + [529] = 495, + [530] = 445, + [531] = 446, + [532] = 477, + [533] = 451, + [534] = 534, + [535] = 445, + [536] = 445, + [537] = 537, + [538] = 538, + [539] = 449, + [540] = 449, + [541] = 448, + [542] = 447, + [543] = 458, + [544] = 453, [545] = 545, - [546] = 476, - [547] = 437, - [548] = 443, + [546] = 445, + [547] = 476, + [548] = 458, [549] = 549, - [550] = 464, + [550] = 453, [551] = 551, - [552] = 439, - [553] = 463, - [554] = 446, - [555] = 443, + [552] = 451, + [553] = 451, + [554] = 451, + [555] = 448, [556] = 556, - [557] = 451, - [558] = 452, - [559] = 438, - [560] = 514, - [561] = 478, - [562] = 551, - [563] = 563, - [564] = 440, - [565] = 565, - [566] = 556, - [567] = 446, - [568] = 514, - [569] = 449, - [570] = 476, - [571] = 437, - [572] = 466, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 423, - [577] = 422, - [578] = 409, - [579] = 407, - [580] = 417, - [581] = 432, - [582] = 582, - [583] = 573, - [584] = 575, - [585] = 427, - [586] = 586, - [587] = 586, - [588] = 582, - [589] = 574, - [590] = 590, - [591] = 590, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 593, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 573, - [601] = 592, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, - [607] = 606, - [608] = 575, - [609] = 605, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 586, - [614] = 582, - [615] = 604, - [616] = 597, - [617] = 617, - [618] = 603, - [619] = 598, - [620] = 620, - [621] = 621, - [622] = 599, - [623] = 573, - [624] = 582, - [625] = 586, - [626] = 590, - [627] = 575, - [628] = 590, - [629] = 590, - [630] = 582, - [631] = 594, - [632] = 632, - [633] = 610, - [634] = 621, - [635] = 612, - [636] = 602, - [637] = 575, - [638] = 611, - [639] = 596, - [640] = 573, - [641] = 620, - [642] = 617, - [643] = 632, - [644] = 586, - [645] = 575, - [646] = 582, - [647] = 573, - [648] = 590, - [649] = 586, + [557] = 458, + [558] = 446, + [559] = 559, + [560] = 560, + [561] = 445, + [562] = 451, + [563] = 476, + [564] = 446, + [565] = 451, + [566] = 566, + [567] = 567, + [568] = 523, + [569] = 569, + [570] = 447, + [571] = 445, + [572] = 487, + [573] = 458, + [574] = 453, + [575] = 449, + [576] = 453, + [577] = 448, + [578] = 523, + [579] = 447, + [580] = 458, + [581] = 453, + [582] = 447, + [583] = 477, + [584] = 446, + [585] = 446, + [586] = 458, + [587] = 451, + [588] = 447, + [589] = 487, + [590] = 448, + [591] = 451, + [592] = 449, + [593] = 457, + [594] = 523, + [595] = 451, + [596] = 477, + [597] = 523, + [598] = 445, + [599] = 454, + [600] = 448, + [601] = 451, + [602] = 479, + [603] = 523, + [604] = 506, + [605] = 523, + [606] = 445, + [607] = 448, + [608] = 458, + [609] = 449, + [610] = 447, + [611] = 523, + [612] = 448, + [613] = 487, + [614] = 447, + [615] = 458, + [616] = 476, + [617] = 448, + [618] = 453, + [619] = 448, + [620] = 523, + [621] = 559, + [622] = 446, + [623] = 523, + [624] = 453, + [625] = 523, + [626] = 487, + [627] = 566, + [628] = 449, + [629] = 523, + [630] = 491, + [631] = 454, + [632] = 487, + [633] = 449, + [634] = 523, + [635] = 523, + [636] = 460, + [637] = 454, + [638] = 560, + [639] = 523, + [640] = 640, + [641] = 485, + [642] = 523, + [643] = 445, + [644] = 556, + [645] = 451, + [646] = 646, + [647] = 458, + [648] = 549, + [649] = 649, [650] = 650, [651] = 651, [652] = 652, [653] = 653, [654] = 654, - [655] = 650, + [655] = 654, [656] = 656, [657] = 657, - [658] = 656, + [658] = 658, [659] = 659, [660] = 660, [661] = 661, [662] = 662, - [663] = 660, - [664] = 651, - [665] = 657, - [666] = 662, - [667] = 661, - [668] = 653, - [669] = 652, - [670] = 654, - [671] = 659, + [663] = 663, + [664] = 656, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 662, + [670] = 652, + [671] = 671, [672] = 672, [673] = 673, - [674] = 674, + [674] = 665, [675] = 675, - [676] = 676, + [676] = 667, [677] = 677, [678] = 678, [679] = 679, - [680] = 680, + [680] = 678, [681] = 681, - [682] = 682, - [683] = 683, + [682] = 681, + [683] = 679, [684] = 684, - [685] = 672, - [686] = 686, - [687] = 687, - [688] = 688, - [689] = 689, - [690] = 690, - [691] = 688, + [685] = 685, + [686] = 684, + [687] = 677, + [688] = 685, + [689] = 678, + [690] = 677, + [691] = 691, [692] = 692, - [693] = 693, - [694] = 694, + [693] = 691, + [694] = 677, [695] = 695, [696] = 696, - [697] = 697, - [698] = 674, - [699] = 675, - [700] = 677, - [701] = 673, - [702] = 693, + [697] = 684, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 677, + [702] = 685, [703] = 703, [704] = 704, [705] = 705, - [706] = 678, + [706] = 681, [707] = 707, [708] = 708, - [709] = 709, - [710] = 710, - [711] = 679, - [712] = 712, - [713] = 713, - [714] = 681, - [715] = 715, - [716] = 716, - [717] = 682, - [718] = 684, - [719] = 686, - [720] = 687, - [721] = 689, - [722] = 690, - [723] = 692, - [724] = 694, - [725] = 695, - [726] = 697, - [727] = 703, - [728] = 704, - [729] = 705, - [730] = 707, - [731] = 708, - [732] = 709, - [733] = 710, - [734] = 712, - [735] = 713, - [736] = 715, - [737] = 716, - [738] = 676, - [739] = 696, - [740] = 680, - [741] = 683, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 746, - [747] = 747, - [748] = 748, + [709] = 219, + [710] = 708, + [711] = 695, + [712] = 696, + [713] = 685, + [714] = 677, + [715] = 707, + [716] = 684, + [717] = 717, + [718] = 692, + [719] = 719, + [720] = 684, + [721] = 721, + [722] = 722, + [723] = 218, + [724] = 681, + [725] = 678, + [726] = 726, + [727] = 685, + [728] = 681, + [729] = 678, + [730] = 684, + [731] = 726, + [732] = 732, + [733] = 733, + [734] = 705, + [735] = 704, + [736] = 717, + [737] = 719, + [738] = 721, + [739] = 722, + [740] = 698, + [741] = 685, + [742] = 703, + [743] = 699, + [744] = 700, + [745] = 678, + [746] = 733, + [747] = 732, + [748] = 681, [749] = 749, [750] = 750, - [751] = 751, + [751] = 750, [752] = 752, - [753] = 745, + [753] = 753, [754] = 754, [755] = 755, [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, + [757] = 752, + [758] = 755, + [759] = 753, + [760] = 756, [761] = 761, - [762] = 750, - [763] = 746, - [764] = 756, - [765] = 765, - [766] = 754, - [767] = 767, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 749, + [766] = 763, + [767] = 764, [768] = 761, - [769] = 751, - [770] = 757, - [771] = 748, + [769] = 762, + [770] = 754, + [771] = 771, [772] = 772, - [773] = 767, + [773] = 773, [774] = 774, - [775] = 772, - [776] = 744, + [775] = 771, + [776] = 776, [777] = 777, [778] = 778, [779] = 779, [780] = 780, - [781] = 778, + [781] = 781, [782] = 782, - [783] = 759, - [784] = 752, - [785] = 785, + [783] = 782, + [784] = 784, + [785] = 773, [786] = 786, [787] = 787, - [788] = 774, + [788] = 788, [789] = 789, [790] = 790, [791] = 791, - [792] = 777, - [793] = 755, + [792] = 784, + [793] = 787, [794] = 790, [795] = 795, - [796] = 796, - [797] = 780, - [798] = 742, - [799] = 782, - [800] = 747, - [801] = 760, - [802] = 765, - [803] = 743, - [804] = 786, - [805] = 789, - [806] = 779, - [807] = 785, - [808] = 791, - [809] = 787, - [810] = 749, - [811] = 795, - [812] = 758, - [813] = 796, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 817, - [818] = 816, - [819] = 815, + [796] = 791, + [797] = 795, + [798] = 798, + [799] = 799, + [800] = 800, + [801] = 800, + [802] = 772, + [803] = 799, + [804] = 804, + [805] = 780, + [806] = 798, + [807] = 789, + [808] = 788, + [809] = 779, + [810] = 778, + [811] = 804, + [812] = 786, + [813] = 813, + [814] = 777, + [815] = 781, + [816] = 776, + [817] = 774, + [818] = 813, + [819] = 819, [820] = 820, - [821] = 820, + [821] = 821, [822] = 822, - [823] = 822, - [824] = 814, - [825] = 817, - [826] = 816, - [827] = 817, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 827, [828] = 828, - [829] = 828, - [830] = 828, + [829] = 829, + [830] = 830, [831] = 831, [832] = 832, - [833] = 831, - [834] = 832, - [835] = 835, - [836] = 835, + [833] = 833, + [834] = 830, + [835] = 829, + [836] = 836, [837] = 837, [838] = 838, - [839] = 835, - [840] = 831, - [841] = 837, - [842] = 838, - [843] = 832, - [844] = 837, - [845] = 831, - [846] = 846, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 821, + [845] = 845, + [846] = 841, [847] = 847, - [848] = 848, - [849] = 832, - [850] = 846, + [848] = 819, + [849] = 849, + [850] = 833, [851] = 851, - [852] = 847, - [853] = 853, - [854] = 848, + [852] = 852, + [853] = 843, + [854] = 832, [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, + [856] = 820, + [857] = 826, + [858] = 837, [859] = 859, - [860] = 860, - [861] = 853, - [862] = 858, - [863] = 835, - [864] = 851, - [865] = 851, - [866] = 837, - [867] = 857, + [860] = 851, + [861] = 861, + [862] = 827, + [863] = 218, + [864] = 859, + [865] = 840, + [866] = 825, + [867] = 867, [868] = 868, - [869] = 868, - [870] = 847, - [871] = 868, - [872] = 856, - [873] = 859, - [874] = 835, - [875] = 837, - [876] = 855, - [877] = 860, - [878] = 868, - [879] = 832, - [880] = 868, - [881] = 831, - [882] = 868, - [883] = 835, - [884] = 837, - [885] = 868, - [886] = 859, - [887] = 846, - [888] = 868, - [889] = 831, - [890] = 848, - [891] = 855, - [892] = 856, - [893] = 857, - [894] = 860, - [895] = 853, - [896] = 832, - [897] = 858, - [898] = 857, - [899] = 853, - [900] = 900, - [901] = 901, - [902] = 846, - [903] = 859, - [904] = 832, + [869] = 869, + [870] = 824, + [871] = 845, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 869, + [877] = 828, + [878] = 878, + [879] = 852, + [880] = 880, + [881] = 875, + [882] = 851, + [883] = 873, + [884] = 859, + [885] = 880, + [886] = 872, + [887] = 867, + [888] = 842, + [889] = 822, + [890] = 874, + [891] = 878, + [892] = 892, + [893] = 836, + [894] = 847, + [895] = 219, + [896] = 831, + [897] = 892, + [898] = 823, + [899] = 855, + [900] = 861, + [901] = 868, + [902] = 838, + [903] = 849, + [904] = 839, [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, + [906] = 905, + [907] = 905, + [908] = 905, + [909] = 905, + [910] = 905, [911] = 911, - [912] = 835, + [912] = 911, [913] = 913, - [914] = 837, - [915] = 915, - [916] = 847, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 908, - [921] = 909, - [922] = 859, - [923] = 846, - [924] = 901, - [925] = 905, - [926] = 919, - [927] = 911, - [928] = 908, - [929] = 913, - [930] = 909, - [931] = 911, - [932] = 915, - [933] = 913, - [934] = 831, - [935] = 917, - [936] = 917, - [937] = 918, - [938] = 919, - [939] = 918, - [940] = 901, - [941] = 919, - [942] = 901, - [943] = 905, - [944] = 900, - [945] = 900, - [946] = 918, - [947] = 910, - [948] = 907, - [949] = 831, - [950] = 950, - [951] = 901, - [952] = 919, - [953] = 918, - [954] = 917, - [955] = 905, - [956] = 906, - [957] = 957, - [958] = 905, - [959] = 848, - [960] = 855, - [961] = 900, - [962] = 913, - [963] = 911, - [964] = 909, - [965] = 856, - [966] = 908, - [967] = 857, - [968] = 908, - [969] = 910, - [970] = 860, - [971] = 847, - [972] = 858, - [973] = 909, - [974] = 851, - [975] = 911, - [976] = 917, - [977] = 913, - [978] = 911, - [979] = 979, - [980] = 909, - [981] = 900, - [982] = 957, - [983] = 910, - [984] = 905, - [985] = 848, - [986] = 855, - [987] = 856, - [988] = 908, - [989] = 837, - [990] = 915, - [991] = 900, - [992] = 835, - [993] = 901, - [994] = 910, - [995] = 860, - [996] = 853, - [997] = 858, - [998] = 851, - [999] = 919, - [1000] = 918, - [1001] = 917, - [1002] = 847, - [1003] = 913, - [1004] = 910, - [1005] = 911, - [1006] = 909, - [1007] = 1007, - [1008] = 1008, - [1009] = 910, - [1010] = 908, - [1011] = 851, - [1012] = 858, - [1013] = 913, - [1014] = 853, - [1015] = 860, - [1016] = 905, - [1017] = 950, - [1018] = 832, - [1019] = 910, - [1020] = 917, - [1021] = 918, - [1022] = 919, - [1023] = 979, - [1024] = 857, - [1025] = 856, - [1026] = 901, - [1027] = 855, - [1028] = 848, - [1029] = 905, - [1030] = 900, - [1031] = 901, - [1032] = 919, - [1033] = 918, - [1034] = 917, - [1035] = 913, - [1036] = 911, - [1037] = 950, - [1038] = 909, - [1039] = 908, - [1040] = 979, - [1041] = 907, - [1042] = 906, - [1043] = 900, - [1044] = 846, - [1045] = 859, - [1046] = 1046, - [1047] = 1047, - [1048] = 906, + [914] = 913, + [915] = 913, + [916] = 913, + [917] = 913, + [918] = 913, + [919] = 913, + [920] = 913, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 923, + [925] = 925, + [926] = 926, + [927] = 926, + [928] = 928, + [929] = 928, + [930] = 930, + [931] = 922, + [932] = 932, + [933] = 933, + [934] = 921, + [935] = 933, + [936] = 930, + [937] = 922, + [938] = 932, + [939] = 921, + [940] = 933, + [941] = 933, + [942] = 923, + [943] = 943, + [944] = 923, + [945] = 943, + [946] = 943, + [947] = 921, + [948] = 921, + [949] = 933, + [950] = 932, + [951] = 922, + [952] = 925, + [953] = 932, + [954] = 922, + [955] = 932, + [956] = 930, + [957] = 928, + [958] = 930, + [959] = 922, + [960] = 928, + [961] = 930, + [962] = 925, + [963] = 926, + [964] = 925, + [965] = 926, + [966] = 925, + [967] = 967, + [968] = 928, + [969] = 969, + [970] = 967, + [971] = 969, + [972] = 928, + [973] = 930, + [974] = 922, + [975] = 967, + [976] = 969, + [977] = 932, + [978] = 925, + [979] = 933, + [980] = 967, + [981] = 928, + [982] = 969, + [983] = 930, + [984] = 943, + [985] = 932, + [986] = 933, + [987] = 921, + [988] = 923, + [989] = 923, + [990] = 925, + [991] = 943, + [992] = 928, + [993] = 926, + [994] = 926, + [995] = 930, + [996] = 943, + [997] = 967, + [998] = 969, + [999] = 999, + [1000] = 926, + [1001] = 943, + [1002] = 923, + [1003] = 921, + [1004] = 925, + [1005] = 923, + [1006] = 967, + [1007] = 969, + [1008] = 967, + [1009] = 969, + [1010] = 967, + [1011] = 967, + [1012] = 933, + [1013] = 932, + [1014] = 922, + [1015] = 969, + [1016] = 922, + [1017] = 930, + [1018] = 928, + [1019] = 932, + [1020] = 933, + [1021] = 943, + [1022] = 921, + [1023] = 969, + [1024] = 967, + [1025] = 967, + [1026] = 923, + [1027] = 999, + [1028] = 926, + [1029] = 967, + [1030] = 967, + [1031] = 943, + [1032] = 1032, + [1033] = 1033, + [1034] = 1032, + [1035] = 1035, + [1036] = 1033, + [1037] = 1032, + [1038] = 1033, + [1039] = 1035, + [1040] = 1040, + [1041] = 1035, + [1042] = 1040, + [1043] = 1040, + [1044] = 1033, + [1045] = 1033, + [1046] = 1033, + [1047] = 1035, + [1048] = 1033, [1049] = 1049, [1050] = 1050, - [1051] = 1050, + [1051] = 1051, [1052] = 1052, [1053] = 1053, [1054] = 1054, [1055] = 1055, - [1056] = 1056, - [1057] = 907, - [1058] = 846, - [1059] = 1059, - [1060] = 859, - [1061] = 915, - [1062] = 907, - [1063] = 906, - [1064] = 915, - [1065] = 1065, - [1066] = 1066, - [1067] = 1059, - [1068] = 1068, - [1069] = 432, - [1070] = 1049, - [1071] = 950, - [1072] = 406, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1052, - [1077] = 1055, - [1078] = 848, - [1079] = 1056, - [1080] = 1065, - [1081] = 1068, - [1082] = 1082, - [1083] = 855, - [1084] = 856, - [1085] = 857, - [1086] = 1086, - [1087] = 1087, - [1088] = 427, - [1089] = 860, - [1090] = 1090, - [1091] = 1090, - [1092] = 853, - [1093] = 858, - [1094] = 851, - [1095] = 1074, - [1096] = 427, - [1097] = 1097, - [1098] = 408, - [1099] = 1066, - [1100] = 1100, - [1101] = 950, - [1102] = 1059, - [1103] = 1068, - [1104] = 1050, - [1105] = 1052, + [1056] = 1055, + [1057] = 1054, + [1058] = 1032, + [1059] = 1033, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, + [1063] = 1033, + [1064] = 1061, + [1065] = 1051, + [1066] = 1049, + [1067] = 1062, + [1068] = 1053, + [1069] = 653, + [1070] = 672, + [1071] = 1032, + [1072] = 668, + [1073] = 1035, + [1074] = 671, + [1075] = 673, + [1076] = 1051, + [1077] = 1077, + [1078] = 1077, + [1079] = 1033, + [1080] = 1049, + [1081] = 659, + [1082] = 1050, + [1083] = 1052, + [1084] = 1053, + [1085] = 1077, + [1086] = 1055, + [1087] = 1035, + [1088] = 1054, + [1089] = 1060, + [1090] = 1040, + [1091] = 1061, + [1092] = 1062, + [1093] = 1052, + [1094] = 1050, + [1095] = 1032, + [1096] = 1060, + [1097] = 663, + [1098] = 1033, + [1099] = 1040, + [1100] = 1040, + [1101] = 1033, + [1102] = 1050, + [1103] = 1052, + [1104] = 1033, + [1105] = 1035, [1106] = 1106, - [1107] = 847, - [1108] = 1055, - [1109] = 1056, - [1110] = 432, - [1111] = 1074, - [1112] = 1049, - [1113] = 427, - [1114] = 1065, - [1115] = 1090, - [1116] = 915, - [1117] = 859, - [1118] = 423, - [1119] = 422, - [1120] = 846, - [1121] = 406, - [1122] = 950, - [1123] = 1100, - [1124] = 1053, + [1107] = 1033, + [1108] = 1108, + [1109] = 1060, + [1110] = 1053, + [1111] = 1111, + [1112] = 1112, + [1113] = 1055, + [1114] = 1054, + [1115] = 1060, + [1116] = 1049, + [1117] = 1062, + [1118] = 1061, + [1119] = 1054, + [1120] = 1061, + [1121] = 1062, + [1122] = 1055, + [1123] = 1053, + [1124] = 1124, [1125] = 1125, - [1126] = 1046, - [1127] = 1106, - [1128] = 1087, - [1129] = 1082, - [1130] = 432, - [1131] = 408, - [1132] = 1125, - [1133] = 1054, - [1134] = 1073, - [1135] = 1097, - [1136] = 417, - [1137] = 1100, - [1138] = 407, - [1139] = 409, - [1140] = 407, - [1141] = 417, - [1142] = 409, - [1143] = 1086, - [1144] = 1053, - [1145] = 1075, - [1146] = 1125, - [1147] = 1046, - [1148] = 422, - [1149] = 1106, - [1150] = 847, - [1151] = 1087, - [1152] = 906, - [1153] = 1082, - [1154] = 423, - [1155] = 907, - [1156] = 1047, - [1157] = 1047, - [1158] = 851, - [1159] = 858, - [1160] = 853, - [1161] = 423, - [1162] = 422, - [1163] = 1075, - [1164] = 1086, - [1165] = 409, - [1166] = 407, - [1167] = 417, - [1168] = 1097, - [1169] = 1073, - [1170] = 1054, - [1171] = 860, - [1172] = 857, - [1173] = 1066, - [1174] = 856, - [1175] = 855, - [1176] = 848, - [1177] = 1053, - [1178] = 1055, - [1179] = 506, - [1180] = 1054, - [1181] = 1047, - [1182] = 542, - [1183] = 512, - [1184] = 1049, - [1185] = 1059, - [1186] = 1075, - [1187] = 1086, - [1188] = 1073, - [1189] = 1074, - [1190] = 1097, - [1191] = 1097, - [1192] = 1073, - [1193] = 1054, - [1194] = 1082, - [1195] = 950, - [1196] = 1087, - [1197] = 1066, - [1198] = 1106, - [1199] = 1046, - [1200] = 1125, - [1201] = 1087, - [1202] = 950, - [1203] = 1106, - [1204] = 1074, - [1205] = 1066, - [1206] = 1046, - [1207] = 1100, - [1208] = 1125, - [1209] = 1059, - [1210] = 1050, - [1211] = 1211, - [1212] = 1047, - [1213] = 1090, - [1214] = 1086, - [1215] = 1052, - [1216] = 1065, - [1217] = 1068, + [1126] = 1051, + [1127] = 1049, + [1128] = 1051, + [1129] = 1108, + [1130] = 1050, + [1131] = 1052, + [1132] = 1032, + [1133] = 1052, + [1134] = 1053, + [1135] = 1055, + [1136] = 1054, + [1137] = 1040, + [1138] = 1060, + [1139] = 1111, + [1140] = 1061, + [1141] = 1062, + [1142] = 1124, + [1143] = 1125, + [1144] = 1077, + [1145] = 1112, + [1146] = 1112, + [1147] = 1125, + [1148] = 1040, + [1149] = 1049, + [1150] = 1051, + [1151] = 1151, + [1152] = 1033, + [1153] = 1033, + [1154] = 1077, + [1155] = 1050, + [1156] = 1156, + [1157] = 1032, + [1158] = 1156, + [1159] = 1077, + [1160] = 650, + [1161] = 1033, + [1162] = 1156, + [1163] = 1108, + [1164] = 1035, + [1165] = 651, + [1166] = 1166, + [1167] = 1167, + [1168] = 1111, + [1169] = 1124, + [1170] = 659, + [1171] = 1171, + [1172] = 1172, + [1173] = 657, + [1174] = 1125, + [1175] = 1124, + [1176] = 1125, + [1177] = 1124, + [1178] = 671, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1077, + [1183] = 1183, + [1184] = 1062, + [1185] = 1185, + [1186] = 657, + [1187] = 1061, + [1188] = 1060, + [1189] = 1033, + [1190] = 1054, + [1191] = 1055, + [1192] = 673, + [1193] = 1193, + [1194] = 1053, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1183, + [1199] = 1199, + [1200] = 1052, + [1201] = 1050, + [1202] = 671, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 659, + [1207] = 668, + [1208] = 1049, + [1209] = 653, + [1210] = 1179, + [1211] = 1180, + [1212] = 1212, + [1213] = 672, + [1214] = 1051, + [1215] = 673, + [1216] = 1185, + [1217] = 1217, [1218] = 1218, - [1219] = 1055, - [1220] = 1056, - [1221] = 1075, - [1222] = 1053, - [1223] = 506, - [1224] = 907, - [1225] = 1056, - [1226] = 1065, - [1227] = 1049, - [1228] = 427, - [1229] = 1090, - [1230] = 906, - [1231] = 1052, - [1232] = 1100, - [1233] = 1050, - [1234] = 906, - [1235] = 907, - [1236] = 915, - [1237] = 1052, - [1238] = 512, - [1239] = 915, - [1240] = 1007, - [1241] = 1066, - [1242] = 1100, - [1243] = 1008, - [1244] = 1059, - [1245] = 1053, - [1246] = 1090, - [1247] = 1125, - [1248] = 1046, - [1249] = 1106, - [1250] = 1056, - [1251] = 542, - [1252] = 1087, - [1253] = 1082, - [1254] = 432, - [1255] = 1074, - [1256] = 1055, - [1257] = 1068, - [1258] = 1068, - [1259] = 1054, - [1260] = 1065, - [1261] = 1073, - [1262] = 1097, - [1263] = 417, - [1264] = 407, - [1265] = 409, - [1266] = 1086, - [1267] = 1075, - [1268] = 422, - [1269] = 423, - [1270] = 1049, - [1271] = 1050, - [1272] = 1082, - [1273] = 1047, - [1274] = 427, - [1275] = 1075, - [1276] = 1054, - [1277] = 1090, - [1278] = 1073, - [1279] = 512, - [1280] = 427, - [1281] = 1097, - [1282] = 506, - [1283] = 417, - [1284] = 407, - [1285] = 542, - [1286] = 432, - [1287] = 1056, - [1288] = 1086, - [1289] = 1075, - [1290] = 1047, - [1291] = 1049, - [1292] = 1055, - [1293] = 422, - [1294] = 423, - [1295] = 1082, - [1296] = 1087, - [1297] = 1074, - [1298] = 1106, - [1299] = 1046, - [1300] = 1125, - [1301] = 1047, - [1302] = 1052, - [1303] = 1068, - [1304] = 1065, - [1305] = 1050, - [1306] = 1306, - [1307] = 1053, - [1308] = 1065, - [1309] = 1068, - [1310] = 1310, - [1311] = 423, - [1312] = 422, - [1313] = 1313, - [1314] = 1100, - [1315] = 1049, - [1316] = 1074, - [1317] = 1059, - [1318] = 1086, - [1319] = 409, - [1320] = 407, - [1321] = 409, - [1322] = 1306, - [1323] = 1313, - [1324] = 417, - [1325] = 1097, - [1326] = 1073, - [1327] = 1090, - [1328] = 1054, - [1329] = 1100, - [1330] = 1056, - [1331] = 1055, - [1332] = 1052, - [1333] = 1050, - [1334] = 432, - [1335] = 1082, - [1336] = 1053, - [1337] = 1066, - [1338] = 1087, - [1339] = 1106, - [1340] = 1046, - [1341] = 1059, - [1342] = 1066, - [1343] = 1125, - [1344] = 1218, - [1345] = 1218, - [1346] = 1346, - [1347] = 1347, - [1348] = 1347, - [1349] = 1346, - [1350] = 1346, - [1351] = 1347, - [1352] = 1346, - [1353] = 1347, - [1354] = 1218, - [1355] = 1347, - [1356] = 1346, - [1357] = 1347, - [1358] = 1346, - [1359] = 1359, - [1360] = 1360, - [1361] = 1211, - [1362] = 1310, - [1363] = 1211, - [1364] = 1364, - [1365] = 1347, - [1366] = 1346, - [1367] = 1360, - [1368] = 506, - [1369] = 1364, - [1370] = 1347, - [1371] = 512, - [1372] = 1346, - [1373] = 1364, - [1374] = 506, - [1375] = 542, - [1376] = 1376, - [1377] = 512, - [1378] = 1218, - [1379] = 542, - [1380] = 1359, - [1381] = 1310, - [1382] = 1382, - [1383] = 1383, - [1384] = 1384, - [1385] = 1385, - [1386] = 1384, - [1387] = 1384, - [1388] = 1388, - [1389] = 1383, - [1390] = 1390, - [1391] = 1384, - [1392] = 1392, - [1393] = 1384, - [1394] = 1384, - [1395] = 1395, - [1396] = 1383, - [1397] = 1384, - [1398] = 1384, - [1399] = 1399, - [1400] = 1400, - [1401] = 1400, - [1402] = 1402, - [1403] = 1403, - [1404] = 1403, - [1405] = 1405, - [1406] = 1405, - [1407] = 1407, - [1408] = 1407, - [1409] = 1407, - [1410] = 1407, - [1411] = 1407, - [1412] = 1407, - [1413] = 1407, - [1414] = 1407, - [1415] = 1415, - [1416] = 1415, - [1417] = 1415, - [1418] = 1415, - [1419] = 1419, - [1420] = 1419, - [1421] = 1421, - [1422] = 1419, - [1423] = 1421, - [1424] = 1415, - [1425] = 1419, - [1426] = 1421, - [1427] = 1421, - [1428] = 1415, - [1429] = 1419, - [1430] = 1421, - [1431] = 1415, - [1432] = 1415, - [1433] = 1433, - [1434] = 1419, - [1435] = 1421, - [1436] = 1421, - [1437] = 1419, - [1438] = 1419, - [1439] = 1421, - [1440] = 1440, - [1441] = 1441, - [1442] = 1440, - [1443] = 1441, - [1444] = 1440, - [1445] = 1440, - [1446] = 1446, - [1447] = 1441, - [1448] = 1440, - [1449] = 1440, - [1450] = 1441, - [1451] = 1440, - [1452] = 1441, - [1453] = 1441, - [1454] = 1441, - [1455] = 1440, - [1456] = 1441, - [1457] = 1440, - [1458] = 1441, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1462, - [1463] = 1461, - [1464] = 1464, - [1465] = 1465, - [1466] = 1466, - [1467] = 1467, - [1468] = 1464, - [1469] = 1461, - [1470] = 1470, - [1471] = 1466, - [1472] = 1472, - [1473] = 1465, - [1474] = 1465, - [1475] = 1464, - [1476] = 1476, - [1477] = 1466, - [1478] = 1478, - [1479] = 1479, - [1480] = 1478, - [1481] = 1479, - [1482] = 1482, - [1483] = 1462, - [1484] = 1462, - [1485] = 1478, - [1486] = 1467, - [1487] = 1487, - [1488] = 1467, - [1489] = 1479, - [1490] = 1487, - [1491] = 1472, - [1492] = 1472, - [1493] = 1487, - [1494] = 1494, - [1495] = 1495, - [1496] = 1466, - [1497] = 1495, - [1498] = 1495, - [1499] = 1487, - [1500] = 1500, - [1501] = 1466, - [1502] = 1502, - [1503] = 1446, - [1504] = 1461, - [1505] = 1495, - [1506] = 1467, - [1507] = 1462, - [1508] = 1508, - [1509] = 1509, - [1510] = 1510, - [1511] = 1464, - [1512] = 1479, - [1513] = 1509, - [1514] = 1510, - [1515] = 1515, - [1516] = 1464, - [1517] = 1495, - [1518] = 1462, - [1519] = 1494, - [1520] = 1478, - [1521] = 1465, - [1522] = 1487, - [1523] = 1466, - [1524] = 1472, - [1525] = 1462, - [1526] = 1467, - [1527] = 1465, - [1528] = 1472, - [1529] = 1461, - [1530] = 1479, - [1531] = 1531, - [1532] = 1472, - [1533] = 1495, - [1534] = 1534, - [1535] = 1478, - [1536] = 1495, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1508, - [1541] = 1541, - [1542] = 1515, - [1543] = 1482, - [1544] = 1478, - [1545] = 1545, - [1546] = 1538, - [1547] = 1467, - [1548] = 1515, - [1549] = 1500, - [1550] = 1464, - [1551] = 1479, - [1552] = 1509, - [1553] = 1553, - [1554] = 1465, - [1555] = 1538, - [1556] = 1495, - [1557] = 1461, - [1558] = 1487, - [1559] = 1559, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1566, - [1567] = 1478, - [1568] = 1568, - [1569] = 1569, - [1570] = 1467, - [1571] = 1487, - [1572] = 1569, - [1573] = 1573, - [1574] = 1564, - [1575] = 1562, - [1576] = 1462, - [1577] = 1577, - [1578] = 1578, - [1579] = 1487, - [1580] = 1461, - [1581] = 1466, - [1582] = 1465, - [1583] = 1464, - [1584] = 1584, - [1585] = 1462, - [1586] = 1586, - [1587] = 1467, - [1588] = 1568, - [1589] = 1461, - [1590] = 1569, - [1591] = 1466, - [1592] = 1564, - [1593] = 1562, - [1594] = 1465, - [1595] = 1595, - [1596] = 1446, - [1597] = 1464, - [1598] = 1478, - [1599] = 1566, - [1600] = 1472, - [1601] = 1568, - [1602] = 1479, - [1603] = 1569, - [1604] = 1604, - [1605] = 1584, - [1606] = 1569, - [1607] = 1446, - [1608] = 1604, - [1609] = 1472, - [1610] = 1566, - [1611] = 1479, - [1612] = 1612, - [1613] = 1613, - [1614] = 1573, - [1615] = 1584, - [1616] = 1560, - [1617] = 1569, - [1618] = 1569, - [1619] = 1569, - [1620] = 1620, - [1621] = 1502, - [1622] = 1622, - [1623] = 1623, - [1624] = 1624, - [1625] = 1625, - [1626] = 1626, - [1627] = 1627, - [1628] = 1628, - [1629] = 1629, - [1630] = 1630, - [1631] = 1631, - [1632] = 1632, - [1633] = 1633, - [1634] = 1634, - [1635] = 1635, - [1636] = 1636, - [1637] = 1637, - [1638] = 1638, - [1639] = 1633, - [1640] = 1470, - [1641] = 1641, + [1219] = 1219, + [1220] = 1220, + [1221] = 1195, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, + [1225] = 1196, + [1226] = 671, + [1227] = 1197, + [1228] = 668, + [1229] = 668, + [1230] = 1218, + [1231] = 673, + [1232] = 672, + [1233] = 653, + [1234] = 1033, + [1235] = 657, + [1236] = 1172, + [1237] = 659, + [1238] = 1212, + [1239] = 1077, + [1240] = 651, + [1241] = 1199, + [1242] = 672, + [1243] = 653, + [1244] = 1156, + [1245] = 1111, + [1246] = 1246, + [1247] = 1111, + [1248] = 1248, + [1249] = 1203, + [1250] = 650, + [1251] = 1062, + [1252] = 1204, + [1253] = 1253, + [1254] = 1254, + [1255] = 1171, + [1256] = 1256, + [1257] = 1257, + [1258] = 1199, + [1259] = 1253, + [1260] = 1061, + [1261] = 1261, + [1262] = 1060, + [1263] = 1054, + [1264] = 1254, + [1265] = 663, + [1266] = 1256, + [1267] = 1257, + [1268] = 1166, + [1269] = 1167, + [1270] = 1223, + [1271] = 1261, + [1272] = 663, + [1273] = 1111, + [1274] = 1055, + [1275] = 1053, + [1276] = 1181, + [1277] = 1277, + [1278] = 1278, + [1279] = 1279, + [1280] = 661, + [1281] = 1052, + [1282] = 666, + [1283] = 1050, + [1284] = 1156, + [1285] = 675, + [1286] = 658, + [1287] = 650, + [1288] = 1222, + [1289] = 1289, + [1290] = 1290, + [1291] = 1220, + [1292] = 1049, + [1293] = 1124, + [1294] = 1125, + [1295] = 660, + [1296] = 1290, + [1297] = 1289, + [1298] = 1051, + [1299] = 1219, + [1300] = 1181, + [1301] = 1279, + [1302] = 1223, + [1303] = 1193, + [1304] = 1193, + [1305] = 1205, + [1306] = 1222, + [1307] = 1279, + [1308] = 663, + [1309] = 1112, + [1310] = 1289, + [1311] = 1290, + [1312] = 658, + [1313] = 1112, + [1314] = 651, + [1315] = 1112, + [1316] = 1033, + [1317] = 1261, + [1318] = 1220, + [1319] = 657, + [1320] = 1108, + [1321] = 1219, + [1322] = 1156, + [1323] = 1248, + [1324] = 1257, + [1325] = 1256, + [1326] = 1218, + [1327] = 1217, + [1328] = 1246, + [1329] = 1278, + [1330] = 1183, + [1331] = 1171, + [1332] = 1224, + [1333] = 1248, + [1334] = 1254, + [1335] = 1253, + [1336] = 1246, + [1337] = 1212, + [1338] = 1172, + [1339] = 1180, + [1340] = 1179, + [1341] = 1277, + [1342] = 1204, + [1343] = 1278, + [1344] = 1277, + [1345] = 1205, + [1346] = 1203, + [1347] = 1185, + [1348] = 1195, + [1349] = 1217, + [1350] = 1196, + [1351] = 1166, + [1352] = 1197, + [1353] = 1108, + [1354] = 1224, + [1355] = 1112, + [1356] = 1167, + [1357] = 658, + [1358] = 1108, + [1359] = 1111, + [1360] = 1212, + [1361] = 1257, + [1362] = 1181, + [1363] = 1256, + [1364] = 1171, + [1365] = 1261, + [1366] = 1172, + [1367] = 1254, + [1368] = 1253, + [1369] = 1246, + [1370] = 1248, + [1371] = 1204, + [1372] = 1181, + [1373] = 1203, + [1374] = 1151, + [1375] = 1106, + [1376] = 1279, + [1377] = 1246, + [1378] = 1248, + [1379] = 1224, + [1380] = 1222, + [1381] = 1220, + [1382] = 663, + [1383] = 1219, + [1384] = 659, + [1385] = 1277, + [1386] = 673, + [1387] = 671, + [1388] = 668, + [1389] = 672, + [1390] = 653, + [1391] = 1218, + [1392] = 1217, + [1393] = 1223, + [1394] = 1290, + [1395] = 660, + [1396] = 1199, + [1397] = 1172, + [1398] = 673, + [1399] = 657, + [1400] = 1183, + [1401] = 1401, + [1402] = 1197, + [1403] = 1196, + [1404] = 1124, + [1405] = 1125, + [1406] = 1195, + [1407] = 1172, + [1408] = 658, + [1409] = 657, + [1410] = 1185, + [1411] = 653, + [1412] = 672, + [1413] = 1212, + [1414] = 1180, + [1415] = 1199, + [1416] = 1193, + [1417] = 1205, + [1418] = 668, + [1419] = 671, + [1420] = 1179, + [1421] = 1179, + [1422] = 1180, + [1423] = 1183, + [1424] = 1212, + [1425] = 1197, + [1426] = 659, + [1427] = 1217, + [1428] = 1218, + [1429] = 1196, + [1430] = 1195, + [1431] = 675, + [1432] = 1185, + [1433] = 1246, + [1434] = 1248, + [1435] = 1219, + [1436] = 1205, + [1437] = 1193, + [1438] = 1220, + [1439] = 1222, + [1440] = 1289, + [1441] = 1199, + [1442] = 1183, + [1443] = 1197, + [1444] = 1196, + [1445] = 1223, + [1446] = 1195, + [1447] = 1224, + [1448] = 1203, + [1449] = 663, + [1450] = 1185, + [1451] = 666, + [1452] = 1204, + [1453] = 661, + [1454] = 1278, + [1455] = 1277, + [1456] = 1278, + [1457] = 657, + [1458] = 1290, + [1459] = 1289, + [1460] = 1279, + [1461] = 1253, + [1462] = 1261, + [1463] = 1254, + [1464] = 1257, + [1465] = 1256, + [1466] = 1112, + [1467] = 1112, + [1468] = 1171, + [1469] = 1171, + [1470] = 657, + [1471] = 660, + [1472] = 657, + [1473] = 1254, + [1474] = 1256, + [1475] = 675, + [1476] = 1257, + [1477] = 666, + [1478] = 661, + [1479] = 1108, + [1480] = 1253, + [1481] = 658, + [1482] = 1261, + [1483] = 1156, + [1484] = 1204, + [1485] = 1203, + [1486] = 1108, + [1487] = 1224, + [1488] = 1223, + [1489] = 1222, + [1490] = 1181, + [1491] = 1279, + [1492] = 1220, + [1493] = 658, + [1494] = 1219, + [1495] = 1218, + [1496] = 1217, + [1497] = 1125, + [1498] = 1124, + [1499] = 1289, + [1500] = 1290, + [1501] = 660, + [1502] = 675, + [1503] = 1193, + [1504] = 666, + [1505] = 661, + [1506] = 1278, + [1507] = 1277, + [1508] = 1111, + [1509] = 1205, + [1510] = 1179, + [1511] = 1180, + [1512] = 1156, + [1513] = 659, + [1514] = 672, + [1515] = 1166, + [1516] = 1172, + [1517] = 668, + [1518] = 671, + [1519] = 1185, + [1520] = 1289, + [1521] = 673, + [1522] = 1261, + [1523] = 1179, + [1524] = 1195, + [1525] = 1166, + [1526] = 1257, + [1527] = 1256, + [1528] = 1246, + [1529] = 1248, + [1530] = 1171, + [1531] = 1167, + [1532] = 1196, + [1533] = 1254, + [1534] = 1253, + [1535] = 1197, + [1536] = 1180, + [1537] = 1212, + [1538] = 1204, + [1539] = 1217, + [1540] = 1183, + [1541] = 1203, + [1542] = 1279, + [1543] = 1218, + [1544] = 1219, + [1545] = 1199, + [1546] = 1220, + [1547] = 1222, + [1548] = 1223, + [1549] = 1248, + [1550] = 658, + [1551] = 1224, + [1552] = 1277, + [1553] = 657, + [1554] = 1224, + [1555] = 1203, + [1556] = 1223, + [1557] = 663, + [1558] = 1222, + [1559] = 1220, + [1560] = 1219, + [1561] = 1199, + [1562] = 1204, + [1563] = 1218, + [1564] = 1217, + [1565] = 1183, + [1566] = 1253, + [1567] = 1254, + [1568] = 1171, + [1569] = 1212, + [1570] = 1197, + [1571] = 1180, + [1572] = 1179, + [1573] = 1256, + [1574] = 1246, + [1575] = 1166, + [1576] = 1205, + [1577] = 1193, + [1578] = 1167, + [1579] = 1257, + [1580] = 1277, + [1581] = 1278, + [1582] = 653, + [1583] = 1290, + [1584] = 672, + [1585] = 1196, + [1586] = 668, + [1587] = 671, + [1588] = 658, + [1589] = 673, + [1590] = 659, + [1591] = 663, + [1592] = 1261, + [1593] = 1193, + [1594] = 1181, + [1595] = 1205, + [1596] = 1290, + [1597] = 1289, + [1598] = 1172, + [1599] = 1195, + [1600] = 657, + [1601] = 1279, + [1602] = 1181, + [1603] = 1185, + [1604] = 653, + [1605] = 1167, + [1606] = 1278, + [1607] = 657, + [1608] = 671, + [1609] = 657, + [1610] = 675, + [1611] = 657, + [1612] = 657, + [1613] = 672, + [1614] = 658, + [1615] = 666, + [1616] = 653, + [1617] = 663, + [1618] = 661, + [1619] = 660, + [1620] = 1401, + [1621] = 668, + [1622] = 659, + [1623] = 673, + [1624] = 1199, + [1625] = 1195, + [1626] = 1183, + [1627] = 1197, + [1628] = 1196, + [1629] = 1185, + [1630] = 661, + [1631] = 675, + [1632] = 666, + [1633] = 1401, + [1634] = 660, + [1635] = 1112, + [1636] = 1112, + [1637] = 1112, + [1638] = 1181, + [1639] = 658, + [1640] = 1640, + [1641] = 657, [1642] = 1642, - [1643] = 1643, + [1643] = 1112, [1644] = 1644, - [1645] = 1645, - [1646] = 1641, - [1647] = 1647, - [1648] = 1629, - [1649] = 1629, - [1650] = 1645, - [1651] = 1635, - [1652] = 1652, - [1653] = 1653, - [1654] = 1654, - [1655] = 1642, - [1656] = 1656, - [1657] = 1482, - [1658] = 1470, - [1659] = 1647, - [1660] = 1660, - [1661] = 1631, - [1662] = 1638, - [1663] = 1631, - [1664] = 1664, - [1665] = 1665, - [1666] = 1470, - [1667] = 1482, - [1668] = 1644, - [1669] = 1641, - [1670] = 1482, - [1671] = 1638, - [1672] = 1672, - [1673] = 1664, - [1674] = 1674, - [1675] = 1675, - [1676] = 1635, - [1677] = 1677, - [1678] = 1678, - [1679] = 1679, - [1680] = 1645, + [1645] = 1112, + [1646] = 1646, + [1647] = 661, + [1648] = 1648, + [1649] = 1061, + [1650] = 1062, + [1651] = 1401, + [1652] = 1648, + [1653] = 1648, + [1654] = 1052, + [1655] = 1050, + [1656] = 1112, + [1657] = 1648, + [1658] = 1053, + [1659] = 1055, + [1660] = 1644, + [1661] = 658, + [1662] = 1648, + [1663] = 1642, + [1664] = 1648, + [1665] = 1054, + [1666] = 1666, + [1667] = 1648, + [1668] = 657, + [1669] = 1077, + [1670] = 660, + [1671] = 1671, + [1672] = 1648, + [1673] = 660, + [1674] = 1401, + [1675] = 661, + [1676] = 675, + [1677] = 660, + [1678] = 666, + [1679] = 661, + [1680] = 666, [1681] = 1681, - [1682] = 1628, - [1683] = 1683, - [1684] = 1633, - [1685] = 1685, - [1686] = 1686, - [1687] = 1677, + [1682] = 1648, + [1683] = 1401, + [1684] = 675, + [1685] = 675, + [1686] = 666, + [1687] = 1648, [1688] = 1688, - [1689] = 1689, - [1690] = 1689, - [1691] = 1691, - [1692] = 1692, - [1693] = 1693, - [1694] = 1694, - [1695] = 1620, - [1696] = 1686, - [1697] = 1697, - [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1701, - [1702] = 1689, - [1703] = 1683, - [1704] = 1693, - [1705] = 1692, - [1706] = 1706, - [1707] = 1627, - [1708] = 1708, - [1709] = 1709, - [1710] = 1710, - [1711] = 1711, - [1712] = 1712, - [1713] = 1713, - [1714] = 1697, - [1715] = 1715, - [1716] = 1716, - [1717] = 1717, + [1689] = 1112, + [1690] = 1690, + [1691] = 1690, + [1692] = 1666, + [1693] = 1671, + [1694] = 1690, + [1695] = 1646, + [1696] = 1696, + [1697] = 1690, + [1698] = 1690, + [1699] = 1690, + [1700] = 1690, + [1701] = 1690, + [1702] = 1690, + [1703] = 1690, + [1704] = 1690, + [1705] = 1690, + [1706] = 1690, + [1707] = 1707, + [1708] = 1688, + [1709] = 1690, + [1710] = 1690, + [1711] = 1696, + [1712] = 1640, + [1713] = 1690, + [1714] = 1714, + [1715] = 1696, + [1716] = 1707, + [1717] = 1681, [1718] = 1718, - [1719] = 1712, - [1720] = 1562, - [1721] = 1694, - [1722] = 1688, - [1723] = 1712, - [1724] = 1700, - [1725] = 1674, + [1719] = 1719, + [1720] = 1719, + [1721] = 1721, + [1722] = 1722, + [1723] = 1721, + [1724] = 1724, + [1725] = 1724, [1726] = 1726, - [1727] = 1709, - [1728] = 1689, - [1729] = 1688, - [1730] = 1710, - [1731] = 1689, - [1732] = 1709, - [1733] = 1689, - [1734] = 1708, - [1735] = 1689, - [1736] = 1736, - [1737] = 1689, - [1738] = 1736, + [1727] = 1726, + [1728] = 1726, + [1729] = 1726, + [1730] = 1726, + [1731] = 1726, + [1732] = 1726, + [1733] = 1726, + [1734] = 1734, + [1735] = 1734, + [1736] = 1734, + [1737] = 1737, + [1738] = 1737, [1739] = 1739, - [1740] = 1740, - [1741] = 1741, - [1742] = 1742, - [1743] = 1743, - [1744] = 1744, - [1745] = 1745, - [1746] = 1718, - [1747] = 1747, - [1748] = 1748, + [1740] = 1739, + [1741] = 1737, + [1742] = 1737, + [1743] = 1739, + [1744] = 1739, + [1745] = 1737, + [1746] = 1734, + [1747] = 1739, + [1748] = 1737, [1749] = 1749, - [1750] = 1750, - [1751] = 1751, - [1752] = 1706, - [1753] = 1711, - [1754] = 1754, - [1755] = 1755, - [1756] = 1756, - [1757] = 1757, - [1758] = 1758, + [1750] = 1739, + [1751] = 1734, + [1752] = 1737, + [1753] = 1739, + [1754] = 1734, + [1755] = 1737, + [1756] = 1734, + [1757] = 1734, + [1758] = 1739, [1759] = 1759, [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1766, - [1767] = 1767, - [1768] = 1691, - [1769] = 1769, - [1770] = 1754, - [1771] = 1713, - [1772] = 1772, - [1773] = 1772, - [1774] = 1774, + [1761] = 1759, + [1762] = 1759, + [1763] = 1760, + [1764] = 1760, + [1765] = 1759, + [1766] = 1759, + [1767] = 1760, + [1768] = 1768, + [1769] = 1759, + [1770] = 1760, + [1771] = 1759, + [1772] = 1760, + [1773] = 1760, + [1774] = 1759, [1775] = 1775, - [1776] = 1775, - [1777] = 1777, - [1778] = 1778, - [1779] = 1779, - [1780] = 1780, - [1781] = 1627, - [1782] = 1677, + [1776] = 1776, + [1777] = 1760, + [1778] = 1759, + [1779] = 1760, + [1780] = 1199, + [1781] = 1196, + [1782] = 1195, [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 1786, + [1784] = 1185, + [1785] = 1197, + [1786] = 1183, [1787] = 1787, [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, - [1792] = 1677, - [1793] = 1772, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1627, - [1799] = 950, - [1800] = 1800, + [1789] = 1185, + [1790] = 1196, + [1791] = 1183, + [1792] = 1195, + [1793] = 1185, + [1794] = 1197, + [1795] = 1199, + [1796] = 1199, + [1797] = 1197, + [1798] = 1196, + [1799] = 1195, + [1800] = 1183, [1801] = 1801, [1802] = 1802, [1803] = 1803, - [1804] = 915, - [1805] = 1805, - [1806] = 1802, + [1804] = 1804, + [1805] = 1183, + [1806] = 1185, [1807] = 1807, - [1808] = 1808, - [1809] = 1809, - [1810] = 1800, - [1811] = 1811, - [1812] = 1812, - [1813] = 1813, - [1814] = 590, - [1815] = 1677, - [1816] = 1816, - [1817] = 1817, - [1818] = 1376, - [1819] = 1627, - [1820] = 1802, - [1821] = 1780, - [1822] = 1813, - [1823] = 1808, - [1824] = 1813, - [1825] = 1825, + [1808] = 1802, + [1809] = 1197, + [1810] = 1810, + [1811] = 1804, + [1812] = 1801, + [1813] = 1195, + [1814] = 1196, + [1815] = 1183, + [1816] = 1788, + [1817] = 1810, + [1818] = 1818, + [1819] = 1195, + [1820] = 1820, + [1821] = 1803, + [1822] = 1822, + [1823] = 1768, + [1824] = 1824, + [1825] = 1803, [1826] = 1826, [1827] = 1827, - [1828] = 1828, - [1829] = 1778, - [1830] = 1830, - [1831] = 1831, + [1828] = 1196, + [1829] = 1803, + [1830] = 1197, + [1831] = 1199, [1832] = 1832, - [1833] = 1827, - [1834] = 1828, - [1835] = 1817, - [1836] = 1785, - [1837] = 1816, - [1838] = 1787, - [1839] = 575, - [1840] = 1789, - [1841] = 1790, - [1842] = 1790, - [1843] = 1789, - [1844] = 1844, - [1845] = 1787, - [1846] = 1785, - [1847] = 1825, - [1848] = 1795, - [1849] = 1790, - [1850] = 1831, - [1851] = 1789, - [1852] = 1831, - [1853] = 1825, - [1854] = 1787, - [1855] = 1376, - [1856] = 1785, - [1857] = 1678, - [1858] = 1761, - [1859] = 1859, - [1860] = 1762, - [1861] = 1772, - [1862] = 582, - [1863] = 1828, - [1864] = 1827, - [1865] = 1797, + [1833] = 1199, + [1834] = 1810, + [1835] = 1822, + [1836] = 1803, + [1837] = 1837, + [1838] = 1804, + [1839] = 1185, + [1840] = 1803, + [1841] = 1803, + [1842] = 1842, + [1843] = 1803, + [1844] = 1803, + [1845] = 1845, + [1846] = 1845, + [1847] = 1807, + [1848] = 1801, + [1849] = 1803, + [1850] = 1196, + [1851] = 1851, + [1852] = 1852, + [1853] = 1853, + [1854] = 1854, + [1855] = 1195, + [1856] = 1185, + [1857] = 1857, + [1858] = 1858, + [1859] = 1197, + [1860] = 1197, + [1861] = 1861, + [1862] = 1857, + [1863] = 1863, + [1864] = 1864, + [1865] = 1183, [1866] = 1866, - [1867] = 1780, - [1868] = 1859, - [1869] = 1660, - [1870] = 1807, - [1871] = 1674, - [1872] = 1797, - [1873] = 1807, - [1874] = 1831, - [1875] = 1797, - [1876] = 1828, - [1877] = 1811, - [1878] = 1634, - [1879] = 1879, - [1880] = 1636, - [1881] = 1801, - [1882] = 1643, - [1883] = 1827, - [1884] = 1780, - [1885] = 1637, - [1886] = 1625, - [1887] = 586, - [1888] = 1620, - [1889] = 573, - [1890] = 1827, - [1891] = 1828, - [1892] = 1790, - [1893] = 1789, - [1894] = 1831, + [1867] = 1851, + [1868] = 1857, + [1869] = 1869, + [1870] = 1870, + [1871] = 1195, + [1872] = 1853, + [1873] = 1768, + [1874] = 1858, + [1875] = 1857, + [1876] = 1876, + [1877] = 1196, + [1878] = 1869, + [1879] = 1768, + [1880] = 1857, + [1881] = 1881, + [1882] = 1854, + [1883] = 1861, + [1884] = 1199, + [1885] = 1199, + [1886] = 1857, + [1887] = 1185, + [1888] = 1876, + [1889] = 1889, + [1890] = 1854, + [1891] = 1891, + [1892] = 1857, + [1893] = 1893, + [1894] = 1853, [1895] = 1895, - [1896] = 1780, - [1897] = 1787, - [1898] = 1783, - [1899] = 1785, - [1900] = 1785, - [1901] = 1787, - [1902] = 1902, - [1903] = 1789, - [1904] = 1790, - [1905] = 1831, - [1906] = 1784, + [1896] = 1896, + [1897] = 1851, + [1898] = 1893, + [1899] = 1857, + [1900] = 1183, + [1901] = 1869, + [1902] = 1893, + [1903] = 1903, + [1904] = 1904, + [1905] = 1905, + [1906] = 1906, [1907] = 1907, - [1908] = 1805, - [1909] = 1828, - [1910] = 1811, - [1911] = 1777, + [1908] = 1908, + [1909] = 1909, + [1910] = 1788, + [1911] = 1911, [1912] = 1912, - [1913] = 1827, - [1914] = 1780, - [1915] = 1772, + [1913] = 1913, + [1914] = 1912, + [1915] = 1915, [1916] = 1916, - [1917] = 1812, - [1918] = 1817, - [1919] = 1797, - [1920] = 1811, - [1921] = 1816, - [1922] = 1623, - [1923] = 1807, - [1924] = 1745, - [1925] = 1807, - [1926] = 1797, - [1927] = 1807, - [1928] = 1763, - [1929] = 1772, - [1930] = 1808, - [1931] = 1811, - [1932] = 1772, - [1933] = 1779, - [1934] = 1790, - [1935] = 1789, + [1917] = 1917, + [1918] = 1918, + [1919] = 1906, + [1920] = 1920, + [1921] = 1921, + [1922] = 1922, + [1923] = 1920, + [1924] = 1909, + [1925] = 1925, + [1926] = 1911, + [1927] = 1927, + [1928] = 1928, + [1929] = 1912, + [1930] = 1903, + [1931] = 1903, + [1932] = 1932, + [1933] = 1788, + [1934] = 1915, + [1935] = 1935, [1936] = 1936, - [1937] = 1787, - [1938] = 1780, - [1939] = 1767, - [1940] = 1785, - [1941] = 1831, - [1942] = 1797, - [1943] = 1828, - [1944] = 1827, - [1945] = 1828, - [1946] = 1811, - [1947] = 1827, - [1948] = 1831, - [1949] = 1812, + [1937] = 1646, + [1938] = 1938, + [1939] = 1927, + [1940] = 1940, + [1941] = 1941, + [1942] = 1909, + [1943] = 1906, + [1944] = 1640, + [1945] = 1911, + [1946] = 1938, + [1947] = 1947, + [1948] = 1948, + [1949] = 1783, [1950] = 1950, - [1951] = 1912, - [1952] = 1785, - [1953] = 1780, - [1954] = 1787, - [1955] = 1826, - [1956] = 1789, - [1957] = 1790, - [1958] = 1755, - [1959] = 1959, - [1960] = 1811, - [1961] = 1807, - [1962] = 1807, - [1963] = 1683, - [1964] = 1797, - [1965] = 1959, + [1951] = 1951, + [1952] = 1947, + [1953] = 1951, + [1954] = 1783, + [1955] = 1955, + [1956] = 1956, + [1957] = 1904, + [1958] = 1958, + [1959] = 1783, + [1960] = 1920, + [1961] = 1961, + [1962] = 1927, + [1963] = 1788, + [1964] = 1964, + [1965] = 1965, [1966] = 1966, - [1967] = 1388, + [1967] = 1820, [1968] = 1968, [1969] = 1969, - [1970] = 1970, + [1970] = 1925, [1971] = 1971, [1972] = 1972, - [1973] = 1968, - [1974] = 1691, + [1973] = 1973, + [1974] = 1974, [1975] = 1975, [1976] = 1976, - [1977] = 1977, - [1978] = 1970, - [1979] = 1979, - [1980] = 1980, - [1981] = 1390, - [1982] = 1982, + [1977] = 1973, + [1978] = 1973, + [1979] = 1973, + [1980] = 1671, + [1981] = 1973, + [1982] = 1958, [1983] = 1983, - [1984] = 1385, + [1984] = 1973, [1985] = 1985, - [1986] = 1395, - [1987] = 1987, + [1986] = 1986, + [1987] = 1971, [1988] = 1988, [1989] = 1989, [1990] = 1990, - [1991] = 1991, + [1991] = 1973, [1992] = 1992, - [1993] = 1970, - [1994] = 1980, - [1995] = 1990, - [1996] = 1996, - [1997] = 1902, + [1993] = 1941, + [1994] = 1973, + [1995] = 1973, + [1996] = 1973, + [1997] = 1997, [1998] = 1998, - [1999] = 1385, - [2000] = 1390, - [2001] = 2001, - [2002] = 2002, - [2003] = 1895, - [2004] = 1983, - [2005] = 1701, - [2006] = 1395, - [2007] = 1966, - [2008] = 2008, - [2009] = 1969, - [2010] = 1701, - [2011] = 2011, - [2012] = 1388, - [2013] = 2013, - [2014] = 2014, - [2015] = 2015, + [1999] = 1973, + [2000] = 2000, + [2001] = 1666, + [2002] = 1969, + [2003] = 1973, + [2004] = 1681, + [2005] = 1688, + [2006] = 1973, + [2007] = 1988, + [2008] = 1969, + [2009] = 1973, + [2010] = 1973, + [2011] = 1974, + [2012] = 1976, + [2013] = 1940, + [2014] = 1916, + [2015] = 1989, [2016] = 2016, - [2017] = 1982, - [2018] = 1972, - [2019] = 1992, - [2020] = 1992, - [2021] = 1991, + [2017] = 1992, + [2018] = 1985, + [2019] = 1971, + [2020] = 2020, + [2021] = 1986, [2022] = 2022, - [2023] = 1907, - [2024] = 1701, - [2025] = 2025, + [2023] = 2023, + [2024] = 1997, + [2025] = 1992, [2026] = 2026, - [2027] = 1980, - [2028] = 1971, + [2027] = 1973, + [2028] = 1853, [2029] = 2029, [2030] = 2030, - [2031] = 1979, + [2031] = 2016, [2032] = 2032, [2033] = 2033, [2034] = 2034, [2035] = 2035, [2036] = 2036, [2037] = 2037, - [2038] = 2033, + [2038] = 2038, [2039] = 2039, [2040] = 2040, [2041] = 2041, - [2042] = 2039, - [2043] = 2041, - [2044] = 2040, - [2045] = 2036, + [2042] = 2030, + [2043] = 2043, + [2044] = 2022, + [2045] = 2045, [2046] = 2046, [2047] = 2047, - [2048] = 2033, + [2048] = 2048, [2049] = 2049, [2050] = 2050, [2051] = 2051, - [2052] = 2050, - [2053] = 2035, + [2052] = 2052, + [2053] = 2053, [2054] = 2054, [2055] = 2055, - [2056] = 2056, + [2056] = 1990, [2057] = 2057, - [2058] = 2036, - [2059] = 2051, - [2060] = 2047, - [2061] = 2061, - [2062] = 2062, - [2063] = 2049, - [2064] = 2054, - [2065] = 2055, - [2066] = 2057, + [2058] = 2058, + [2059] = 2059, + [2060] = 2060, + [2061] = 2026, + [2062] = 2058, + [2063] = 2063, + [2064] = 2064, + [2065] = 2065, + [2066] = 1941, [2067] = 2067, - [2068] = 2057, - [2069] = 2055, - [2070] = 2054, - [2071] = 2051, - [2072] = 2072, - [2073] = 2035, - [2074] = 2050, - [2075] = 2049, - [2076] = 2047, - [2077] = 2033, - [2078] = 2033, - [2079] = 2036, - [2080] = 2040, - [2081] = 2041, - [2082] = 2039, - [2083] = 2039, - [2084] = 2041, - [2085] = 2036, - [2086] = 2047, - [2087] = 2049, - [2088] = 2050, - [2089] = 2051, - [2090] = 2040, - [2091] = 2054, - [2092] = 2055, - [2093] = 2093, - [2094] = 2057, + [2068] = 2068, + [2069] = 2067, + [2070] = 2070, + [2071] = 2071, + [2072] = 2043, + [2073] = 2032, + [2074] = 2074, + [2075] = 2075, + [2076] = 2076, + [2077] = 2077, + [2078] = 2078, + [2079] = 1688, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 2083, + [2084] = 2080, + [2085] = 2085, + [2086] = 2086, + [2087] = 1925, + [2088] = 1640, + [2089] = 2089, + [2090] = 2090, + [2091] = 1108, + [2092] = 1940, + [2093] = 1940, + [2094] = 681, [2095] = 2095, - [2096] = 2061, + [2096] = 2080, [2097] = 2097, - [2098] = 2034, - [2099] = 2035, - [2100] = 2100, - [2101] = 2037, - [2102] = 2102, - [2103] = 2103, - [2104] = 2046, + [2098] = 2098, + [2099] = 2099, + [2100] = 2086, + [2101] = 2077, + [2102] = 2095, + [2103] = 2099, + [2104] = 1646, [2105] = 2105, - [2106] = 2106, - [2107] = 2107, + [2106] = 2078, + [2107] = 2063, [2108] = 2108, - [2109] = 2039, + [2109] = 2076, [2110] = 2110, - [2111] = 2111, - [2112] = 2112, - [2113] = 2047, - [2114] = 2114, + [2111] = 677, + [2112] = 2065, + [2113] = 2071, + [2114] = 2110, [2115] = 2115, - [2116] = 2116, - [2117] = 2039, - [2118] = 2049, + [2116] = 2075, + [2117] = 2064, + [2118] = 2081, [2119] = 2119, [2120] = 2120, - [2121] = 2057, - [2122] = 2057, - [2123] = 2035, - [2124] = 2120, - [2125] = 2125, - [2126] = 2097, - [2127] = 2127, - [2128] = 2050, - [2129] = 2129, - [2130] = 2049, - [2131] = 2112, - [2132] = 2051, - [2133] = 2114, - [2134] = 2055, - [2135] = 2054, - [2136] = 2125, - [2137] = 2054, + [2121] = 2070, + [2122] = 2085, + [2123] = 2077, + [2124] = 2089, + [2125] = 2086, + [2126] = 2098, + [2127] = 2105, + [2128] = 2128, + [2129] = 2063, + [2130] = 2110, + [2131] = 2076, + [2132] = 2078, + [2133] = 2108, + [2134] = 2097, + [2135] = 2135, + [2136] = 2136, + [2137] = 2099, [2138] = 2138, - [2139] = 2139, - [2140] = 2055, - [2141] = 2100, + [2139] = 2095, + [2140] = 2080, + [2141] = 2141, [2142] = 2142, - [2143] = 2047, - [2144] = 2144, - [2145] = 2057, - [2146] = 2116, - [2147] = 2051, - [2148] = 2033, - [2149] = 2050, - [2150] = 2072, - [2151] = 2037, - [2152] = 2057, - [2153] = 2067, - [2154] = 2106, - [2155] = 2062, - [2156] = 2156, - [2157] = 2095, - [2158] = 2055, - [2159] = 2115, - [2160] = 2049, - [2161] = 2103, + [2143] = 2143, + [2144] = 1640, + [2145] = 2065, + [2146] = 2086, + [2147] = 2071, + [2148] = 2075, + [2149] = 2086, + [2150] = 2150, + [2151] = 2151, + [2152] = 2105, + [2153] = 2098, + [2154] = 2089, + [2155] = 2095, + [2156] = 2085, + [2157] = 2136, + [2158] = 2085, + [2159] = 2099, + [2160] = 2160, + [2161] = 2089, [2162] = 2162, - [2163] = 2163, - [2164] = 2047, - [2165] = 2054, - [2166] = 2142, - [2167] = 2041, - [2168] = 2036, - [2169] = 2112, - [2170] = 2051, - [2171] = 2138, - [2172] = 2050, - [2173] = 2106, - [2174] = 2049, - [2175] = 2139, - [2176] = 2039, - [2177] = 2177, - [2178] = 2138, - [2179] = 2041, + [2163] = 2098, + [2164] = 2105, + [2165] = 1958, + [2166] = 2078, + [2167] = 2135, + [2168] = 2105, + [2169] = 2098, + [2170] = 2160, + [2171] = 2075, + [2172] = 2065, + [2173] = 2071, + [2174] = 2174, + [2175] = 2080, + [2176] = 2075, + [2177] = 2143, + [2178] = 2078, + [2179] = 2083, [2180] = 2180, - [2181] = 2040, + [2181] = 2085, [2182] = 2105, - [2183] = 2183, - [2184] = 2035, - [2185] = 2050, - [2186] = 2102, - [2187] = 2033, - [2188] = 2100, + [2183] = 2089, + [2184] = 2098, + [2185] = 2098, + [2186] = 2105, + [2187] = 2075, + [2188] = 2188, [2189] = 2189, - [2190] = 2035, - [2191] = 2183, - [2192] = 2055, - [2193] = 2047, - [2194] = 2054, - [2195] = 2195, - [2196] = 2196, - [2197] = 2197, - [2198] = 2195, - [2199] = 2199, - [2200] = 2036, - [2201] = 2051, - [2202] = 2183, - [2203] = 2203, - [2204] = 2036, - [2205] = 2196, - [2206] = 2040, - [2207] = 2039, - [2208] = 2041, - [2209] = 2040, - [2210] = 2040, - [2211] = 2033, - [2212] = 2041, - [2213] = 2213, - [2214] = 2214, - [2215] = 2203, - [2216] = 2111, - [2217] = 2035, - [2218] = 2119, - [2219] = 2093, - [2220] = 2177, - [2221] = 2129, - [2222] = 2222, - [2223] = 2177, - [2224] = 2222, - [2225] = 2162, + [2190] = 2174, + [2191] = 2191, + [2192] = 2074, + [2193] = 2193, + [2194] = 1940, + [2195] = 2150, + [2196] = 684, + [2197] = 678, + [2198] = 2037, + [2199] = 2080, + [2200] = 2068, + [2201] = 2105, + [2202] = 1925, + [2203] = 685, + [2204] = 2086, + [2205] = 2098, + [2206] = 2046, + [2207] = 2089, + [2208] = 2085, + [2209] = 2209, + [2210] = 2075, + [2211] = 2071, + [2212] = 2095, + [2213] = 1966, + [2214] = 2065, + [2215] = 1916, + [2216] = 2099, + [2217] = 2217, + [2218] = 2078, + [2219] = 2095, + [2220] = 2108, + [2221] = 2083, + [2222] = 1905, + [2223] = 2078, + [2224] = 2086, + [2225] = 2225, + [2226] = 2141, + [2227] = 1965, + [2228] = 2228, + [2229] = 2065, + [2230] = 2071, + [2231] = 2231, + [2232] = 1964, + [2233] = 2075, + [2234] = 2138, + [2235] = 2065, + [2236] = 2099, + [2237] = 2085, + [2238] = 2071, + [2239] = 2089, + [2240] = 1640, + [2241] = 2098, + [2242] = 2105, + [2243] = 2105, + [2244] = 2098, + [2245] = 2095, + [2246] = 2075, + [2247] = 1156, + [2248] = 2248, + [2249] = 2089, + [2250] = 1935, + [2251] = 2085, + [2252] = 1955, + [2253] = 1956, + [2254] = 1925, + [2255] = 2080, + [2256] = 2099, + [2257] = 2142, + [2258] = 2136, + [2259] = 2086, + [2260] = 2065, + [2261] = 2071, + [2262] = 2119, + [2263] = 1968, + [2264] = 2054, + [2265] = 2075, + [2266] = 2095, + [2267] = 2059, + [2268] = 2078, + [2269] = 1681, + [2270] = 2270, + [2271] = 2271, + [2272] = 2272, + [2273] = 2273, + [2274] = 2274, + [2275] = 2270, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 2279, + [2280] = 2280, + [2281] = 2281, + [2282] = 2282, + [2283] = 2283, + [2284] = 2284, + [2285] = 2285, + [2286] = 2286, + [2287] = 1666, + [2288] = 2288, + [2289] = 1975, + [2290] = 2285, + [2291] = 2128, + [2292] = 2292, + [2293] = 1975, + [2294] = 2288, + [2295] = 1666, + [2296] = 1688, + [2297] = 2297, + [2298] = 2298, + [2299] = 2272, + [2300] = 2300, + [2301] = 2301, + [2302] = 1975, + [2303] = 1681, + [2304] = 2304, + [2305] = 2305, + [2306] = 2306, + [2307] = 2285, + [2308] = 2298, + [2309] = 2280, + [2310] = 2284, + [2311] = 2283, + [2312] = 2312, + [2313] = 2305, + [2314] = 2284, + [2315] = 2315, + [2316] = 2248, + [2317] = 2317, + [2318] = 2318, + [2319] = 2319, + [2320] = 2320, + [2321] = 2283, + [2322] = 2322, + [2323] = 2282, + [2324] = 2322, + [2325] = 2319, + [2326] = 1671, + [2327] = 1671, + [2328] = 2328, + [2329] = 2329, + [2330] = 2231, + [2331] = 2016, + [2332] = 2332, + [2333] = 2333, + [2334] = 2334, + [2335] = 2335, + [2336] = 2336, + [2337] = 2337, + [2338] = 2338, + [2339] = 2334, + [2340] = 2340, + [2341] = 2341, + [2342] = 2342, + [2343] = 2343, + [2344] = 2344, + [2345] = 2345, + [2346] = 2341, + [2347] = 2337, + [2348] = 2345, + [2349] = 2336, + [2350] = 2350, + [2351] = 2351, + [2352] = 2344, + [2353] = 2343, + [2354] = 2354, + [2355] = 2340, + [2356] = 2356, + [2357] = 2334, + [2358] = 2358, + [2359] = 2338, + [2360] = 2360, + [2361] = 2345, + [2362] = 2362, + [2363] = 2363, + [2364] = 2364, + [2365] = 2334, + [2366] = 2363, + [2367] = 2367, + [2368] = 2334, + [2369] = 2344, + [2370] = 2370, + [2371] = 2371, + [2372] = 2372, + [2373] = 2350, + [2374] = 2374, + [2375] = 2336, + [2376] = 2363, + [2377] = 2334, + [2378] = 2344, + [2379] = 2363, + [2380] = 2351, + [2381] = 2381, + [2382] = 2382, + [2383] = 2383, + [2384] = 2350, + [2385] = 2363, + [2386] = 2334, + [2387] = 2336, + [2388] = 2337, + [2389] = 2341, + [2390] = 2363, + [2391] = 2334, + [2392] = 2345, + [2393] = 2393, + [2394] = 2344, + [2395] = 2363, + [2396] = 2334, + [2397] = 2362, + [2398] = 2343, + [2399] = 2399, + [2400] = 2363, + [2401] = 2334, + [2402] = 2340, + [2403] = 2334, + [2404] = 2334, + [2405] = 2363, + [2406] = 2363, + [2407] = 2407, + [2408] = 2338, + [2409] = 2399, + [2410] = 2338, + [2411] = 2363, + [2412] = 2412, + [2413] = 2362, + [2414] = 2351, + [2415] = 2363, + [2416] = 2350, + [2417] = 2381, + [2418] = 2356, + [2419] = 2340, + [2420] = 2363, + [2421] = 2334, + [2422] = 2350, + [2423] = 2381, + [2424] = 2343, + [2425] = 2425, + [2426] = 2336, + [2427] = 2362, + [2428] = 2428, + [2429] = 2429, + [2430] = 2344, + [2431] = 2342, + [2432] = 2344, + [2433] = 2354, + [2434] = 2345, + [2435] = 2383, + [2436] = 2358, + [2437] = 2393, + [2438] = 2438, + [2439] = 2362, + [2440] = 2382, + [2441] = 2441, + [2442] = 2351, + [2443] = 2337, + [2444] = 2444, + [2445] = 2445, + [2446] = 2446, + [2447] = 2351, + [2448] = 2448, + [2449] = 2449, + [2450] = 2438, + [2451] = 2451, + [2452] = 2452, + [2453] = 2453, + [2454] = 2351, + [2455] = 2374, + [2456] = 2456, + [2457] = 2372, + [2458] = 2399, + [2459] = 2341, + [2460] = 2351, + [2461] = 2338, + [2462] = 2412, + [2463] = 2393, + [2464] = 2345, + [2465] = 2465, + [2466] = 2344, + [2467] = 2467, + [2468] = 2342, + [2469] = 2350, + [2470] = 2438, + [2471] = 2335, + [2472] = 2452, + [2473] = 2336, + [2474] = 2337, + [2475] = 2441, + [2476] = 2343, + [2477] = 2343, + [2478] = 2341, + [2479] = 2340, + [2480] = 2334, + [2481] = 2338, + [2482] = 2399, + [2483] = 2345, + [2484] = 2362, + [2485] = 2341, + [2486] = 2381, + [2487] = 2344, + [2488] = 2452, + [2489] = 2363, + [2490] = 2343, + [2491] = 2491, + [2492] = 2340, + [2493] = 2493, + [2494] = 2449, + [2495] = 2340, + [2496] = 2370, + [2497] = 2497, + [2498] = 2334, + [2499] = 2407, + [2500] = 2338, + [2501] = 2399, + [2502] = 2337, + [2503] = 2351, + [2504] = 2363, + [2505] = 2362, + [2506] = 2362, + [2507] = 2507, + [2508] = 2350, + [2509] = 2381, + [2510] = 2445, + [2511] = 2511, + [2512] = 2512, + [2513] = 2512, + [2514] = 2514, + [2515] = 2336, + [2516] = 2516, + [2517] = 2337, + [2518] = 2341, + [2519] = 2519, + [2520] = 2350, + [2521] = 2511, + [2522] = 2336, + [2523] = 2345, + [2524] = 2524, + [2525] = 2344, + [2526] = 2363, + [2527] = 2453, + [2528] = 2428, + [2529] = 2343, + [2530] = 2451, + [2531] = 2337, + [2532] = 2340, + [2533] = 2334, + [2534] = 2519, + [2535] = 2364, + [2536] = 2341, + [2537] = 2360, + [2538] = 2371, + [2539] = 2467, + [2540] = 2540, + [2541] = 2540, + [2542] = 2467, + [2543] = 2425, + [2544] = 2338, }; static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 + return (c < 43646 + ? (c < 4213 + ? (c < 2738 + ? (c < 2036 ? (c < 931 ? (c < 748 ? (c < 192 @@ -4858,13 +5150,839 @@ static inline bool sym_identifier_character_set_1(int32_t c) { ? c == 902 : c <= 906) : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 + : (c <= 1013 || (c < 1749 + ? (c < 1488 ? (c < 1329 ? (c < 1162 ? (c >= 1015 && c <= 1153) : c <= 1327) - : (c <= 1366 || c == 1369)) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))) + : (c <= 1514 || (c < 1646 + ? (c < 1568 + ? (c >= 1519 && c <= 1522) + : c <= 1610) + : (c <= 1647 || (c >= 1649 && c <= 1747))))) + : (c <= 1749 || (c < 1808 + ? (c < 1786 + ? (c < 1774 + ? (c >= 1765 && c <= 1766) + : c <= 1775) + : (c <= 1788 || c == 1791)) + : (c <= 1808 || (c < 1969 + ? (c < 1869 + ? (c >= 1810 && c <= 1839) + : c <= 1957) + : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) + : (c <= 2037 || (c < 2486 + ? (c < 2308 + ? (c < 2112 + ? (c < 2074 + ? (c < 2048 + ? c == 2042 + : c <= 2069) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))) + : (c <= 2136 || (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c >= 2208 && c <= 2249))))) + : (c <= 2361 || (c < 2437 + ? (c < 2392 + ? (c < 2384 + ? c == 2365 + : c <= 2384) + : (c <= 2401 || (c >= 2417 && c <= 2432))) + : (c <= 2444 || (c < 2474 + ? (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472) + : (c <= 2480 || c == 2482)))))) + : (c <= 2489 || (c < 2610 + ? (c < 2556 + ? (c < 2524 + ? (c < 2510 + ? c == 2493 + : c <= 2510) + : (c <= 2525 || (c < 2544 + ? (c >= 2527 && c <= 2529) + : c <= 2545))) + : (c <= 2556 || (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c >= 2602 && c <= 2608))))) + : (c <= 2611 || (c < 2674 + ? (c < 2649 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2652 || c == 2654)) + : (c <= 2676 || (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) + : (c <= 2739 || (c < 3293 + ? (c < 2972 + ? (c < 2869 + ? (c < 2821 + ? (c < 2768 + ? (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749) + : (c <= 2768 || (c < 2809 + ? (c >= 2784 && c <= 2785) + : c <= 2809))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c >= 2866 && c <= 2867))))) + : (c <= 2873 || (c < 2947 + ? (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)) + : (c <= 2947 || (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))))))) + : (c <= 2972 || (c < 3160 + ? (c < 3077 + ? (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024))) + : (c <= 3084 || (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || c == 3133)))) + : (c <= 3162 || (c < 3214 + ? (c < 3200 + ? (c < 3168 + ? c == 3165 + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))) + : (c <= 3216 || (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || c == 3261)))))))) + : (c <= 3294 || (c < 3718 + ? (c < 3461 + ? (c < 3389 + ? (c < 3332 + ? (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314) + : (c <= 3340 || (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386))) + : (c <= 3389 || (c < 3423 + ? (c < 3412 + ? c == 3406 + : c <= 3414) + : (c <= 3425 || (c >= 3450 && c <= 3455))))) + : (c <= 3478 || (c < 3585 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c >= 3520 && c <= 3526))) + : (c <= 3632 || (c < 3713 + ? (c < 3648 + ? c == 3634 + : c <= 3654) + : (c <= 3714 || c == 3716)))))) + : (c <= 3722 || (c < 3904 + ? (c < 3773 + ? (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3760 || c == 3762)) + : (c <= 3773 || (c < 3804 + ? (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782) + : (c <= 3807 || c == 3840)))) + : (c <= 3911 || (c < 4176 + ? (c < 4096 + ? (c < 3976 + ? (c >= 3913 && c <= 3948) + : c <= 3980) + : (c <= 4138 || c == 4159)) + : (c <= 4181 || (c < 4197 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : c <= 4193) + : (c <= 4198 || (c >= 4206 && c <= 4208))))))))))))) + : (c <= 4225 || (c < 8182 + ? (c < 6400 + ? (c < 4888 + ? (c < 4704 + ? (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? c == 4238 + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c >= 4698 && c <= 4701))))) + : (c <= 4744 || (c < 4800 + ? (c < 4786 + ? (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784) + : (c <= 4789 || (c >= 4792 && c <= 4798))) + : (c <= 4800 || (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c >= 4882 && c <= 4885))))))) + : (c <= 4954 || (c < 5952 + ? (c < 5761 + ? (c < 5112 + ? (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109) + : (c <= 5117 || (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759))) + : (c <= 5786 || (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5905 || (c >= 5919 && c <= 5937))))) + : (c <= 5969 || (c < 6108 + ? (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)) + : (c <= 6108 || (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))))) + : (c <= 6430 || (c < 7413 + ? (c < 7086 + ? (c < 6688 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c < 6656 + ? (c >= 6576 && c <= 6601) + : c <= 6678))) + : (c <= 6740 || (c < 6981 + ? (c < 6917 + ? c == 6823 + : c <= 6963) + : (c <= 6988 || (c >= 7043 && c <= 7072))))) + : (c <= 7087 || (c < 7296 + ? (c < 7245 + ? (c < 7168 + ? (c >= 7098 && c <= 7141) + : c <= 7203) + : (c <= 7247 || (c >= 7258 && c <= 7293))) + : (c <= 7304 || (c < 7401 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7404 || (c >= 7406 && c <= 7411))))))) + : (c <= 7414 || (c < 8031 + ? (c < 8008 + ? (c < 7680 + ? (c < 7424 + ? c == 7418 + : c <= 7615) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)))) + : (c <= 8061 || (c < 8134 + ? (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c >= 8178 && c <= 8180))))))))))) + : (c <= 8188 || (c < 12549 + ? (c < 11559 + ? (c < 8488 + ? (c < 8458 + ? (c < 8336 + ? (c < 8319 + ? c == 8305 + : c <= 8319) + : (c <= 8348 || (c < 8455 + ? c == 8450 + : c <= 8455))) + : (c <= 8467 || (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)))) + : (c <= 8488 || (c < 8544 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)) + : (c <= 8584 || (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))))))) + : (c <= 11559 || (c < 11728 + ? (c < 11688 + ? (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686))) + : (c <= 11694 || (c < 11712 + ? (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710) + : (c <= 11718 || (c >= 11720 && c <= 11726))))) + : (c <= 11734 || (c < 12344 + ? (c < 12321 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : c <= 12295) + : (c <= 12329 || (c >= 12337 && c <= 12341))) + : (c <= 12348 || (c < 12449 + ? (c < 12445 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c >= 12540 && c <= 12543))))))))) + : (c <= 12591 || (c < 43015 + ? (c < 42623 + ? (c < 42192 + ? (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c < 19968 + ? (c >= 13312 && c <= 19903) + : c <= 42124))) + : (c <= 42237 || (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42960 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42954))) + : (c <= 42961 || (c < 42994 + ? (c < 42965 + ? c == 42963 + : c <= 42969) + : (c <= 43009 || (c >= 43011 && c <= 43013))))))) + : (c <= 43018 || (c < 43396 + ? (c < 43259 + ? (c < 43138 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : c <= 43123) + : (c <= 43187 || (c >= 43250 && c <= 43255))) + : (c <= 43259 || (c < 43312 + ? (c < 43274 + ? (c >= 43261 && c <= 43262) + : c <= 43301) + : (c <= 43334 || (c >= 43360 && c <= 43388))))) + : (c <= 43442 || (c < 43520 + ? (c < 43494 + ? (c < 43488 + ? c == 43471 + : c <= 43492) + : (c <= 43503 || (c >= 43514 && c <= 43518))) + : (c <= 43560 || (c < 43616 + ? (c < 43588 + ? (c >= 43584 && c <= 43586) + : c <= 43595) + : (c <= 43638 || c == 43642)))))))))))))) + : (c <= 43695 || (c < 71236 + ? (c < 67424 + ? (c < 65149 + ? (c < 64112 + ? (c < 43793 + ? (c < 43739 + ? (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || (c < 43714 + ? c == 43712 + : c <= 43714))) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))) + : (c <= 64217 || (c < 64467 + ? (c < 64312 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c < 64298 + ? (c >= 64287 && c <= 64296) + : c <= 64310))) + : (c <= 64316 || (c < 64323 + ? (c < 64320 + ? c == 64318 + : c <= 64321) + : (c <= 64324 || (c >= 64326 && c <= 64433))))) + : (c <= 64605 || (c < 65137 + ? (c < 64914 + ? (c < 64848 + ? (c >= 64612 && c <= 64829) + : c <= 64911) + : (c <= 64967 || (c >= 65008 && c <= 65017))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || c == 65147)))))))) + : (c <= 65149 || (c < 66349 + ? (c < 65549 + ? (c < 65474 + ? (c < 65345 + ? (c < 65313 + ? (c >= 65151 && c <= 65276) + : c <= 65338) + : (c <= 65370 || (c < 65440 + ? (c >= 65382 && c <= 65437) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))) + : (c <= 65574 || (c < 65664 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c >= 65616 && c <= 65629))) + : (c <= 65786 || (c < 66208 + ? (c < 66176 + ? (c >= 65856 && c <= 65908) + : c <= 66204) + : (c <= 66256 || (c >= 66304 && c <= 66335))))))) + : (c <= 66378 || (c < 66928 + ? (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66421) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66816 + ? (c < 66776 + ? (c >= 66736 && c <= 66771) + : c <= 66811) + : (c <= 66855 || (c >= 66864 && c <= 66915))))) + : (c <= 66938 || (c < 66979 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c >= 66967 && c <= 66977))) + : (c <= 66993 || (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c >= 67392 && c <= 67413))))))))))) + : (c <= 67431 || (c < 69635 + ? (c < 68121 + ? (c < 67712 + ? (c < 67594 + ? (c < 67506 + ? (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504) + : (c <= 67514 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c >= 67680 && c <= 67702))))) + : (c <= 67742 || (c < 67968 + ? (c < 67840 + ? (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829) + : (c <= 67861 || (c >= 67872 && c <= 67897))) + : (c <= 68023 || (c < 68112 + ? (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68096) + : (c <= 68115 || (c >= 68117 && c <= 68119))))))) + : (c <= 68149 || (c < 68800 + ? (c < 68416 + ? (c < 68288 + ? (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252) + : (c <= 68295 || (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405))) + : (c <= 68437 || (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))))) + : (c <= 68850 || (c < 69415 + ? (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))) + : (c <= 69415 || (c < 69552 + ? (c < 69488 + ? (c >= 69424 && c <= 69445) + : c <= 69505) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69687 || (c < 70303 + ? (c < 70081 + ? (c < 69956 + ? (c < 69763 + ? (c < 69749 + ? (c >= 69745 && c <= 69746) + : c <= 69749) + : (c <= 69807 || (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926))) + : (c <= 69956 || (c < 70006 + ? (c < 69968 + ? c == 69959 + : c <= 70002) + : (c <= 70006 || (c >= 70019 && c <= 70066))))) + : (c <= 70084 || (c < 70207 + ? (c < 70144 + ? (c < 70108 + ? c == 70106 + : c <= 70108) + : (c <= 70161 || (c >= 70163 && c <= 70187))) + : (c <= 70208 || (c < 70282 + ? (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280) + : (c <= 70285 || (c >= 70287 && c <= 70301))))))) + : (c <= 70312 || (c < 70493 + ? (c < 70442 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70320 && c <= 70366) + : c <= 70412) + : (c <= 70416 || (c >= 70419 && c <= 70440))) + : (c <= 70448 || (c < 70461 + ? (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457) + : (c <= 70461 || c == 70480)))) + : (c <= 70497 || (c < 70852 + ? (c < 70751 + ? (c < 70727 + ? (c >= 70656 && c <= 70708) + : c <= 70730) + : (c <= 70753 || (c >= 70784 && c <= 70831))) + : (c <= 70853 || (c < 71128 + ? (c < 71040 + ? c == 70855 + : c <= 71086) + : (c <= 71131 || (c >= 71168 && c <= 71215))))))))))))) + : (c <= 71236 || (c < 119973 + ? (c < 73728 + ? (c < 72272 + ? (c < 71960 + ? (c < 71840 + ? (c < 71424 + ? (c < 71352 + ? (c >= 71296 && c <= 71338) + : c <= 71352) + : (c <= 71450 || (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723))) + : (c <= 71903 || (c < 71948 + ? (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945) + : (c <= 71955 || (c >= 71957 && c <= 71958))))) + : (c <= 71983 || (c < 72161 + ? (c < 72096 + ? (c < 72001 + ? c == 71999 + : c <= 72001) + : (c <= 72103 || (c >= 72106 && c <= 72144))) + : (c <= 72161 || (c < 72203 + ? (c < 72192 + ? c == 72163 + : c <= 72192) + : (c <= 72242 || c == 72250)))))) + : (c <= 72272 || (c < 73030 + ? (c < 72768 + ? (c < 72368 + ? (c < 72349 + ? (c >= 72284 && c <= 72329) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72750))) + : (c <= 72768 || (c < 72968 + ? (c < 72960 + ? (c >= 72818 && c <= 72847) + : c <= 72966) + : (c <= 72969 || (c >= 72971 && c <= 73008))))) + : (c <= 73030 || (c < 73440 + ? (c < 73066 + ? (c < 73063 + ? (c >= 73056 && c <= 73061) + : c <= 73064) + : (c <= 73097 || c == 73112)) + : (c <= 73458 || (c < 73490 + ? (c < 73476 + ? c == 73474 + : c <= 73488) + : (c <= 73523 || c == 73648)))))))) + : (c <= 74649 || (c < 94208 + ? (c < 92928 + ? (c < 82944 + ? (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c < 78913 + ? (c >= 77824 && c <= 78895) + : c <= 78918))) + : (c <= 83526 || (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))))) + : (c <= 92975 || (c < 93952 + ? (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))) + : (c <= 94026 || (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)))))) + : (c <= 100343 || (c < 110948 + ? (c < 110589 + ? (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_2(int32_t c) { + return (c < 43642 + ? (c < 4206 + ? (c < 2730 + ? (c < 1994 + ? (c < 910 + ? (c < 736 + ? (c < 186 + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1649 + ? (c < 1376 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369))) : (c <= 1416 || (c < 1568 ? (c < 1519 ? (c >= 1488 && c <= 1514) @@ -4907,2484 +6025,1708 @@ static inline bool sym_identifier_character_set_1(int32_t c) { ? (c >= 2437 && c <= 2444) : c <= 2448) : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 + : (c <= 2482 || (c < 2602 + ? (c < 2544 ? (c < 2510 ? (c < 2493 ? (c >= 2486 && c <= 2489) : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 + : (c <= 2510 || (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529))) + : (c <= 2545 || (c < 2575 + ? (c < 2565 + ? c == 2556 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))))) + : (c <= 2608 || (c < 2654 + ? (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))) + : (c <= 2654 || (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3261 + ? (c < 2969 + ? (c < 2866 + ? (c < 2809 + ? (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || (c < 2784 + ? c == 2768 + : c <= 2785))) + : (c <= 2809 || (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))))) + : (c <= 2867 || (c < 2929 + ? (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))))))) + : (c <= 2970 || (c < 3133 + ? (c < 3024 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3024 || (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))))) + : (c <= 3133 || (c < 3205 + ? (c < 3168 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165) + : (c <= 3169 || c == 3200)) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c >= 3253 && c <= 3257))))))))) + : (c <= 3261 || (c < 3716 + ? (c < 3450 + ? (c < 3346 + ? (c < 3313 + ? (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3297) + : (c <= 3314 || (c < 3342 + ? (c >= 3332 && c <= 3340) + : c <= 3344))) + : (c <= 3386 || (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))))) + : (c <= 3455 || (c < 3520 + ? (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)) + : (c <= 3526 || (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))))))) + : (c <= 3716 || (c < 3840 + ? (c < 3762 + ? (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))) + : (c <= 3762 || (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))))) + : (c <= 3840 || (c < 4159 + ? (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c >= 4096 && c <= 4138))) + : (c <= 4159 || (c < 4193 + ? (c < 4186 + ? (c >= 4176 && c <= 4181) + : c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) + : (c <= 4208 || (c < 8178 + ? (c < 6320 + ? (c < 4882 + ? (c < 4698 + ? (c < 4304 + ? (c < 4256 + ? (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238) + : (c <= 4293 || (c < 4301 + ? c == 4295 + : c <= 4301))) + : (c <= 4346 || (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || c == 4696)))) + : (c <= 4701 || (c < 4792 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c >= 4786 && c <= 4789))) + : (c <= 4798 || (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c >= 4824 && c <= 4880))))))) + : (c <= 4885 || (c < 5919 + ? (c < 5743 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007) + : (c <= 5109 || (c < 5121 ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 + : c <= 5740))) + : (c <= 5759 || (c < 5870 + ? (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866) + : (c <= 5880 || (c >= 5888 && c <= 5905))))) + : (c <= 5937 || (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 + ? (c < 6176 + ? c == 6108 + : c <= 6264) + : (c <= 6312 || c == 6314)))))))) + : (c <= 6389 || (c < 7406 + ? (c < 7043 + ? (c < 6656 + ? (c < 6512 + ? (c < 6480 ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 + : c <= 6509) + : (c <= 6516 || (c < 6576 ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 + : c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6988))))) + : (c <= 7072 || (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))))) + : (c <= 7411 || (c < 8029 + ? (c < 7968 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965))) + : (c <= 8005 || (c < 8025 + ? (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023) + : (c <= 8025 || c == 8027)))) + : (c <= 8029 || (c < 8130 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || c == 8126)) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) + : (c <= 8180 || (c < 12540 + ? (c < 11520 + ? (c < 8486 + ? (c < 8455 + ? (c < 8319 + ? (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305) + : (c <= 8319 || (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || c == 8484)))) + : (c <= 8486 || (c < 8526 + ? (c < 8508 + ? (c < 8490 + ? c == 8488 + : c <= 8505) + : (c <= 8511 || (c >= 8517 && c <= 8521))) + : (c <= 8526 || (c < 11499 + ? (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))))))) + : (c <= 11557 || (c < 11720 + ? (c < 11680 + ? (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || (c < 11648 + ? c == 11631 + : c <= 11670))) + : (c <= 11686 || (c < 11704 ? (c < 11696 ? (c >= 11688 && c <= 11694) : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 + : (c <= 11710 || (c >= 11712 && c <= 11718))))) + : (c <= 11726 || (c < 12337 + ? (c < 12293 ? (c < 11736 ? (c >= 11728 && c <= 11734) : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12445 ? (c < 12353 ? (c >= 12344 && c <= 12348) : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 + : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) + : (c <= 12543 || (c < 43011 + ? (c < 42560 + ? (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 ? (c < 42240 ? (c >= 42192 && c <= 42237) : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 + : (c <= 42527 || (c >= 42538 && c <= 42539))))) + : (c <= 42606 || (c < 42891 + ? (c < 42775 ? (c < 42656 ? (c >= 42623 && c <= 42653) : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 + : (c <= 42783 || (c >= 42786 && c <= 42888))) + : (c <= 42954 || (c < 42965 ? (c < 42963 ? (c >= 42960 && c <= 42961) : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 + : (c <= 42969 || (c >= 42994 && c <= 43009))))))) + : (c <= 43013 || (c < 43360 + ? (c < 43250 + ? (c < 43072 ? (c < 43020 ? (c >= 43015 && c <= 43018) : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43274 ? (c < 43261 ? c == 43259 : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 + : (c <= 43301 || (c >= 43312 && c <= 43334))))) + : (c <= 43388 || (c < 43514 + ? (c < 43488 ? (c < 43471 ? (c >= 43396 && c <= 43442) : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 + : (c <= 43492 || (c >= 43494 && c <= 43503))) + : (c <= 43518 || (c < 43588 ? (c < 43584 ? (c >= 43520 && c <= 43560) : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 + : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43642 || (c < 71168 + ? (c < 67392 + ? (c < 65147 + ? (c < 63744 + ? (c < 43785 + ? (c < 43714 + ? (c < 43701 + ? (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697) + : (c <= 43702 || (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712))) + : (c <= 43714 || (c < 43762 ? (c < 43744 ? (c >= 43739 && c <= 43741) : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43868 + ? (c < 43816 ? (c < 43808 ? (c >= 43793 && c <= 43798) : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 + : (c <= 43822 || (c >= 43824 && c <= 43866))) + : (c <= 43881 || (c < 55216 ? (c < 44032 ? (c >= 43888 && c <= 44002) : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 + : (c <= 55238 || (c >= 55243 && c <= 55291))))))) + : (c <= 64109 || (c < 64326 + ? (c < 64298 + ? (c < 64275 ? (c < 64256 ? (c >= 64112 && c <= 64217) : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))))) + : (c <= 65147 || (c < 66304 + ? (c < 65536 + ? (c < 65440 + ? (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 + : (c <= 65338 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65437))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c >= 65498 && c <= 65500))))) + : (c <= 65547 || (c < 65616 + ? (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))))) + : (c <= 66335 || (c < 66864 + ? (c < 66513 + ? (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))) + : (c <= 66517 || (c < 66776 + ? (c < 66736 + ? (c >= 66560 && c <= 66717) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))) + : (c <= 66915 || (c < 66967 + ? (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 67003 + ? (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001) + : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) + : (c <= 67413 || (c < 69600 + ? (c < 68117 + ? (c < 67680 + ? (c < 67592 + ? (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589))) + : (c <= 67592 || (c < 67644 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640) + : (c <= 67644 || (c >= 67647 && c <= 67669))))) + : (c <= 67702 || (c < 67872 + ? (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c >= 67840 && c <= 67861))) + : (c <= 67897 || (c < 68096 + ? (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031) + : (c <= 68096 || (c >= 68112 && c <= 68115))))))) + : (c <= 68119 || (c < 68736 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? (c >= 68121 && c <= 68149) + : c <= 68220) + : (c <= 68252 || (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 + : c <= 68324))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c >= 68608 && c <= 68680))))) + : (c <= 68786 || (c < 69376 + ? (c < 69248 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68899) + : (c <= 69289 || (c >= 69296 && c <= 69297))) + : (c <= 69404 || (c < 69488 + ? (c < 69424 ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 + : c <= 69445) + : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) + : (c <= 69622 || (c < 70287 + ? (c < 70019 + ? (c < 69891 + ? (c < 69749 + ? (c < 69745 + ? (c >= 69635 && c <= 69687) + : c <= 69746) + : (c <= 69749 || (c < 69840 ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 + : c <= 69864))) + : (c <= 69926 || (c < 69968 + ? (c < 69959 + ? c == 69956 + : c <= 69959) + : (c <= 70002 || c == 70006)))) + : (c <= 70066 || (c < 70163 + ? (c < 70108 + ? (c < 70106 + ? (c >= 70081 && c <= 70084) + : c <= 70106) + : (c <= 70108 || (c >= 70144 && c <= 70161))) + : (c <= 70187 || (c < 70280 + ? (c < 70272 + ? (c >= 70207 && c <= 70208) + : c <= 70278) + : (c <= 70280 || (c >= 70282 && c <= 70285))))))) + : (c <= 70301 || (c < 70480 + ? (c < 70419 + ? (c < 70405 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70366) + : (c <= 70412 || (c >= 70415 && c <= 70416))) + : (c <= 70440 || (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70784 + ? (c < 70727 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 71040 + ? (c < 70855 + ? (c >= 70852 && c <= 70853) + : c <= 70855) + : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) + : (c <= 71215 || (c < 119973 + ? (c < 73648 + ? (c < 72250 + ? (c < 71957 + ? (c < 71680 + ? (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c < 71488 + ? (c >= 71424 && c <= 71450) + : c <= 71494))) + : (c <= 71723 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71903) + : c <= 71942) + : (c <= 71945 || (c >= 71948 && c <= 71955))))) + : (c <= 71958 || (c < 72106 + ? (c < 72001 + ? (c < 71999 + ? (c >= 71960 && c <= 71983) + : c <= 71999) + : (c <= 72001 || (c >= 72096 && c <= 72103))) + : (c <= 72144 || (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))))))) + : (c <= 72250 || (c < 72971 + ? (c < 72714 + ? (c < 72349 + ? (c < 72284 + ? c == 72272 + : c <= 72329) + : (c <= 72349 || (c < 72704 ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 + : c <= 72712))) + : (c <= 72750 || (c < 72960 + ? (c < 72818 + ? c == 72768 + : c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))) + : (c <= 73008 || (c < 73112 + ? (c < 73063 + ? (c < 73056 + ? c == 73030 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73476 + ? (c < 73474 ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 + : c <= 73474) + : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) + : (c <= 73648 || (c < 94179 + ? (c < 92880 + ? (c < 78913 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78918 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c >= 92784 && c <= 92862))))) + : (c <= 92909 || (c < 93760 + ? (c < 93027 + ? (c < 92992 + ? (c >= 92928 && c <= 92975) + : c <= 92995) + : (c <= 93047 || (c >= 93053 && c <= 93071))) + : (c <= 93823 || (c < 94099 + ? (c < 94032 + ? (c >= 93952 && c <= 94026) + : c <= 94032) + : (c <= 94111 || (c >= 94176 && c <= 94177))))))) + : (c <= 94179 || (c < 110948 + ? (c < 110589 + ? (c < 101632 + ? (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589) + : (c <= 101640 || (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); } -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 910 +static inline bool sym_identifier_character_set_3(int32_t c) { + return (c < 43785 + ? (c < 3804 + ? (c < 2759 + ? (c < 2048 + ? (c < 1155 ? (c < 736 - ? (c < 186 + ? (c < 183 ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') + ? (c < 'A' + ? (c >= '0' && c <= '9') + : (c <= 'Z' || c == '_')) : (c <= 'z' || (c < 181 ? c == 170 : c <= 181))) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 891 - ? (c < 880 + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 ? (c < 750 ? c == 748 : c <= 750) - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 904 - ? (c < 902 - ? c == 895 - : c <= 902) - : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1649 - ? (c < 1376 - ? (c < 1162 - ? (c < 1015 + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))) - : (c <= 1416 || (c < 1568 - ? (c < 1519 + : c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 ? (c < 2144 - ? (c >= 2112 && c <= 2136) + ? (c >= 2112 && c <= 2139) : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3200 + ? (c < 2969 + ? (c < 2876 + ? (c < 2821 + ? (c < 2790 + ? (c < 2768 + ? (c >= 2763 && c <= 2765) + : (c <= 2768 || (c >= 2784 && c <= 2787))) + : (c <= 2799 || (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c < 2869 ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 + : c <= 2873))))) + : (c <= 2884 || (c < 2918 + ? (c < 2901 + ? (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893) + : (c <= 2903 || (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915))) + : (c <= 2927 || (c < 2949 + ? (c < 2946 ? c == 2929 : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))))))) + : (c <= 2970 || (c < 3072 + ? (c < 3006 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3010 || (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))))) + : (c <= 3084 || (c < 3146 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144))) + : (c <= 3149 || (c < 3165 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3165 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))))))))) + : (c <= 3203 || (c < 3461 + ? (c < 3302 + ? (c < 3260 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3268 || (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299))))) + : (c <= 3311 || (c < 3402 + ? (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3315) + : c <= 3340) + : (c <= 3344 || (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400))) + : (c <= 3406 || (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))))))) + : (c <= 3478 || (c < 3648 + ? (c < 3535 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))) + : (c <= 3540 || (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))))) + : (c <= 3662 || (c < 3749 + ? (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))) + : (c <= 3749 || (c < 3782 + ? (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780) + : (c <= 3782 || (c < 3792 + ? (c >= 3784 && c <= 3790) + : c <= 3801))))))))))))) + : (c <= 3807 || (c < 8064 + ? (c < 5998 + ? (c < 4746 + ? (c < 4096 + ? (c < 3902 + ? (c < 3893 + ? (c < 3864 + ? c == 3840 + : (c <= 3865 || (c >= 3872 && c <= 3881))) + : (c <= 3893 || (c < 3897 + ? c == 3895 + : c <= 3897))) + : (c <= 3911 || (c < 3974 + ? (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972) + : (c <= 3991 || (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038))))) + : (c <= 4169 || (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293) + : (c <= 4295 || (c < 4304 ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4808 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || (c < 4802 + ? c == 4800 + : c <= 4805))) + : (c <= 4822 || (c < 4888 ? (c < 4882 ? (c >= 4824 && c <= 4880) : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 + : (c <= 4954 || (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977))))) + : (c <= 5007 || (c < 5792 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786))) + : (c <= 5866 || (c < 5919 ? (c < 5888 ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 + : c <= 5909) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))))))) + : (c <= 6000 || (c < 6823 + ? (c < 6432 + ? (c < 6155 + ? (c < 6103 ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))))) + : (c <= 6443 || (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))))) + : (c <= 6823 || (c < 7357 + ? (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6862) + : (c <= 6988 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354))))) + : (c <= 7359 || (c < 8008 + ? (c < 7424 + ? (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 ? (c < 8025 ? (c >= 8016 && c <= 8023) : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))))))) + : (c <= 8116 || (c < 12321 + ? (c < 8488 + ? (c < 8319 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 + : c <= 8155))) + : (c <= 8172 || (c < 8255 + ? (c < 8182 ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 + : c <= 8188) + : (c <= 8256 || (c < 8305 + ? c == 8276 + : c <= 8305))))) + : (c <= 8319 || (c < 8455 + ? (c < 8417 + ? (c < 8400 + ? (c >= 8336 && c <= 8348) + : c <= 8412) + : (c <= 8417 || (c < 8450 + ? (c >= 8421 && c <= 8432) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || (c < 8486 + ? c == 8484 + : c <= 8486))))))) + : (c <= 8488 || (c < 11631 + ? (c < 11264 + ? (c < 8517 ? (c < 8508 ? (c >= 8490 && c <= 8505) : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 + : (c <= 8521 || (c < 8544 + ? c == 8526 + : c <= 8584))) + : (c <= 11492 || (c < 11559 + ? (c < 11520 + ? (c >= 11499 && c <= 11507) + : c <= 11557) + : (c <= 11559 || (c < 11568 ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 + : c <= 11623))))) + : (c <= 11631 || (c < 11712 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11647 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710))) + : (c <= 11718 || (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c < 12293 + ? (c >= 11744 && c <= 11775) + : c <= 12295))))))))) + : (c <= 12335 || (c < 42963 + ? (c < 13312 + ? (c < 12449 + ? (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447))) + : (c <= 12538 || (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799))))) + : (c <= 19903 || (c < 42612 + ? (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607))) + : (c <= 42621 || (c < 42786 + ? (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783) + : (c <= 42888 || (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961))))))) + : (c <= 42963 || (c < 43392 + ? (c < 43216 + ? (c < 43052 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43047) + : (c <= 43052 || (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205))) + : (c <= 43225 || (c < 43261 + ? (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259) + : (c <= 43309 || (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388))))) + : (c <= 43456 || (c < 43616 + ? (c < 43520 + ? (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518) + : (c <= 43574 || (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609))) + : (c <= 43638 || (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))))))))))))))) + : (c <= 43790 || (c < 71960 + ? (c < 67840 + ? (c < 65549 + ? (c < 64848 + ? (c < 64112 + ? (c < 44012 + ? (c < 43824 ? (c < 43808 ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))) + : (c <= 44013 || (c < 55216 ? (c < 44032 - ? (c >= 43888 && c <= 44002) + ? (c >= 44016 && c <= 44025) : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))))) + : (c <= 64217 || (c < 64318 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))))))) + : (c <= 64911 || (c < 65149 + ? (c < 65101 + ? (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))) + : (c <= 65103 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))))) + : (c <= 65149 || (c < 65382 + ? (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))))))))) + : (c <= 65574 || (c < 66928 + ? (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c < 66864 ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) + : c <= 66915))))))) + : (c <= 66938 || (c < 67463 + ? (c < 66995 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))) + : (c <= 67001 || (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))))) + : (c <= 67504 || (c < 67644 + ? (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))) : (c <= 67644 || (c < 67712 ? (c < 67680 ? (c >= 67647 && c <= 67669) : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))))))))))) + : (c <= 67861 || (c < 70163 + ? (c < 69291 + ? (c < 68288 + ? (c < 68117 + ? (c < 68096 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68099 || (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115))) + : (c <= 68119 || (c < 68159 + ? (c < 68152 + ? (c >= 68121 && c <= 68149) + : c <= 68154) + : (c <= 68159 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))))) + : (c <= 68295 || (c < 68608 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68326) + : c <= 68405) + : (c <= 68437 || (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497))) + : (c <= 68680 || (c < 68864 + ? (c < 68800 + ? (c >= 68736 && c <= 68786) + : c <= 68850) + : (c <= 68903 || (c < 69248 + ? (c >= 68912 && c <= 68921) + : c <= 69289))))))) + : (c <= 69292 || (c < 69840 + ? (c < 69552 + ? (c < 69415 + ? (c < 69373 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69456) + : c <= 69509))) + : (c <= 69572 || (c < 69734 + ? (c < 69632 + ? (c >= 69600 && c <= 69622) + : c <= 69702) + : (c <= 69749 || (c < 69826 + ? (c >= 69759 && c <= 69818) + : c <= 69826))))) + : (c <= 69864 || (c < 70006 + ? (c < 69942 + ? (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940) + : (c <= 69951 || (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003))) + : (c <= 70006 || (c < 70094 + ? (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092) + : (c <= 70106 || (c < 70144 ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 + : c <= 70161))))))))) + : (c <= 70199 || (c < 70656 + ? (c < 70419 + ? (c < 70303 + ? (c < 70280 + ? (c < 70272 + ? (c >= 70206 && c <= 70209) + : c <= 70278) + : (c <= 70280 || (c < 70287 ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 + : c <= 70301))) + : (c <= 70312 || (c < 70400 + ? (c < 70384 + ? (c >= 70320 && c <= 70378) + : c <= 70393) + : (c <= 70403 || (c < 70415 + ? (c >= 70405 && c <= 70412) + : c <= 70416))))) + : (c <= 70440 || (c < 70475 + ? (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || (c < 70471 + ? (c >= 70459 && c <= 70468) + : c <= 70472))) + : (c <= 70477 || (c < 70493 + ? (c < 70487 + ? c == 70480 + : c <= 70487) + : (c <= 70499 || (c < 70512 + ? (c >= 70502 && c <= 70508) + : c <= 70516))))))) + : (c <= 70730 || (c < 71296 + ? (c < 71040 + ? (c < 70784 + ? (c < 70750 + ? (c >= 70736 && c <= 70745) + : c <= 70753) + : (c <= 70853 || (c < 70864 ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2748 - ? (c < 2045 - ? (c < 1015 - ? (c < 710 - ? (c < 181 - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 170 - ? (c >= 'a' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 192 - ? (c < 186 - ? c == 183 - : c <= 186) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 891 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c < 886 - ? (c >= 768 && c <= 884) - : c <= 887))) - : (c <= 893 || (c < 908 - ? (c < 902 - ? c == 895 - : c <= 906) - : (c <= 908 || (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013))))))) - : (c <= 1153 || (c < 1519 - ? (c < 1425 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1155 && c <= 1159) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))) - : (c <= 1469 || (c < 1476 - ? (c < 1473 - ? c == 1471 - : c <= 1474) - : (c <= 1477 || (c < 1488 - ? c == 1479 - : c <= 1514))))) - : (c <= 1522 || (c < 1770 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1552 && c <= 1562) - : c <= 1641) - : (c <= 1747 || (c < 1759 - ? (c >= 1749 && c <= 1756) - : c <= 1768))) - : (c <= 1788 || (c < 1869 - ? (c < 1808 - ? c == 1791 - : c <= 1866) - : (c <= 1969 || (c < 2042 - ? (c >= 1984 && c <= 2037) - : c <= 2042))))))))) - : (c <= 2045 || (c < 2558 - ? (c < 2451 - ? (c < 2200 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c < 2556 - ? (c >= 2534 && c <= 2545) - : c <= 2556))))))) - : (c <= 2558 || (c < 2635 - ? (c < 2610 - ? (c < 2575 - ? (c < 2565 - ? (c >= 2561 && c <= 2563) - : c <= 2570) - : (c <= 2576 || (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608))) - : (c <= 2611 || (c < 2620 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2620 || (c < 2631 - ? (c >= 2622 && c <= 2626) - : c <= 2632))))) - : (c <= 2637 || (c < 2693 - ? (c < 2654 - ? (c < 2649 - ? c == 2641 - : c <= 2652) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745))))))))))) - : (c <= 2757 || (c < 3168 - ? (c < 2958 - ? (c < 2866 - ? (c < 2809 - ? (c < 2768 - ? (c < 2763 - ? (c >= 2759 && c <= 2761) - : c <= 2765) - : (c <= 2768 || (c < 2790 - ? (c >= 2784 && c <= 2787) - : c <= 2799))) - : (c <= 2815 || (c < 2831 - ? (c < 2821 - ? (c >= 2817 && c <= 2819) - : c <= 2828) - : (c <= 2832 || (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864))))) - : (c <= 2867 || (c < 2908 - ? (c < 2887 - ? (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884) - : (c <= 2888 || (c < 2901 - ? (c >= 2891 && c <= 2893) - : c <= 2903))) - : (c <= 2909 || (c < 2929 - ? (c < 2918 - ? (c >= 2911 && c <= 2915) - : c <= 2927) - : (c <= 2929 || (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954))))))) - : (c <= 2960 || (c < 3031 - ? (c < 2984 - ? (c < 2972 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))) - : (c <= 2986 || (c < 3014 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010) - : (c <= 3016 || (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024))))) - : (c <= 3031 || (c < 3132 - ? (c < 3086 - ? (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084) - : (c <= 3088 || (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129))) - : (c <= 3140 || (c < 3157 - ? (c < 3146 - ? (c >= 3142 && c <= 3144) - : c <= 3149) - : (c <= 3158 || (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165))))))))) - : (c <= 3171 || (c < 3450 - ? (c < 3293 - ? (c < 3242 - ? (c < 3205 - ? (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203) - : (c <= 3212 || (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240))) - : (c <= 3251 || (c < 3270 - ? (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268) - : (c <= 3272 || (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286))))) - : (c <= 3294 || (c < 3346 - ? (c < 3313 - ? (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311) - : (c <= 3314 || (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344))) - : (c <= 3396 || (c < 3412 - ? (c < 3402 - ? (c >= 3398 && c <= 3400) - : c <= 3406) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))) - : (c <= 3455 || (c < 3570 - ? (c < 3520 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : c <= 3478) - : (c <= 3505 || (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517))) - : (c <= 3526 || (c < 3542 - ? (c < 3535 - ? c == 3530 - : c <= 3540) - : (c <= 3542 || (c < 3558 - ? (c >= 3544 && c <= 3551) - : c <= 3567))))) - : (c <= 3571 || (c < 3718 - ? (c < 3664 - ? (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662) - : (c <= 3673 || (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716))) - : (c <= 3722 || (c < 3751 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749) - : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) - : (c <= 3782 || (c < 8025 - ? (c < 5888 - ? (c < 4688 - ? (c < 3953 - ? (c < 3872 - ? (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))) - : (c <= 3881 || (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))))) - : (c <= 3972 || (c < 4256 - ? (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c < 4176 - ? (c >= 4096 && c <= 4169) - : c <= 4253))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4882 - ? (c < 4786 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5112 - ? (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))))))))) - : (c <= 5909 || (c < 6688 - ? (c < 6176 - ? (c < 6016 - ? (c < 5984 - ? (c < 5952 - ? (c >= 5919 && c <= 5940) - : c <= 5971) - : (c <= 5996 || (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003))) - : (c <= 6099 || (c < 6112 - ? (c < 6108 - ? c == 6103 - : c <= 6109) - : (c <= 6121 || (c < 6159 - ? (c >= 6155 && c <= 6157) - : c <= 6169))))) - : (c <= 6264 || (c < 6470 - ? (c < 6400 - ? (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389) - : (c <= 6430 || (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 - ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))))) - : (c <= 7241 || (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7968 - ? (c < 7960 - ? (c >= 7424 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))))))))) - : (c <= 8025 || (c < 11720 - ? (c < 8458 - ? (c < 8178 - ? (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))) - : (c <= 8180 || (c < 8336 - ? (c < 8276 - ? (c < 8255 - ? (c >= 8182 && c <= 8188) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492))))) - : (c <= 11507 || (c < 11647 - ? (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12335))) - : (c <= 12341 || (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))) - : (c <= 12543 || (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))))) - : (c <= 42737 || (c < 43232 - ? (c < 42965 - ? (c < 42891 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : c <= 42888) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43072 - ? (c < 43052 - ? (c >= 42994 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))) - : (c <= 43255 || (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))) - : (c <= 43481 || (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) - : (c <= 43638 || (c < 71453 - ? (c < 67639 - ? (c < 65345 - ? (c < 64312 - ? (c < 43888 - ? (c < 43785 - ? (c < 43744 - ? (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65017 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))))) - : (c <= 65076 || (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65296 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66513 - ? (c < 65664 - ? (c < 65536 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66304 - ? (c < 66176 - ? (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045) - : (c <= 66204 || (c < 66272 - ? (c >= 66208 && c <= 66256) - : c <= 66272))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66426) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))))))) - : (c <= 66517 || (c < 66979 - ? (c < 66864 - ? (c < 66736 - ? (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))) - : (c <= 66915 || (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))))) - : (c <= 66993 || (c < 67456 - ? (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))) - : (c <= 67461 || (c < 67584 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : c <= 67514) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))))))))))) - : (c <= 67640 || (c < 69956 - ? (c < 68448 - ? (c < 68101 - ? (c < 67828 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826))) - : (c <= 67829 || (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68099))))) - : (c <= 68102 || (c < 68192 - ? (c < 68121 - ? (c < 68117 - ? (c >= 68108 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c < 68159 - ? (c >= 68152 && c <= 68154) - : c <= 68159))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))))) - : (c <= 68466 || (c < 69424 - ? (c < 68912 - ? (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68903))) - : (c <= 68921 || (c < 69296 - ? (c < 69291 - ? (c >= 69248 && c <= 69289) - : c <= 69292) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))) - : (c <= 69456 || (c < 69759 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : c <= 69572) - : (c <= 69622 || (c < 69734 - ? (c >= 69632 && c <= 69702) - : c <= 69749))) - : (c <= 69818 || (c < 69872 - ? (c < 69840 - ? c == 69826 - : c <= 69864) - : (c <= 69881 || (c < 69942 - ? (c >= 69888 && c <= 69940) - : c <= 69951))))))))) - : (c <= 69959 || (c < 70459 - ? (c < 70282 - ? (c < 70108 - ? (c < 70016 - ? (c < 70006 - ? (c >= 69968 && c <= 70003) - : c <= 70006) - : (c <= 70084 || (c < 70094 - ? (c >= 70089 && c <= 70092) - : c <= 70106))) - : (c <= 70108 || (c < 70206 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199) - : (c <= 70206 || (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280))))) - : (c <= 70285 || (c < 70405 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))) - : (c <= 70412 || (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))))))) - : (c <= 70468 || (c < 70855 - ? (c < 70502 - ? (c < 70480 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : c <= 70477) - : (c <= 70480 || (c < 70493 - ? c == 70487 - : c <= 70499))) - : (c <= 70508 || (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))))) - : (c <= 70855 || (c < 71236 - ? (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352) - : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 + : c <= 70873))) + : (c <= 71093 || (c < 71168 + ? (c < 71128 + ? (c >= 71096 && c <= 71104) + : c <= 71133) + : (c <= 71232 || (c < 71248 + ? c == 71236 + : c <= 71257))))) + : (c <= 71352 || (c < 71680 + ? (c < 71453 + ? (c < 71424 + ? (c >= 71360 && c <= 71369) + : c <= 71450) + : (c <= 71467 || (c < 71488 ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 + : c <= 71494))) + : (c <= 71738 || (c < 71945 + ? (c < 71935 ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 + : c <= 71942) + : (c <= 71945 || (c < 71957 ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 + : c <= 71958))))))))))))) + : (c <= 71989 || (c < 119995 + ? (c < 92784 + ? (c < 73023 + ? (c < 72704 + ? (c < 72163 + ? (c < 72096 + ? (c < 71995 ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 + : (c <= 72003 || (c >= 72016 && c <= 72025))) + : (c <= 72103 || (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161))) + : (c <= 72164 || (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72368 + ? c == 72349 + : c <= 72440))))) + : (c <= 72712 || (c < 72873 + ? (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))) + : (c <= 72886 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))))))) + : (c <= 73031 || (c < 73552 + ? (c < 73107 + ? (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105))) + : (c <= 73112 || (c < 73472 + ? (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462) + : (c <= 73488 || (c < 73534 + ? (c >= 73490 && c <= 73530) + : c <= 73538))))) + : (c <= 73561 || (c < 77824 + ? (c < 74752 ? (c < 73728 ? c == 73648 : c <= 74649) : (c <= 74862 || (c < 77712 ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78912 && c <= 78933) + : c <= 83526) + : (c <= 92728 || (c < 92768 + ? (c >= 92736 && c <= 92766) + : c <= 92777))))))))) + : (c <= 92862 || (c < 110928 + ? (c < 94095 + ? (c < 93008 + ? (c < 92912 + ? (c < 92880 + ? (c >= 92864 && c <= 92873) + : c <= 92909) + : (c <= 92916 || (c < 92992 + ? (c >= 92928 && c <= 92982) + : c <= 92995))) + : (c <= 93017 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c < 94031 + ? (c >= 93952 && c <= 94026) + : c <= 94087))))) + : (c <= 94111 || (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110589 + ? (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587) + : (c <= 110590 || (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898))))))) + : (c <= 110930 || (c < 119149 + ? (c < 113792 + ? (c < 110960 + ? (c < 110948 + ? c == 110933 + : c <= 110951) + : (c <= 111355 || (c < 113776 ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 + : c <= 113788))) + : (c <= 113800 || (c < 118528 + ? (c < 113821 ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 + : c <= 113822) + : (c <= 118573 || (c < 119141 ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 + : c <= 119145))))) + : (c <= 119154 || (c < 119894 + ? (c < 119210 + ? (c < 119173 ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 + : c <= 119179) + : (c <= 119213 || (c < 119808 ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 + : c <= 119892))) + : (c <= 119964 || (c < 119973 + ? (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))))))))))) + : (c <= 119995 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 + : (c <= 120069 || (c >= 120071 && c <= 120074))) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 + : c <= 122904) + : (c <= 122913 || (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) : (c <= 124902 || (c < 124909 ? (c >= 124904 && c <= 124907) : c <= 124910))))))))) @@ -7442,13 +7784,15 @@ static inline bool sym_identifier_character_set_3(int32_t c) { ? (c >= 126635 && c <= 126651) : c <= 130041) : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) + ? (c >= 173824 && c <= 177977) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 ? (c >= 183984 && c <= 191456) : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); } static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -7456,373 +7800,548 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(63); - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(163); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '(') ADVANCE(67); - if (lookahead == ')') ADVANCE(68); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(87); - if (lookahead == ',') ADVANCE(69); - if (lookahead == '-') ADVANCE(90); - if (lookahead == '.') ADVANCE(66); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '0') ADVANCE(136); - if (lookahead == ':') ADVANCE(75); - if (lookahead == ';') ADVANCE(64); - if (lookahead == '<') ADVANCE(100); - if (lookahead == '=') ADVANCE(85); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') SKIP(52) - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(97); - if (lookahead == 'e') ADVANCE(159); - if (lookahead == '{') ADVANCE(125); - if (lookahead == '|') ADVANCE(95); - if (lookahead == '}') ADVANCE(124); - if (lookahead == '~') ADVANCE(99); + if (eof) ADVANCE(60); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || - lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(59) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(135); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(162); + lookahead == 65279) SKIP(56) + if (lookahead == '\r') SKIP(56) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(65); + if (lookahead == '*') ADVANCE(68); + if (lookahead == '+') ADVANCE(89); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(92); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(145); + if (lookahead == ':') ADVANCE(75); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(108); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(116); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(138); + if (lookahead == ']') ADVANCE(85); + if (lookahead == '^') ADVANCE(104); + if (lookahead == 'e') ADVANCE(168); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(135); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(171); END_STATE(); case 1: - if (lookahead == '\n') SKIP(16) + if (lookahead == '\n') ADVANCE(173); END_STATE(); case 2: - if (lookahead == '\n') SKIP(16) - if (lookahead == '\r') SKIP(1) + if (lookahead == '\n') ADVANCE(137); END_STATE(); case 3: - if (lookahead == '\n') SKIP(14) + if (lookahead == '\n') SKIP(3) + if (lookahead == '\r') ADVANCE(140); + if (lookahead == '#') ADVANCE(141); + if (lookahead == '\\') ADVANCE(139); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '}') ADVANCE(135); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(140); + if (lookahead != 0) ADVANCE(141); END_STATE(); case 4: - if (lookahead == '\n') SKIP(14) - if (lookahead == '\r') SKIP(3) + if (lookahead == '.') ADVANCE(5); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(151); END_STATE(); case 5: - if (lookahead == '\n') SKIP(19) + if (lookahead == '.') ADVANCE(132); END_STATE(); case 6: - if (lookahead == '\n') SKIP(19) - if (lookahead == '\r') SKIP(5) + if (lookahead == '/') ADVANCE(16); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(128); + if (lookahead == '<') ADVANCE(17); END_STATE(); case 8: - if (lookahead == '\n') SKIP(9) - if (lookahead == '#') ADVANCE(132); - if (lookahead == '\\') ADVANCE(130); - if (lookahead == '{') ADVANCE(125); - if (lookahead == '}') ADVANCE(124); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(131); - if (lookahead != 0) ADVANCE(132); + if (lookahead == '=') ADVANCE(113); END_STATE(); case 9: - if (lookahead == '\n') SKIP(9) - if (lookahead == '#') ADVANCE(132); - if (lookahead == '\\') ADVANCE(130); - if (lookahead == '}') ADVANCE(124); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(131); - if (lookahead != 0 && - lookahead != '{') ADVANCE(132); + if (lookahead == '=') ADVANCE(113); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(142); END_STATE(); case 10: - if (lookahead == '\n') SKIP(17) + if (lookahead == '=') ADVANCE(125); END_STATE(); case 11: - if (lookahead == '\n') SKIP(17) - if (lookahead == '\r') SKIP(10) + if (lookahead == '=') ADVANCE(129); END_STATE(); case 12: - if (lookahead == '\n') SKIP(15) + if (lookahead == '=') ADVANCE(123); END_STATE(); case 13: - if (lookahead == '\n') SKIP(15) - if (lookahead == '\r') SKIP(12) + if (lookahead == '=') ADVANCE(130); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(163); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '(') ADVANCE(67); - if (lookahead == ')') ADVANCE(68); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(87); - if (lookahead == ',') ADVANCE(69); - if (lookahead == '-') ADVANCE(89); - if (lookahead == '.') ADVANCE(65); - if (lookahead == '/') ADVANCE(91); - if (lookahead == ':') ADVANCE(75); - if (lookahead == ';') ADVANCE(64); - if (lookahead == '<') ADVANCE(100); - if (lookahead == '=') ADVANCE(85); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') SKIP(4) - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(97); - if (lookahead == '|') ADVANCE(95); - if (lookahead == '}') ADVANCE(124); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(14) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(162); + if (lookahead == '=') ADVANCE(131); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(163); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '(') ADVANCE(67); - if (lookahead == ')') ADVANCE(68); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(87); - if (lookahead == ',') ADVANCE(69); - if (lookahead == '-') ADVANCE(89); - if (lookahead == '.') ADVANCE(65); - if (lookahead == '/') ADVANCE(91); - if (lookahead == ':') ADVANCE(74); - if (lookahead == ';') ADVANCE(64); - if (lookahead == '<') ADVANCE(100); - if (lookahead == '=') ADVANCE(85); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') SKIP(13) - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(97); - if (lookahead == '|') ADVANCE(95); - if (lookahead == '}') ADVANCE(124); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(15) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(162); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(163); - if (lookahead == '%') ADVANCE(23); - if (lookahead == '&') ADVANCE(24); - if (lookahead == '(') ADVANCE(67); - if (lookahead == ')') ADVANCE(68); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(87); - if (lookahead == ',') ADVANCE(69); - if (lookahead == '-') ADVANCE(89); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(136); - if (lookahead == ':') ADVANCE(74); - if (lookahead == '<') ADVANCE(101); - if (lookahead == '=') ADVANCE(85); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '@') ADVANCE(25); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') SKIP(2) - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(26); - if (lookahead == '{') ADVANCE(123); - if (lookahead == '|') ADVANCE(27); - if (lookahead == '}') ADVANCE(124); - if (lookahead == '~') ADVANCE(99); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(16) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(135); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(162); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 17: - if (lookahead == '#') ADVANCE(163); - if (lookahead == '-') ADVANCE(31); - if (lookahead == ':') ADVANCE(74); - if (lookahead == '\\') SKIP(11) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(17) + if (lookahead == '=') ADVANCE(128); END_STATE(); case 18: - if (lookahead == '#') ADVANCE(163); - if (lookahead == '\\') ADVANCE(129); - if (lookahead == '{') ADVANCE(126); - if (lookahead == '}') ADVANCE(35); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(19) + if (lookahead == '=') ADVANCE(127); END_STATE(); case 19: - if (lookahead == '#') ADVANCE(163); - if (lookahead == '\\') SKIP(6) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(19) + if (lookahead == '>') ADVANCE(79); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (lookahead == '>') ADVANCE(18); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(122); + if (lookahead == '_') ADVANCE(29); + if (lookahead == '0' || + lookahead == '1') ADVANCE(147); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(104); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(133); + if (lookahead == '_') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(148); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(115); + if (lookahead == '_') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); END_STATE(); case 24: - if (lookahead == '=') ADVANCE(119); + if (lookahead == '{') ADVANCE(55); END_STATE(); case 25: - if (lookahead == '=') ADVANCE(113); + if (lookahead == '}') ADVANCE(137); + if (lookahead != 0) ADVANCE(25); END_STATE(); case 26: - if (lookahead == '=') ADVANCE(120); + if (lookahead == '}') ADVANCE(136); END_STATE(); case 27: - if (lookahead == '=') ADVANCE(121); + if (lookahead == 0 || + lookahead == '\n') ADVANCE(173); + if (lookahead == '\r') ADVANCE(1); END_STATE(); case 28: - if (lookahead == '=') ADVANCE(114); + if (lookahead == '+' || + lookahead == '-') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(152); END_STATE(); case 29: - if (lookahead == '=') ADVANCE(118); + if (lookahead == '0' || + lookahead == '1') ADVANCE(147); END_STATE(); case 30: - if (lookahead == '=') ADVANCE(117); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(30) + if (lookahead == '\r') SKIP(30) + if (lookahead == '!') ADVANCE(8); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '*') ADVANCE(68); + if (lookahead == '+') ADVANCE(89); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(145); + if (lookahead == ':') ADVANCE(75); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(108); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(116); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '^') ADVANCE(104); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); case 31: - if (lookahead == '>') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(31) + if (lookahead == '\r') SKIP(31) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(65); + if (lookahead == '*') ADVANCE(69); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(145); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(109); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(117); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == ']') ADVANCE(85); + if (lookahead == '^') ADVANCE(103); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(135); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(171); END_STATE(); case 32: - if (lookahead == '_') ADVANCE(37); - if (lookahead == '0' || - lookahead == '1') ADVANCE(138); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(32) + if (lookahead == '\r') SKIP(32) + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(10); + if (lookahead == '&') ADVANCE(11); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '*') ADVANCE(70); + if (lookahead == '+') ADVANCE(89); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(4); + if (lookahead == '/') ADVANCE(6); + if (lookahead == '0') ADVANCE(145); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(7); + if (lookahead == '=') ADVANCE(86); + if (lookahead == '>') ADVANCE(20); + if (lookahead == '@') ADVANCE(12); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '^') ADVANCE(13); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(14); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); case 33: - if (lookahead == '_') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(139); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(33) + if (lookahead == '\r') SKIP(33) + if (lookahead == '!') ADVANCE(8); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(65); + if (lookahead == '*') ADVANCE(68); + if (lookahead == '+') ADVANCE(89); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(62); + if (lookahead == '/') ADVANCE(93); + if (lookahead == ':') ADVANCE(75); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(108); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(116); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '^') ADVANCE(104); + if (lookahead == '|') ADVANCE(100); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); case 34: - if (lookahead == '_') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(34) + if (lookahead == '\r') SKIP(34) + if (lookahead == '!') ADVANCE(8); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '*') ADVANCE(68); + if (lookahead == '+') ADVANCE(89); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(62); + if (lookahead == '/') ADVANCE(93); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(108); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(116); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '^') ADVANCE(104); + if (lookahead == '|') ADVANCE(100); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); case 35: - if (lookahead == '}') ADVANCE(127); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(35) + if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(65); + if (lookahead == '*') ADVANCE(69); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(62); + if (lookahead == '/') ADVANCE(94); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(109); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(117); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == ']') ADVANCE(85); + if (lookahead == '^') ADVANCE(103); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(135); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(171); END_STATE(); case 36: - if (lookahead == '+' || - lookahead == '-') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(37) + if (lookahead == '\r') SKIP(37) + if (lookahead == '#') ADVANCE(172); + if (lookahead == '\\') ADVANCE(138); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '}') ADVANCE(26); END_STATE(); case 37: - if (lookahead == '0' || - lookahead == '1') ADVANCE(138); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(37) + if (lookahead == '\r') SKIP(37) + if (lookahead == '#') ADVANCE(172); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '{') ADVANCE(133); END_STATE(); case 38: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(139); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(38) + if (lookahead == '\r') SKIP(38) + if (lookahead == '#') ADVANCE(172); + if (lookahead == '-') ADVANCE(19); + if (lookahead == ':') ADVANCE(74); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == 'e') ADVANCE(168); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); case 39: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(39) + if (lookahead == '\r') SKIP(39) + if (lookahead == '!') ADVANCE(8); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '*') ADVANCE(68); + if (lookahead == '+') ADVANCE(89); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(145); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(108); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(116); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '^') ADVANCE(104); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(40) + if (lookahead == '\r') SKIP(40) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(65); + if (lookahead == '*') ADVANCE(69); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(145); + if (lookahead == ':') ADVANCE(75); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(109); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(117); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == ']') ADVANCE(85); + if (lookahead == '^') ADVANCE(103); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(135); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(171); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(41) + if (lookahead == '\r') SKIP(41) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(65); + if (lookahead == '*') ADVANCE(69); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(62); + if (lookahead == '/') ADVANCE(94); + if (lookahead == ':') ADVANCE(75); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(109); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(117); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == ']') ADVANCE(85); + if (lookahead == '^') ADVANCE(103); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(135); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(171); END_STATE(); case 42: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(148); END_STATE(); case 43: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); case 44: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(152); END_STATE(); case 45: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); END_STATE(); case 46: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); END_STATE(); case 47: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); END_STATE(); case 48: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 49: if (('0' <= lookahead && lookahead <= '9') || @@ -7835,208 +8354,203 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); case 51: - if (eof) ADVANCE(63); - if (lookahead == '\n') SKIP(59) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 52: - if (eof) ADVANCE(63); - if (lookahead == '\n') SKIP(59) - if (lookahead == '\r') SKIP(51) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); END_STATE(); case 53: - if (eof) ADVANCE(63); - if (lookahead == '\n') SKIP(60) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); END_STATE(); case 54: - if (eof) ADVANCE(63); - if (lookahead == '\n') SKIP(60) - if (lookahead == '\r') SKIP(53) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); END_STATE(); case 55: - if (eof) ADVANCE(63); - if (lookahead == '\n') SKIP(61) + if (lookahead != 0 && + lookahead != '}') ADVANCE(25); END_STATE(); case 56: - if (eof) ADVANCE(63); - if (lookahead == '\n') SKIP(61) - if (lookahead == '\r') SKIP(55) - END_STATE(); - case 57: - if (eof) ADVANCE(63); - if (lookahead == '\n') SKIP(62) - END_STATE(); - case 58: - if (eof) ADVANCE(63); - if (lookahead == '\n') SKIP(62) - if (lookahead == '\r') SKIP(57) - END_STATE(); - case 59: - if (eof) ADVANCE(63); - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(163); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '(') ADVANCE(67); - if (lookahead == ')') ADVANCE(68); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(87); - if (lookahead == ',') ADVANCE(69); - if (lookahead == '-') ADVANCE(90); - if (lookahead == '.') ADVANCE(66); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '0') ADVANCE(136); - if (lookahead == ':') ADVANCE(75); - if (lookahead == ';') ADVANCE(64); - if (lookahead == '<') ADVANCE(100); - if (lookahead == '=') ADVANCE(85); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') SKIP(52) - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(97); - if (lookahead == 'e') ADVANCE(159); - if (lookahead == '{') ADVANCE(123); - if (lookahead == '|') ADVANCE(95); - if (lookahead == '}') ADVANCE(124); - if (lookahead == '~') ADVANCE(99); + if (eof) ADVANCE(60); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || - lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(59) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(135); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(162); - END_STATE(); - case 60: - if (eof) ADVANCE(63); - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(163); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '(') ADVANCE(67); - if (lookahead == ')') ADVANCE(68); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(87); - if (lookahead == ',') ADVANCE(69); - if (lookahead == '-') ADVANCE(89); - if (lookahead == '.') ADVANCE(66); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '0') ADVANCE(136); + lookahead == 65279) SKIP(56) + if (lookahead == '\r') SKIP(56) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(102); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(65); + if (lookahead == '*') ADVANCE(68); + if (lookahead == '+') ADVANCE(89); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(92); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(145); if (lookahead == ':') ADVANCE(75); - if (lookahead == ';') ADVANCE(64); - if (lookahead == '<') ADVANCE(100); - if (lookahead == '=') ADVANCE(85); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') SKIP(54) - if (lookahead == ']') ADVANCE(84); - if (lookahead == '^') ADVANCE(97); - if (lookahead == '{') ADVANCE(123); - if (lookahead == '|') ADVANCE(95); - if (lookahead == '}') ADVANCE(124); - if (lookahead == '~') ADVANCE(99); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(108); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(116); + if (lookahead == '@') ADVANCE(83); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == ']') ADVANCE(85); + if (lookahead == '^') ADVANCE(104); + if (lookahead == 'e') ADVANCE(168); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(135); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(171); + END_STATE(); + case 57: + if (eof) ADVANCE(60); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || - lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(60) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(135); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(162); + lookahead == 65279) SKIP(57) + if (lookahead == '\r') SKIP(57) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(65); + if (lookahead == '*') ADVANCE(67); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(4); + if (lookahead == '0') ADVANCE(145); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(61); + if (lookahead == '<') ADVANCE(110); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(115); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == ']') ADVANCE(85); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '}') ADVANCE(135); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); - case 61: - if (eof) ADVANCE(63); - if (lookahead == '#') ADVANCE(163); - if (lookahead == '(') ADVANCE(67); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '+') ADVANCE(86); - if (lookahead == '-') ADVANCE(88); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '0') ADVANCE(136); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') SKIP(56) - if (lookahead == 'e') ADVANCE(160); - if (lookahead == '{') ADVANCE(123); - if (lookahead == '~') ADVANCE(99); + case 58: + if (eof) ADVANCE(60); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || - lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(135); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(162); + lookahead == 65279) SKIP(58) + if (lookahead == '\r') SKIP(58) + if (lookahead == '#') ADVANCE(172); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '*') ADVANCE(67); + if (lookahead == '+') ADVANCE(88); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(4); + if (lookahead == '0') ADVANCE(145); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == 'e') ADVANCE(169); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); - case 62: - if (eof) ADVANCE(63); - if (lookahead == '#') ADVANCE(163); - if (lookahead == '(') ADVANCE(67); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '+') ADVANCE(86); - if (lookahead == '-') ADVANCE(88); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '0') ADVANCE(136); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(83); - if (lookahead == '\\') SKIP(58) - if (lookahead == 'e') ADVANCE(161); - if (lookahead == '{') ADVANCE(123); - if (lookahead == '~') ADVANCE(99); + case 59: + if (eof) ADVANCE(60); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || - lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(62) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(135); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(162); + lookahead == 65279) SKIP(59) + if (lookahead == '\r') SKIP(59) + if (lookahead == '#') ADVANCE(172); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '*') ADVANCE(67); + if (lookahead == '+') ADVANCE(88); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(4); + if (lookahead == '0') ADVANCE(145); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == 'e') ADVANCE(170); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); - case 63: + case 60: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 64: + case 61: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 65: + case 62: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 66: + case 63: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (lookahead == '.') ADVANCE(5); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(151); END_STATE(); - case 67: + case 64: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 68: + case 65: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 69: + case 66: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 70: + case 67: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 71: + case 68: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '=') ADVANCE(121); + END_STATE(); + case 69: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '*') ADVANCE(80); - if (lookahead == '=') ADVANCE(111); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '=') ADVANCE(121); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 72: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(117); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 73: ACCEPT_TOKEN(anon_sym_COLON_EQ); @@ -8051,11 +8565,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 76: ACCEPT_TOKEN(anon_sym_except); if (lookahead == '*') ADVANCE(78); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); case 77: ACCEPT_TOKEN(anon_sym_except); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); case 78: ACCEPT_TOKEN(anon_sym_except_STAR); @@ -8065,186 +8579,217 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 80: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(116); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 82: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(113); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(109); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(112); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(110); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 90: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(110); - if (lookahead == '>') ADVANCE(79); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(94); - if (lookahead == '=') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(28); - if (lookahead == '=') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(120); + if (lookahead == '>') ADVANCE(79); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(97); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(120); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(98); - if (lookahead == '=') ADVANCE(102); - if (lookahead == '>') ADVANCE(108); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(131); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(29); - if (lookahead == '=') ADVANCE(102); - if (lookahead == '>') ADVANCE(108); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(129); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(130); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(105); - if (lookahead == '>') ADVANCE(72); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(128); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(105); - if (lookahead == '>') ADVANCE(30); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(118); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(105); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(118); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(118); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_AT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(114); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(114); + if (lookahead == '>') ADVANCE(72); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(114); + if (lookahead == '>') ADVANCE(71); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(sym_ellipsis); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_AT_EQ); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_LBRACE2); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '{') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 127: - ACCEPT_TOKEN(sym__escape_interpolation); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 128: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 129: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 132: + ACCEPT_TOKEN(sym_ellipsis); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '{') ADVANCE(136); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 136: + ACCEPT_TOKEN(sym__escape_interpolation); + END_STATE(); + case 137: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 138: ACCEPT_TOKEN(sym__not_escape_sequence); - if (lookahead == '\n') ADVANCE(128); - if (lookahead == '\r') ADVANCE(7); - if (lookahead == 'U') ADVANCE(50); - if (lookahead == 'u') ADVANCE(46); - if (lookahead == 'x') ADVANCE(44); + if (lookahead == 0) ADVANCE(173); + if (lookahead == '\n') ADVANCE(137); + if (lookahead == '\r') ADVANCE(2); + if (lookahead == 'N') ADVANCE(24); + if (lookahead == 'U') ADVANCE(54); + if (lookahead == 'u') ADVANCE(50); + if (lookahead == 'x') ADVANCE(48); if (lookahead == '"' || lookahead == '\'' || lookahead == '\\' || @@ -8253,240 +8798,244 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'f' || lookahead == 'n' || lookahead == 'r' || - ('t' <= lookahead && lookahead <= 'v')) ADVANCE(128); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(41); + ('t' <= lookahead && lookahead <= 'v')) ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); END_STATE(); - case 130: + case 139: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == '\r') ADVANCE(132); + if (lookahead == 0) ADVANCE(141); + if (lookahead == '\r') ADVANCE(141); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(132); + lookahead != '}') ADVANCE(141); END_STATE(); - case 131: + case 140: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == '#') ADVANCE(132); - if (lookahead == '\\') ADVANCE(130); + if (lookahead == '\r') ADVANCE(140); + if (lookahead == '#') ADVANCE(141); + if (lookahead == '\\') ADVANCE(139); if (lookahead == '\t' || lookahead == '\f' || - lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(131); + lookahead == 65279) ADVANCE(140); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(132); + lookahead != '}') ADVANCE(141); END_STATE(); - case 132: + case 141: ACCEPT_TOKEN(aux_sym_format_specifier_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(132); + lookahead != '}') ADVANCE(141); END_STATE(); - case 133: + case 142: ACCEPT_TOKEN(sym_type_conversion); END_STATE(); - case 134: + case 143: ACCEPT_TOKEN(sym_integer); END_STATE(); - case 135: + case 144: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(144); - if (lookahead == '_') ADVANCE(137); + if (lookahead == '.') ADVANCE(153); + if (lookahead == '_') ADVANCE(146); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(36); + lookahead == 'e') ADVANCE(28); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(135); + lookahead == 'l') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); - case 136: + case 145: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(144); + if (lookahead == '.') ADVANCE(153); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(32); + lookahead == 'b') ADVANCE(21); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(33); + lookahead == 'o') ADVANCE(22); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(34); - if (lookahead == '_') ADVANCE(137); + lookahead == 'x') ADVANCE(23); + if (lookahead == '_') ADVANCE(146); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(36); + lookahead == 'e') ADVANCE(28); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(135); + lookahead == 'l') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); - case 137: + case 146: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(144); + if (lookahead == '.') ADVANCE(153); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(36); + lookahead == 'e') ADVANCE(28); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(135); + lookahead == 'l') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); - case 138: + case 147: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(37); + if (lookahead == '_') ADVANCE(29); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(134); + lookahead == 'l') ADVANCE(143); if (lookahead == '0' || - lookahead == '1') ADVANCE(138); + lookahead == '1') ADVANCE(147); END_STATE(); - case 139: + case 148: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(38); + if (lookahead == '_') ADVANCE(42); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(134); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(139); + lookahead == 'l') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(148); END_STATE(); - case 140: + case 149: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(42); + if (lookahead == '_') ADVANCE(47); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(134); + lookahead == 'l') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); END_STATE(); - case 141: + case 150: ACCEPT_TOKEN(sym_float); END_STATE(); - case 142: + case 151: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(144); + if (lookahead == '_') ADVANCE(153); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(36); + lookahead == 'e') ADVANCE(28); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + lookahead == 'l') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(151); END_STATE(); - case 143: + case 152: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(145); + if (lookahead == '_') ADVANCE(154); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); + lookahead == 'l') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(152); END_STATE(); - case 144: + case 153: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(36); + lookahead == 'e') ADVANCE(28); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + lookahead == 'l') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(151); END_STATE(); - case 145: + case 154: ACCEPT_TOKEN(sym_float); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); + lookahead == 'l') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(152); END_STATE(); - case 146: + case 155: ACCEPT_TOKEN(sym_identifier); if (lookahead == '*') ADVANCE(78); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 147: + case 156: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(150); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'c') ADVANCE(159); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 148: + case 157: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(151); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'c') ADVANCE(160); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 149: + case 158: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(152); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'c') ADVANCE(161); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 150: + case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(153); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'e') ADVANCE(162); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 151: + case 160: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(154); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'e') ADVANCE(163); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 152: + case 161: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(155); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'e') ADVANCE(164); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 153: + case 162: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(156); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'p') ADVANCE(165); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 154: + case 163: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(157); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'p') ADVANCE(166); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 155: + case 164: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(158); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'p') ADVANCE(167); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 156: + case 165: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') ADVANCE(76); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 157: + case 166: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(146); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 't') ADVANCE(77); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 158: + case 167: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(77); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 't') ADVANCE(155); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 159: + case 168: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(147); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'x') ADVANCE(156); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 160: + case 169: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(148); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'x') ADVANCE(157); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 161: + case 170: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(149); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (lookahead == 'x') ADVANCE(158); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 162: + case 171: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(162); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); - case 163: + case 172: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(163); + lookahead != '\n') ADVANCE(172); + END_STATE(); + case 173: + ACCEPT_TOKEN(sym_line_continuation); END_STATE(); default: return false; @@ -8498,522 +9047,514 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == 'F') ADVANCE(1); - if (lookahead == 'N') ADVANCE(2); - if (lookahead == 'T') ADVANCE(3); - if (lookahead == '\\') SKIP(4) - if (lookahead == '_') ADVANCE(5); - if (lookahead == 'a') ADVANCE(6); - if (lookahead == 'b') ADVANCE(7); - if (lookahead == 'c') ADVANCE(8); - if (lookahead == 'd') ADVANCE(9); - if (lookahead == 'e') ADVANCE(10); - if (lookahead == 'f') ADVANCE(11); - if (lookahead == 'g') ADVANCE(12); - if (lookahead == 'i') ADVANCE(13); - if (lookahead == 'l') ADVANCE(14); - if (lookahead == 'm') ADVANCE(15); - if (lookahead == 'n') ADVANCE(16); - if (lookahead == 'o') ADVANCE(17); - if (lookahead == 'p') ADVANCE(18); - if (lookahead == 'r') ADVANCE(19); - if (lookahead == 't') ADVANCE(20); - if (lookahead == 'w') ADVANCE(21); - if (lookahead == 'y') ADVANCE(22); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || - lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(0) + if (lookahead == '\r') SKIP(0) + if (lookahead == 'F') ADVANCE(1); + if (lookahead == 'N') ADVANCE(2); + if (lookahead == 'T') ADVANCE(3); + if (lookahead == '_') ADVANCE(4); + if (lookahead == 'a') ADVANCE(5); + if (lookahead == 'b') ADVANCE(6); + if (lookahead == 'c') ADVANCE(7); + if (lookahead == 'd') ADVANCE(8); + if (lookahead == 'e') ADVANCE(9); + if (lookahead == 'f') ADVANCE(10); + if (lookahead == 'g') ADVANCE(11); + if (lookahead == 'i') ADVANCE(12); + if (lookahead == 'l') ADVANCE(13); + if (lookahead == 'm') ADVANCE(14); + if (lookahead == 'n') ADVANCE(15); + if (lookahead == 'o') ADVANCE(16); + if (lookahead == 'p') ADVANCE(17); + if (lookahead == 'r') ADVANCE(18); + if (lookahead == 't') ADVANCE(19); + if (lookahead == 'w') ADVANCE(20); + if (lookahead == 'y') ADVANCE(21); END_STATE(); case 1: - if (lookahead == 'a') ADVANCE(23); + if (lookahead == 'a') ADVANCE(22); END_STATE(); case 2: - if (lookahead == 'o') ADVANCE(24); + if (lookahead == 'o') ADVANCE(23); END_STATE(); case 3: - if (lookahead == 'r') ADVANCE(25); + if (lookahead == 'r') ADVANCE(24); END_STATE(); case 4: - if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(26) + if (lookahead == '_') ADVANCE(25); END_STATE(); case 5: - if (lookahead == '_') ADVANCE(27); + if (lookahead == 'n') ADVANCE(26); + if (lookahead == 's') ADVANCE(27); + if (lookahead == 'w') ADVANCE(28); END_STATE(); case 6: - if (lookahead == 'n') ADVANCE(28); - if (lookahead == 's') ADVANCE(29); - if (lookahead == 'w') ADVANCE(30); + if (lookahead == 'r') ADVANCE(29); END_STATE(); case 7: - if (lookahead == 'r') ADVANCE(31); + if (lookahead == 'a') ADVANCE(30); + if (lookahead == 'l') ADVANCE(31); + if (lookahead == 'o') ADVANCE(32); END_STATE(); case 8: - if (lookahead == 'a') ADVANCE(32); - if (lookahead == 'l') ADVANCE(33); - if (lookahead == 'o') ADVANCE(34); + if (lookahead == 'e') ADVANCE(33); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(35); + if (lookahead == 'l') ADVANCE(34); + if (lookahead == 'x') ADVANCE(35); END_STATE(); case 10: - if (lookahead == 'l') ADVANCE(36); - if (lookahead == 'x') ADVANCE(37); + if (lookahead == 'i') ADVANCE(36); + if (lookahead == 'o') ADVANCE(37); + if (lookahead == 'r') ADVANCE(38); END_STATE(); case 11: - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'o') ADVANCE(39); - if (lookahead == 'r') ADVANCE(40); + if (lookahead == 'l') ADVANCE(39); END_STATE(); case 12: - if (lookahead == 'l') ADVANCE(41); + if (lookahead == 'f') ADVANCE(40); + if (lookahead == 'm') ADVANCE(41); + if (lookahead == 'n') ADVANCE(42); + if (lookahead == 's') ADVANCE(43); END_STATE(); case 13: - if (lookahead == 'f') ADVANCE(42); - if (lookahead == 'm') ADVANCE(43); - if (lookahead == 'n') ADVANCE(44); - if (lookahead == 's') ADVANCE(45); + if (lookahead == 'a') ADVANCE(44); END_STATE(); case 14: - if (lookahead == 'a') ADVANCE(46); + if (lookahead == 'a') ADVANCE(45); END_STATE(); case 15: - if (lookahead == 'a') ADVANCE(47); + if (lookahead == 'o') ADVANCE(46); END_STATE(); case 16: - if (lookahead == 'o') ADVANCE(48); + if (lookahead == 'r') ADVANCE(47); END_STATE(); case 17: + if (lookahead == 'a') ADVANCE(48); if (lookahead == 'r') ADVANCE(49); END_STATE(); case 18: if (lookahead == 'a') ADVANCE(50); - if (lookahead == 'r') ADVANCE(51); + if (lookahead == 'e') ADVANCE(51); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(52); - if (lookahead == 'e') ADVANCE(53); + if (lookahead == 'r') ADVANCE(52); END_STATE(); case 20: - if (lookahead == 'r') ADVANCE(54); + if (lookahead == 'h') ADVANCE(53); + if (lookahead == 'i') ADVANCE(54); END_STATE(); case 21: - if (lookahead == 'h') ADVANCE(55); - if (lookahead == 'i') ADVANCE(56); + if (lookahead == 'i') ADVANCE(55); END_STATE(); case 22: - if (lookahead == 'i') ADVANCE(57); + if (lookahead == 'l') ADVANCE(56); END_STATE(); case 23: - if (lookahead == 'l') ADVANCE(58); + if (lookahead == 'n') ADVANCE(57); END_STATE(); case 24: - if (lookahead == 'n') ADVANCE(59); + if (lookahead == 'u') ADVANCE(58); END_STATE(); case 25: - if (lookahead == 'u') ADVANCE(60); + if (lookahead == 'f') ADVANCE(59); END_STATE(); case 26: - if (lookahead == '\n') SKIP(0) + if (lookahead == 'd') ADVANCE(60); END_STATE(); case 27: - if (lookahead == 'f') ADVANCE(61); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 's') ADVANCE(61); + if (lookahead == 'y') ADVANCE(62); END_STATE(); case 28: - if (lookahead == 'd') ADVANCE(62); + if (lookahead == 'a') ADVANCE(63); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 's') ADVANCE(63); - if (lookahead == 'y') ADVANCE(64); + if (lookahead == 'e') ADVANCE(64); END_STATE(); case 30: - if (lookahead == 'a') ADVANCE(65); + if (lookahead == 's') ADVANCE(65); END_STATE(); case 31: - if (lookahead == 'e') ADVANCE(66); + if (lookahead == 'a') ADVANCE(66); END_STATE(); case 32: - if (lookahead == 's') ADVANCE(67); + if (lookahead == 'n') ADVANCE(67); END_STATE(); case 33: - if (lookahead == 'a') ADVANCE(68); + if (lookahead == 'f') ADVANCE(68); + if (lookahead == 'l') ADVANCE(69); END_STATE(); case 34: - if (lookahead == 'n') ADVANCE(69); + if (lookahead == 'i') ADVANCE(70); + if (lookahead == 's') ADVANCE(71); END_STATE(); case 35: - if (lookahead == 'f') ADVANCE(70); - if (lookahead == 'l') ADVANCE(71); + if (lookahead == 'e') ADVANCE(72); END_STATE(); case 36: - if (lookahead == 'i') ADVANCE(72); - if (lookahead == 's') ADVANCE(73); + if (lookahead == 'n') ADVANCE(73); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(74); + if (lookahead == 'r') ADVANCE(74); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(75); + if (lookahead == 'o') ADVANCE(75); END_STATE(); case 39: - if (lookahead == 'r') ADVANCE(76); + if (lookahead == 'o') ADVANCE(76); END_STATE(); case 40: - if (lookahead == 'o') ADVANCE(77); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 41: - if (lookahead == 'o') ADVANCE(78); + if (lookahead == 'p') ADVANCE(77); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 43: - if (lookahead == 'p') ADVANCE(79); + ACCEPT_TOKEN(anon_sym_is); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'm') ADVANCE(78); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_is); + if (lookahead == 't') ADVANCE(79); END_STATE(); case 46: - if (lookahead == 'm') ADVANCE(80); + if (lookahead == 'n') ADVANCE(80); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(81); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 48: - if (lookahead == 'n') ADVANCE(82); - if (lookahead == 't') ADVANCE(83); + if (lookahead == 's') ADVANCE(82); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_or); + if (lookahead == 'i') ADVANCE(83); END_STATE(); case 50: - if (lookahead == 's') ADVANCE(84); + if (lookahead == 'i') ADVANCE(84); END_STATE(); case 51: - if (lookahead == 'i') ADVANCE(85); + if (lookahead == 't') ADVANCE(85); END_STATE(); case 52: - if (lookahead == 'i') ADVANCE(86); + if (lookahead == 'y') ADVANCE(86); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(87); + if (lookahead == 'i') ADVANCE(87); END_STATE(); case 54: - if (lookahead == 'y') ADVANCE(88); + if (lookahead == 't') ADVANCE(88); END_STATE(); case 55: - if (lookahead == 'i') ADVANCE(89); + if (lookahead == 'e') ADVANCE(89); END_STATE(); case 56: - if (lookahead == 't') ADVANCE(90); + if (lookahead == 's') ADVANCE(90); END_STATE(); case 57: if (lookahead == 'e') ADVANCE(91); END_STATE(); case 58: - if (lookahead == 's') ADVANCE(92); + if (lookahead == 'e') ADVANCE(92); END_STATE(); case 59: - if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'u') ADVANCE(93); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(94); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 61: - if (lookahead == 'u') ADVANCE(95); + if (lookahead == 'e') ADVANCE(94); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_and); + if (lookahead == 'n') ADVANCE(95); END_STATE(); case 63: - if (lookahead == 'e') ADVANCE(96); + if (lookahead == 'i') ADVANCE(96); END_STATE(); case 64: - if (lookahead == 'n') ADVANCE(97); + if (lookahead == 'a') ADVANCE(97); END_STATE(); case 65: - if (lookahead == 'i') ADVANCE(98); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 66: - if (lookahead == 'a') ADVANCE(99); + if (lookahead == 's') ADVANCE(99); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(100); + if (lookahead == 't') ADVANCE(100); END_STATE(); case 68: - if (lookahead == 's') ADVANCE(101); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 69: - if (lookahead == 't') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_del); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_def); + if (lookahead == 'f') ADVANCE(101); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_del); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 72: - if (lookahead == 'f') ADVANCE(103); + if (lookahead == 'c') ADVANCE(103); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'a') ADVANCE(104); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(105); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 75: - if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'm') ADVANCE(105); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'b') ADVANCE(106); END_STATE(); case 77: - if (lookahead == 'm') ADVANCE(107); + if (lookahead == 'o') ADVANCE(107); END_STATE(); case 78: if (lookahead == 'b') ADVANCE(108); END_STATE(); case 79: - if (lookahead == 'o') ADVANCE(109); + if (lookahead == 'c') ADVANCE(109); END_STATE(); case 80: - if (lookahead == 'b') ADVANCE(110); + if (lookahead == 'l') ADVANCE(110); END_STATE(); case 81: - if (lookahead == 'c') ADVANCE(111); + ACCEPT_TOKEN(anon_sym_not); END_STATE(); case 82: - if (lookahead == 'l') ADVANCE(112); + if (lookahead == 's') ADVANCE(111); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_not); + if (lookahead == 'n') ADVANCE(112); END_STATE(); case 84: if (lookahead == 's') ADVANCE(113); END_STATE(); case 85: - if (lookahead == 'n') ADVANCE(114); + if (lookahead == 'u') ADVANCE(114); END_STATE(); case 86: - if (lookahead == 's') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 87: - if (lookahead == 'u') ADVANCE(116); + if (lookahead == 'l') ADVANCE(115); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'h') ADVANCE(116); END_STATE(); case 89: if (lookahead == 'l') ADVANCE(117); END_STATE(); case 90: - if (lookahead == 'h') ADVANCE(118); + if (lookahead == 'e') ADVANCE(118); END_STATE(); case 91: - if (lookahead == 'l') ADVANCE(119); + ACCEPT_TOKEN(sym_none); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(120); + ACCEPT_TOKEN(sym_true); END_STATE(); case 93: - ACCEPT_TOKEN(sym_none); + if (lookahead == 't') ADVANCE(119); END_STATE(); case 94: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'r') ADVANCE(120); END_STATE(); case 95: - if (lookahead == 't') ADVANCE(121); + if (lookahead == 'c') ADVANCE(121); END_STATE(); case 96: - if (lookahead == 'r') ADVANCE(122); + if (lookahead == 't') ADVANCE(122); END_STATE(); case 97: - if (lookahead == 'c') ADVANCE(123); + if (lookahead == 'k') ADVANCE(123); END_STATE(); case 98: - if (lookahead == 't') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 99: - if (lookahead == 'k') ADVANCE(125); + if (lookahead == 's') ADVANCE(124); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'i') ADVANCE(125); END_STATE(); case 101: - if (lookahead == 's') ADVANCE(126); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 102: - if (lookahead == 'i') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_elif); + ACCEPT_TOKEN(anon_sym_exec); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'l') ADVANCE(126); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_exec); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 106: - if (lookahead == 'l') ADVANCE(128); + if (lookahead == 'a') ADVANCE(127); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_from); + if (lookahead == 'r') ADVANCE(128); END_STATE(); case 108: - if (lookahead == 'a') ADVANCE(129); + if (lookahead == 'd') ADVANCE(129); END_STATE(); case 109: - if (lookahead == 'r') ADVANCE(130); + if (lookahead == 'h') ADVANCE(130); END_STATE(); case 110: - if (lookahead == 'd') ADVANCE(131); + if (lookahead == 'o') ADVANCE(131); END_STATE(); case 111: - if (lookahead == 'h') ADVANCE(132); + ACCEPT_TOKEN(anon_sym_pass); END_STATE(); case 112: - if (lookahead == 'o') ADVANCE(133); + if (lookahead == 't') ADVANCE(132); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_pass); + if (lookahead == 'e') ADVANCE(133); END_STATE(); case 114: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'r') ADVANCE(134); END_STATE(); case 115: if (lookahead == 'e') ADVANCE(135); END_STATE(); case 116: - if (lookahead == 'r') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(137); + if (lookahead == 'd') ADVANCE(136); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_with); + ACCEPT_TOKEN(sym_false); END_STATE(); case 119: - if (lookahead == 'd') ADVANCE(138); + if (lookahead == 'u') ADVANCE(137); END_STATE(); case 120: - ACCEPT_TOKEN(sym_false); + if (lookahead == 't') ADVANCE(138); END_STATE(); case 121: - if (lookahead == 'u') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 122: - if (lookahead == 't') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_async); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_await); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'n') ADVANCE(139); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_class); + if (lookahead == 'l') ADVANCE(140); END_STATE(); case 127: - if (lookahead == 'n') ADVANCE(141); + if (lookahead == 'l') ADVANCE(141); END_STATE(); case 128: - if (lookahead == 'l') ADVANCE(142); + if (lookahead == 't') ADVANCE(142); END_STATE(); case 129: - if (lookahead == 'l') ADVANCE(143); + if (lookahead == 'a') ADVANCE(143); END_STATE(); case 130: - if (lookahead == 't') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 131: - if (lookahead == 'a') ADVANCE(145); + if (lookahead == 'c') ADVANCE(144); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_print); END_STATE(); case 133: - if (lookahead == 'c') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_raise); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_print); + if (lookahead == 'n') ADVANCE(145); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_raise); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 136: - if (lookahead == 'n') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'r') ADVANCE(146); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_assert); END_STATE(); case 139: - if (lookahead == 'r') ADVANCE(148); + if (lookahead == 'u') ADVANCE(147); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_assert); + if (lookahead == 'y') ADVANCE(148); END_STATE(); case 141: - if (lookahead == 'u') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 142: - if (lookahead == 'y') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_global); + ACCEPT_TOKEN(anon_sym_lambda); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_import); + if (lookahead == 'a') ADVANCE(149); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_lambda); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 146: - if (lookahead == 'a') ADVANCE(151); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'e') ADVANCE(151); END_STATE(); case 148: - if (lookahead == 'e') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 149: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'l') ADVANCE(152); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == '_') ADVANCE(153); END_STATE(); case 151: - if (lookahead == 'l') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 152: - if (lookahead == '_') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_nonlocal); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == '_') ADVANCE(154); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_nonlocal); - END_STATE(); - case 155: - if (lookahead == '_') ADVANCE(156); - END_STATE(); - case 156: ACCEPT_TOKEN(anon_sym___future__); END_STATE(); default: @@ -9023,2240 +9564,2559 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 60, .external_lex_state = 2}, - [2] = {.lex_state = 60, .external_lex_state = 3}, - [3] = {.lex_state = 60, .external_lex_state = 3}, - [4] = {.lex_state = 60, .external_lex_state = 3}, - [5] = {.lex_state = 60, .external_lex_state = 3}, - [6] = {.lex_state = 60, .external_lex_state = 3}, - [7] = {.lex_state = 60, .external_lex_state = 3}, - [8] = {.lex_state = 60, .external_lex_state = 3}, - [9] = {.lex_state = 60, .external_lex_state = 3}, - [10] = {.lex_state = 60, .external_lex_state = 3}, - [11] = {.lex_state = 60, .external_lex_state = 3}, - [12] = {.lex_state = 60, .external_lex_state = 3}, - [13] = {.lex_state = 60, .external_lex_state = 3}, - [14] = {.lex_state = 60, .external_lex_state = 3}, - [15] = {.lex_state = 60, .external_lex_state = 3}, - [16] = {.lex_state = 60, .external_lex_state = 3}, - [17] = {.lex_state = 60, .external_lex_state = 3}, - [18] = {.lex_state = 60, .external_lex_state = 3}, - [19] = {.lex_state = 60, .external_lex_state = 3}, - [20] = {.lex_state = 60, .external_lex_state = 3}, - [21] = {.lex_state = 60, .external_lex_state = 3}, - [22] = {.lex_state = 60, .external_lex_state = 3}, - [23] = {.lex_state = 60, .external_lex_state = 3}, - [24] = {.lex_state = 60, .external_lex_state = 3}, - [25] = {.lex_state = 60, .external_lex_state = 3}, - [26] = {.lex_state = 60, .external_lex_state = 3}, - [27] = {.lex_state = 60, .external_lex_state = 3}, - [28] = {.lex_state = 60, .external_lex_state = 3}, - [29] = {.lex_state = 60, .external_lex_state = 3}, - [30] = {.lex_state = 60, .external_lex_state = 3}, - [31] = {.lex_state = 60, .external_lex_state = 3}, - [32] = {.lex_state = 60, .external_lex_state = 3}, - [33] = {.lex_state = 60, .external_lex_state = 3}, - [34] = {.lex_state = 60, .external_lex_state = 3}, - [35] = {.lex_state = 60, .external_lex_state = 3}, - [36] = {.lex_state = 60, .external_lex_state = 3}, - [37] = {.lex_state = 60, .external_lex_state = 3}, - [38] = {.lex_state = 60, .external_lex_state = 3}, - [39] = {.lex_state = 60, .external_lex_state = 3}, - [40] = {.lex_state = 60, .external_lex_state = 3}, - [41] = {.lex_state = 60, .external_lex_state = 3}, - [42] = {.lex_state = 60, .external_lex_state = 3}, - [43] = {.lex_state = 60, .external_lex_state = 3}, - [44] = {.lex_state = 60, .external_lex_state = 3}, - [45] = {.lex_state = 60, .external_lex_state = 3}, - [46] = {.lex_state = 60, .external_lex_state = 3}, - [47] = {.lex_state = 60, .external_lex_state = 3}, - [48] = {.lex_state = 60, .external_lex_state = 3}, - [49] = {.lex_state = 60, .external_lex_state = 3}, - [50] = {.lex_state = 60, .external_lex_state = 3}, - [51] = {.lex_state = 60, .external_lex_state = 3}, - [52] = {.lex_state = 60, .external_lex_state = 3}, - [53] = {.lex_state = 60, .external_lex_state = 3}, - [54] = {.lex_state = 60, .external_lex_state = 3}, - [55] = {.lex_state = 60, .external_lex_state = 3}, - [56] = {.lex_state = 60, .external_lex_state = 3}, - [57] = {.lex_state = 60, .external_lex_state = 3}, - [58] = {.lex_state = 60, .external_lex_state = 3}, - [59] = {.lex_state = 60, .external_lex_state = 3}, - [60] = {.lex_state = 60, .external_lex_state = 3}, - [61] = {.lex_state = 60, .external_lex_state = 3}, - [62] = {.lex_state = 60, .external_lex_state = 3}, - [63] = {.lex_state = 60, .external_lex_state = 3}, - [64] = {.lex_state = 60, .external_lex_state = 3}, - [65] = {.lex_state = 60, .external_lex_state = 3}, - [66] = {.lex_state = 60, .external_lex_state = 3}, - [67] = {.lex_state = 60, .external_lex_state = 3}, - [68] = {.lex_state = 60, .external_lex_state = 2}, - [69] = {.lex_state = 60, .external_lex_state = 3}, - [70] = {.lex_state = 60, .external_lex_state = 3}, - [71] = {.lex_state = 60, .external_lex_state = 2}, - [72] = {.lex_state = 60, .external_lex_state = 3}, - [73] = {.lex_state = 60, .external_lex_state = 3}, - [74] = {.lex_state = 60, .external_lex_state = 3}, - [75] = {.lex_state = 60, .external_lex_state = 3}, - [76] = {.lex_state = 60, .external_lex_state = 3}, - [77] = {.lex_state = 60, .external_lex_state = 3}, - [78] = {.lex_state = 60, .external_lex_state = 4}, - [79] = {.lex_state = 60, .external_lex_state = 4}, - [80] = {.lex_state = 60, .external_lex_state = 4}, - [81] = {.lex_state = 60, .external_lex_state = 4}, - [82] = {.lex_state = 60, .external_lex_state = 5}, - [83] = {.lex_state = 60, .external_lex_state = 5}, - [84] = {.lex_state = 60, .external_lex_state = 5}, - [85] = {.lex_state = 60, .external_lex_state = 5}, - [86] = {.lex_state = 60, .external_lex_state = 5}, - [87] = {.lex_state = 60, .external_lex_state = 5}, - [88] = {.lex_state = 60, .external_lex_state = 5}, - [89] = {.lex_state = 60, .external_lex_state = 5}, - [90] = {.lex_state = 60, .external_lex_state = 5}, - [91] = {.lex_state = 60, .external_lex_state = 5}, - [92] = {.lex_state = 60, .external_lex_state = 5}, - [93] = {.lex_state = 60, .external_lex_state = 5}, - [94] = {.lex_state = 60, .external_lex_state = 5}, - [95] = {.lex_state = 60, .external_lex_state = 5}, - [96] = {.lex_state = 60, .external_lex_state = 5}, - [97] = {.lex_state = 60, .external_lex_state = 5}, - [98] = {.lex_state = 60, .external_lex_state = 5}, - [99] = {.lex_state = 60, .external_lex_state = 5}, - [100] = {.lex_state = 60, .external_lex_state = 5}, - [101] = {.lex_state = 60, .external_lex_state = 5}, - [102] = {.lex_state = 60, .external_lex_state = 5}, - [103] = {.lex_state = 60, .external_lex_state = 5}, - [104] = {.lex_state = 60, .external_lex_state = 5}, - [105] = {.lex_state = 60, .external_lex_state = 5}, - [106] = {.lex_state = 60, .external_lex_state = 5}, - [107] = {.lex_state = 60, .external_lex_state = 5}, - [108] = {.lex_state = 60, .external_lex_state = 5}, - [109] = {.lex_state = 60, .external_lex_state = 5}, - [110] = {.lex_state = 60, .external_lex_state = 5}, - [111] = {.lex_state = 60, .external_lex_state = 5}, - [112] = {.lex_state = 60, .external_lex_state = 5}, - [113] = {.lex_state = 60, .external_lex_state = 5}, - [114] = {.lex_state = 60, .external_lex_state = 5}, - [115] = {.lex_state = 60, .external_lex_state = 5}, - [116] = {.lex_state = 60, .external_lex_state = 5}, - [117] = {.lex_state = 60, .external_lex_state = 5}, - [118] = {.lex_state = 60, .external_lex_state = 5}, - [119] = {.lex_state = 60, .external_lex_state = 5}, - [120] = {.lex_state = 60, .external_lex_state = 5}, - [121] = {.lex_state = 60, .external_lex_state = 5}, - [122] = {.lex_state = 60, .external_lex_state = 5}, - [123] = {.lex_state = 60, .external_lex_state = 5}, - [124] = {.lex_state = 60, .external_lex_state = 5}, - [125] = {.lex_state = 60, .external_lex_state = 5}, - [126] = {.lex_state = 60, .external_lex_state = 5}, - [127] = {.lex_state = 60, .external_lex_state = 5}, - [128] = {.lex_state = 60, .external_lex_state = 5}, - [129] = {.lex_state = 60, .external_lex_state = 5}, - [130] = {.lex_state = 60, .external_lex_state = 5}, - [131] = {.lex_state = 60, .external_lex_state = 5}, - [132] = {.lex_state = 60, .external_lex_state = 5}, - [133] = {.lex_state = 60, .external_lex_state = 5}, - [134] = {.lex_state = 60, .external_lex_state = 5}, - [135] = {.lex_state = 60, .external_lex_state = 5}, - [136] = {.lex_state = 60, .external_lex_state = 5}, - [137] = {.lex_state = 60, .external_lex_state = 5}, - [138] = {.lex_state = 60, .external_lex_state = 5}, - [139] = {.lex_state = 60, .external_lex_state = 5}, - [140] = {.lex_state = 60, .external_lex_state = 5}, - [141] = {.lex_state = 60, .external_lex_state = 5}, - [142] = {.lex_state = 60, .external_lex_state = 5}, - [143] = {.lex_state = 60, .external_lex_state = 5}, - [144] = {.lex_state = 60, .external_lex_state = 5}, - [145] = {.lex_state = 60, .external_lex_state = 5}, - [146] = {.lex_state = 60, .external_lex_state = 4}, - [147] = {.lex_state = 60, .external_lex_state = 4}, - [148] = {.lex_state = 60, .external_lex_state = 4}, - [149] = {.lex_state = 60, .external_lex_state = 4}, - [150] = {.lex_state = 60, .external_lex_state = 4}, - [151] = {.lex_state = 60, .external_lex_state = 4}, - [152] = {.lex_state = 60, .external_lex_state = 4}, - [153] = {.lex_state = 60, .external_lex_state = 4}, - [154] = {.lex_state = 60, .external_lex_state = 4}, - [155] = {.lex_state = 60, .external_lex_state = 4}, - [156] = {.lex_state = 60, .external_lex_state = 4}, - [157] = {.lex_state = 60, .external_lex_state = 4}, - [158] = {.lex_state = 60, .external_lex_state = 4}, - [159] = {.lex_state = 60, .external_lex_state = 4}, - [160] = {.lex_state = 60, .external_lex_state = 2}, - [161] = {.lex_state = 60, .external_lex_state = 4}, - [162] = {.lex_state = 60, .external_lex_state = 6}, - [163] = {.lex_state = 60, .external_lex_state = 7}, - [164] = {.lex_state = 60, .external_lex_state = 2}, - [165] = {.lex_state = 60, .external_lex_state = 6}, - [166] = {.lex_state = 60, .external_lex_state = 7}, - [167] = {.lex_state = 60, .external_lex_state = 8}, - [168] = {.lex_state = 60, .external_lex_state = 7}, - [169] = {.lex_state = 60, .external_lex_state = 8}, - [170] = {.lex_state = 60, .external_lex_state = 7}, - [171] = {.lex_state = 60, .external_lex_state = 7}, - [172] = {.lex_state = 60, .external_lex_state = 8}, - [173] = {.lex_state = 60, .external_lex_state = 8}, - [174] = {.lex_state = 60, .external_lex_state = 7}, - [175] = {.lex_state = 60, .external_lex_state = 8}, - [176] = {.lex_state = 60, .external_lex_state = 7}, - [177] = {.lex_state = 60, .external_lex_state = 8}, - [178] = {.lex_state = 60, .external_lex_state = 2}, - [179] = {.lex_state = 60, .external_lex_state = 2}, - [180] = {.lex_state = 60, .external_lex_state = 8}, - [181] = {.lex_state = 60, .external_lex_state = 7}, - [182] = {.lex_state = 60, .external_lex_state = 2}, - [183] = {.lex_state = 60, .external_lex_state = 7}, - [184] = {.lex_state = 60, .external_lex_state = 8}, - [185] = {.lex_state = 60, .external_lex_state = 7}, - [186] = {.lex_state = 60, .external_lex_state = 7}, - [187] = {.lex_state = 60, .external_lex_state = 8}, - [188] = {.lex_state = 60, .external_lex_state = 7}, - [189] = {.lex_state = 60, .external_lex_state = 8}, - [190] = {.lex_state = 60, .external_lex_state = 6}, - [191] = {.lex_state = 60, .external_lex_state = 6}, - [192] = {.lex_state = 60, .external_lex_state = 6}, - [193] = {.lex_state = 60, .external_lex_state = 6}, - [194] = {.lex_state = 60, .external_lex_state = 6}, - [195] = {.lex_state = 60, .external_lex_state = 6}, - [196] = {.lex_state = 60, .external_lex_state = 6}, - [197] = {.lex_state = 60, .external_lex_state = 6}, - [198] = {.lex_state = 16, .external_lex_state = 2}, - [199] = {.lex_state = 16, .external_lex_state = 2}, - [200] = {.lex_state = 60, .external_lex_state = 7}, - [201] = {.lex_state = 60, .external_lex_state = 7}, - [202] = {.lex_state = 60, .external_lex_state = 7}, - [203] = {.lex_state = 60, .external_lex_state = 7}, - [204] = {.lex_state = 60, .external_lex_state = 7}, - [205] = {.lex_state = 60, .external_lex_state = 7}, - [206] = {.lex_state = 60, .external_lex_state = 7}, - [207] = {.lex_state = 60, .external_lex_state = 7}, - [208] = {.lex_state = 60, .external_lex_state = 7}, - [209] = {.lex_state = 60, .external_lex_state = 7}, - [210] = {.lex_state = 60, .external_lex_state = 7}, - [211] = {.lex_state = 60, .external_lex_state = 7}, - [212] = {.lex_state = 60, .external_lex_state = 7}, - [213] = {.lex_state = 60, .external_lex_state = 8}, - [214] = {.lex_state = 60, .external_lex_state = 7}, - [215] = {.lex_state = 60, .external_lex_state = 7}, - [216] = {.lex_state = 60, .external_lex_state = 7}, - [217] = {.lex_state = 60, .external_lex_state = 8}, - [218] = {.lex_state = 60, .external_lex_state = 7}, - [219] = {.lex_state = 60, .external_lex_state = 7}, - [220] = {.lex_state = 60, .external_lex_state = 7}, - [221] = {.lex_state = 60, .external_lex_state = 7}, - [222] = {.lex_state = 60, .external_lex_state = 7}, - [223] = {.lex_state = 60, .external_lex_state = 7}, - [224] = {.lex_state = 60, .external_lex_state = 7}, - [225] = {.lex_state = 60, .external_lex_state = 7}, - [226] = {.lex_state = 60, .external_lex_state = 8}, - [227] = {.lex_state = 60, .external_lex_state = 7}, - [228] = {.lex_state = 60, .external_lex_state = 8}, - [229] = {.lex_state = 60, .external_lex_state = 7}, - [230] = {.lex_state = 60, .external_lex_state = 7}, - [231] = {.lex_state = 60, .external_lex_state = 7}, - [232] = {.lex_state = 60, .external_lex_state = 7}, - [233] = {.lex_state = 60, .external_lex_state = 7}, - [234] = {.lex_state = 60, .external_lex_state = 7}, - [235] = {.lex_state = 60, .external_lex_state = 7}, - [236] = {.lex_state = 60, .external_lex_state = 7}, - [237] = {.lex_state = 60, .external_lex_state = 7}, - [238] = {.lex_state = 60, .external_lex_state = 8}, - [239] = {.lex_state = 60, .external_lex_state = 7}, - [240] = {.lex_state = 60, .external_lex_state = 7}, - [241] = {.lex_state = 60, .external_lex_state = 8}, - [242] = {.lex_state = 60, .external_lex_state = 7}, - [243] = {.lex_state = 60, .external_lex_state = 7}, - [244] = {.lex_state = 60, .external_lex_state = 7}, - [245] = {.lex_state = 60, .external_lex_state = 7}, - [246] = {.lex_state = 60, .external_lex_state = 7}, - [247] = {.lex_state = 60, .external_lex_state = 7}, - [248] = {.lex_state = 60, .external_lex_state = 7}, - [249] = {.lex_state = 60, .external_lex_state = 7}, - [250] = {.lex_state = 60, .external_lex_state = 7}, - [251] = {.lex_state = 60, .external_lex_state = 7}, - [252] = {.lex_state = 60, .external_lex_state = 7}, - [253] = {.lex_state = 60, .external_lex_state = 7}, - [254] = {.lex_state = 60, .external_lex_state = 8}, - [255] = {.lex_state = 60, .external_lex_state = 7}, - [256] = {.lex_state = 60, .external_lex_state = 7}, - [257] = {.lex_state = 60, .external_lex_state = 8}, - [258] = {.lex_state = 60, .external_lex_state = 7}, - [259] = {.lex_state = 60, .external_lex_state = 7}, - [260] = {.lex_state = 16, .external_lex_state = 6}, - [261] = {.lex_state = 60, .external_lex_state = 7}, - [262] = {.lex_state = 60, .external_lex_state = 7}, - [263] = {.lex_state = 60, .external_lex_state = 7}, - [264] = {.lex_state = 60, .external_lex_state = 7}, - [265] = {.lex_state = 60, .external_lex_state = 7}, - [266] = {.lex_state = 60, .external_lex_state = 6}, - [267] = {.lex_state = 60, .external_lex_state = 6}, - [268] = {.lex_state = 60, .external_lex_state = 2}, - [269] = {.lex_state = 60, .external_lex_state = 8}, - [270] = {.lex_state = 60, .external_lex_state = 7}, - [271] = {.lex_state = 60, .external_lex_state = 8}, - [272] = {.lex_state = 60, .external_lex_state = 2}, - [273] = {.lex_state = 16, .external_lex_state = 2}, - [274] = {.lex_state = 16, .external_lex_state = 6}, - [275] = {.lex_state = 60, .external_lex_state = 2}, - [276] = {.lex_state = 60, .external_lex_state = 6}, - [277] = {.lex_state = 60, .external_lex_state = 6}, - [278] = {.lex_state = 60, .external_lex_state = 8}, - [279] = {.lex_state = 60, .external_lex_state = 7}, - [280] = {.lex_state = 60, .external_lex_state = 6}, - [281] = {.lex_state = 16, .external_lex_state = 2}, - [282] = {.lex_state = 60, .external_lex_state = 8}, - [283] = {.lex_state = 16, .external_lex_state = 6}, - [284] = {.lex_state = 60, .external_lex_state = 7}, - [285] = {.lex_state = 60, .external_lex_state = 7}, - [286] = {.lex_state = 16, .external_lex_state = 2}, - [287] = {.lex_state = 16, .external_lex_state = 2}, - [288] = {.lex_state = 60, .external_lex_state = 8}, - [289] = {.lex_state = 16, .external_lex_state = 2}, - [290] = {.lex_state = 60, .external_lex_state = 2}, - [291] = {.lex_state = 60, .external_lex_state = 8}, - [292] = {.lex_state = 60, .external_lex_state = 6}, - [293] = {.lex_state = 16, .external_lex_state = 2}, - [294] = {.lex_state = 60, .external_lex_state = 7}, - [295] = {.lex_state = 14, .external_lex_state = 9}, - [296] = {.lex_state = 60, .external_lex_state = 2}, - [297] = {.lex_state = 60, .external_lex_state = 6}, - [298] = {.lex_state = 60, .external_lex_state = 6}, - [299] = {.lex_state = 60, .external_lex_state = 6}, - [300] = {.lex_state = 60, .external_lex_state = 6}, - [301] = {.lex_state = 60, .external_lex_state = 4}, - [302] = {.lex_state = 60, .external_lex_state = 2}, - [303] = {.lex_state = 60, .external_lex_state = 6}, - [304] = {.lex_state = 60, .external_lex_state = 6}, - [305] = {.lex_state = 60, .external_lex_state = 6}, - [306] = {.lex_state = 60, .external_lex_state = 7}, - [307] = {.lex_state = 60, .external_lex_state = 4}, - [308] = {.lex_state = 60, .external_lex_state = 6}, - [309] = {.lex_state = 60, .external_lex_state = 6}, - [310] = {.lex_state = 60, .external_lex_state = 6}, - [311] = {.lex_state = 60, .external_lex_state = 6}, - [312] = {.lex_state = 60, .external_lex_state = 6}, - [313] = {.lex_state = 60, .external_lex_state = 6}, - [314] = {.lex_state = 60, .external_lex_state = 6}, - [315] = {.lex_state = 14, .external_lex_state = 9}, - [316] = {.lex_state = 60, .external_lex_state = 6}, - [317] = {.lex_state = 60, .external_lex_state = 6}, - [318] = {.lex_state = 60, .external_lex_state = 8}, - [319] = {.lex_state = 16, .external_lex_state = 8}, - [320] = {.lex_state = 16, .external_lex_state = 8}, - [321] = {.lex_state = 60, .external_lex_state = 4}, - [322] = {.lex_state = 16, .external_lex_state = 8}, - [323] = {.lex_state = 16, .external_lex_state = 8}, - [324] = {.lex_state = 16, .external_lex_state = 8}, - [325] = {.lex_state = 60, .external_lex_state = 2}, - [326] = {.lex_state = 16, .external_lex_state = 8}, - [327] = {.lex_state = 16, .external_lex_state = 8}, - [328] = {.lex_state = 16, .external_lex_state = 8}, - [329] = {.lex_state = 16, .external_lex_state = 8}, - [330] = {.lex_state = 16, .external_lex_state = 8}, - [331] = {.lex_state = 16, .external_lex_state = 8}, - [332] = {.lex_state = 16, .external_lex_state = 8}, - [333] = {.lex_state = 16, .external_lex_state = 8}, - [334] = {.lex_state = 16, .external_lex_state = 8}, - [335] = {.lex_state = 16, .external_lex_state = 8}, - [336] = {.lex_state = 16, .external_lex_state = 8}, - [337] = {.lex_state = 16, .external_lex_state = 8}, - [338] = {.lex_state = 16, .external_lex_state = 8}, - [339] = {.lex_state = 16, .external_lex_state = 8}, - [340] = {.lex_state = 16, .external_lex_state = 8}, - [341] = {.lex_state = 16, .external_lex_state = 8}, - [342] = {.lex_state = 14, .external_lex_state = 4}, - [343] = {.lex_state = 60, .external_lex_state = 4}, - [344] = {.lex_state = 16, .external_lex_state = 8}, - [345] = {.lex_state = 16, .external_lex_state = 8}, - [346] = {.lex_state = 16, .external_lex_state = 8}, - [347] = {.lex_state = 16, .external_lex_state = 8}, - [348] = {.lex_state = 16, .external_lex_state = 8}, - [349] = {.lex_state = 60, .external_lex_state = 4}, - [350] = {.lex_state = 61, .external_lex_state = 2}, - [351] = {.lex_state = 62, .external_lex_state = 2}, - [352] = {.lex_state = 60, .external_lex_state = 2}, - [353] = {.lex_state = 60, .external_lex_state = 2}, - [354] = {.lex_state = 60, .external_lex_state = 2}, - [355] = {.lex_state = 16, .external_lex_state = 2}, - [356] = {.lex_state = 60, .external_lex_state = 4}, - [357] = {.lex_state = 60, .external_lex_state = 2}, - [358] = {.lex_state = 60, .external_lex_state = 4}, - [359] = {.lex_state = 60, .external_lex_state = 2}, - [360] = {.lex_state = 60, .external_lex_state = 2}, - [361] = {.lex_state = 60, .external_lex_state = 2}, - [362] = {.lex_state = 60, .external_lex_state = 2}, - [363] = {.lex_state = 60, .external_lex_state = 2}, - [364] = {.lex_state = 60, .external_lex_state = 2}, - [365] = {.lex_state = 60, .external_lex_state = 2}, - [366] = {.lex_state = 60, .external_lex_state = 8}, - [367] = {.lex_state = 60, .external_lex_state = 2}, - [368] = {.lex_state = 16, .external_lex_state = 2}, - [369] = {.lex_state = 60, .external_lex_state = 2}, - [370] = {.lex_state = 16, .external_lex_state = 2}, - [371] = {.lex_state = 60, .external_lex_state = 8}, - [372] = {.lex_state = 16, .external_lex_state = 2}, - [373] = {.lex_state = 60, .external_lex_state = 2}, - [374] = {.lex_state = 16, .external_lex_state = 2}, - [375] = {.lex_state = 16, .external_lex_state = 2}, - [376] = {.lex_state = 16, .external_lex_state = 2}, - [377] = {.lex_state = 60, .external_lex_state = 7}, - [378] = {.lex_state = 61, .external_lex_state = 2}, - [379] = {.lex_state = 60, .external_lex_state = 4}, - [380] = {.lex_state = 16, .external_lex_state = 2}, - [381] = {.lex_state = 60, .external_lex_state = 2}, - [382] = {.lex_state = 60, .external_lex_state = 7}, - [383] = {.lex_state = 60, .external_lex_state = 2}, - [384] = {.lex_state = 60, .external_lex_state = 8}, - [385] = {.lex_state = 16, .external_lex_state = 2}, - [386] = {.lex_state = 16, .external_lex_state = 2}, - [387] = {.lex_state = 60, .external_lex_state = 2}, - [388] = {.lex_state = 60, .external_lex_state = 8}, - [389] = {.lex_state = 60, .external_lex_state = 7}, - [390] = {.lex_state = 62, .external_lex_state = 3}, - [391] = {.lex_state = 62, .external_lex_state = 2}, - [392] = {.lex_state = 60, .external_lex_state = 4}, - [393] = {.lex_state = 61, .external_lex_state = 3}, - [394] = {.lex_state = 16, .external_lex_state = 2}, - [395] = {.lex_state = 62, .external_lex_state = 3}, - [396] = {.lex_state = 61, .external_lex_state = 3}, - [397] = {.lex_state = 60, .external_lex_state = 2}, - [398] = {.lex_state = 60, .external_lex_state = 2}, - [399] = {.lex_state = 60, .external_lex_state = 2}, - [400] = {.lex_state = 60, .external_lex_state = 2}, - [401] = {.lex_state = 60, .external_lex_state = 2}, - [402] = {.lex_state = 60, .external_lex_state = 8}, - [403] = {.lex_state = 60, .external_lex_state = 4}, - [404] = {.lex_state = 60, .external_lex_state = 4}, - [405] = {.lex_state = 60, .external_lex_state = 7}, - [406] = {.lex_state = 14, .external_lex_state = 9}, - [407] = {.lex_state = 15, .external_lex_state = 9}, - [408] = {.lex_state = 14, .external_lex_state = 9}, - [409] = {.lex_state = 15, .external_lex_state = 9}, - [410] = {.lex_state = 16, .external_lex_state = 2}, - [411] = {.lex_state = 16, .external_lex_state = 2}, - [412] = {.lex_state = 16, .external_lex_state = 2}, - [413] = {.lex_state = 60, .external_lex_state = 2}, - [414] = {.lex_state = 16, .external_lex_state = 2}, - [415] = {.lex_state = 60, .external_lex_state = 2}, - [416] = {.lex_state = 60, .external_lex_state = 2}, - [417] = {.lex_state = 15, .external_lex_state = 9}, - [418] = {.lex_state = 60, .external_lex_state = 2}, - [419] = {.lex_state = 60, .external_lex_state = 2}, - [420] = {.lex_state = 60, .external_lex_state = 2}, - [421] = {.lex_state = 60, .external_lex_state = 2}, - [422] = {.lex_state = 15, .external_lex_state = 9}, - [423] = {.lex_state = 15, .external_lex_state = 9}, - [424] = {.lex_state = 16, .external_lex_state = 2}, - [425] = {.lex_state = 16, .external_lex_state = 2}, - [426] = {.lex_state = 16, .external_lex_state = 2}, - [427] = {.lex_state = 15, .external_lex_state = 9}, - [428] = {.lex_state = 60, .external_lex_state = 2}, - [429] = {.lex_state = 16, .external_lex_state = 2}, - [430] = {.lex_state = 60, .external_lex_state = 2}, - [431] = {.lex_state = 60, .external_lex_state = 2}, - [432] = {.lex_state = 15, .external_lex_state = 9}, - [433] = {.lex_state = 60, .external_lex_state = 2}, - [434] = {.lex_state = 60, .external_lex_state = 2}, - [435] = {.lex_state = 60, .external_lex_state = 2}, - [436] = {.lex_state = 60, .external_lex_state = 2}, - [437] = {.lex_state = 60, .external_lex_state = 2}, - [438] = {.lex_state = 60, .external_lex_state = 2}, - [439] = {.lex_state = 60, .external_lex_state = 2}, - [440] = {.lex_state = 60, .external_lex_state = 2}, - [441] = {.lex_state = 60, .external_lex_state = 2}, - [442] = {.lex_state = 60, .external_lex_state = 2}, - [443] = {.lex_state = 60, .external_lex_state = 2}, - [444] = {.lex_state = 60, .external_lex_state = 2}, - [445] = {.lex_state = 60, .external_lex_state = 2}, - [446] = {.lex_state = 60, .external_lex_state = 2}, - [447] = {.lex_state = 60, .external_lex_state = 2}, - [448] = {.lex_state = 60, .external_lex_state = 2}, - [449] = {.lex_state = 60, .external_lex_state = 2}, - [450] = {.lex_state = 60, .external_lex_state = 2}, - [451] = {.lex_state = 60, .external_lex_state = 2}, - [452] = {.lex_state = 60, .external_lex_state = 2}, - [453] = {.lex_state = 60, .external_lex_state = 2}, - [454] = {.lex_state = 60, .external_lex_state = 2}, - [455] = {.lex_state = 60, .external_lex_state = 2}, - [456] = {.lex_state = 60, .external_lex_state = 2}, - [457] = {.lex_state = 60, .external_lex_state = 2}, - [458] = {.lex_state = 60, .external_lex_state = 2}, - [459] = {.lex_state = 60, .external_lex_state = 2}, - [460] = {.lex_state = 60, .external_lex_state = 2}, - [461] = {.lex_state = 60, .external_lex_state = 2}, - [462] = {.lex_state = 60, .external_lex_state = 2}, - [463] = {.lex_state = 60, .external_lex_state = 2}, - [464] = {.lex_state = 60, .external_lex_state = 2}, - [465] = {.lex_state = 60, .external_lex_state = 2}, - [466] = {.lex_state = 60, .external_lex_state = 2}, - [467] = {.lex_state = 60, .external_lex_state = 2}, - [468] = {.lex_state = 60, .external_lex_state = 2}, - [469] = {.lex_state = 60, .external_lex_state = 2}, - [470] = {.lex_state = 60, .external_lex_state = 2}, - [471] = {.lex_state = 60, .external_lex_state = 2}, - [472] = {.lex_state = 60, .external_lex_state = 2}, - [473] = {.lex_state = 60, .external_lex_state = 2}, - [474] = {.lex_state = 60, .external_lex_state = 2}, - [475] = {.lex_state = 60, .external_lex_state = 2}, - [476] = {.lex_state = 60, .external_lex_state = 2}, - [477] = {.lex_state = 60, .external_lex_state = 2}, - [478] = {.lex_state = 60, .external_lex_state = 2}, - [479] = {.lex_state = 60, .external_lex_state = 2}, - [480] = {.lex_state = 60, .external_lex_state = 2}, - [481] = {.lex_state = 60, .external_lex_state = 2}, - [482] = {.lex_state = 60, .external_lex_state = 2}, - [483] = {.lex_state = 62, .external_lex_state = 2}, - [484] = {.lex_state = 61, .external_lex_state = 2}, - [485] = {.lex_state = 60, .external_lex_state = 2}, - [486] = {.lex_state = 60, .external_lex_state = 2}, - [487] = {.lex_state = 60, .external_lex_state = 2}, - [488] = {.lex_state = 60, .external_lex_state = 2}, - [489] = {.lex_state = 60, .external_lex_state = 2}, - [490] = {.lex_state = 60, .external_lex_state = 2}, - [491] = {.lex_state = 60, .external_lex_state = 2}, - [492] = {.lex_state = 60, .external_lex_state = 2}, - [493] = {.lex_state = 60, .external_lex_state = 2}, - [494] = {.lex_state = 60, .external_lex_state = 2}, - [495] = {.lex_state = 60, .external_lex_state = 2}, - [496] = {.lex_state = 60, .external_lex_state = 2}, - [497] = {.lex_state = 60, .external_lex_state = 2}, - [498] = {.lex_state = 60, .external_lex_state = 2}, - [499] = {.lex_state = 60, .external_lex_state = 2}, - [500] = {.lex_state = 60, .external_lex_state = 2}, - [501] = {.lex_state = 60, .external_lex_state = 2}, - [502] = {.lex_state = 60, .external_lex_state = 2}, - [503] = {.lex_state = 60, .external_lex_state = 2}, - [504] = {.lex_state = 60, .external_lex_state = 2}, - [505] = {.lex_state = 60, .external_lex_state = 2}, - [506] = {.lex_state = 15, .external_lex_state = 9}, - [507] = {.lex_state = 60, .external_lex_state = 2}, - [508] = {.lex_state = 60, .external_lex_state = 2}, - [509] = {.lex_state = 60, .external_lex_state = 2}, - [510] = {.lex_state = 60, .external_lex_state = 2}, - [511] = {.lex_state = 60, .external_lex_state = 2}, - [512] = {.lex_state = 15, .external_lex_state = 9}, - [513] = {.lex_state = 60, .external_lex_state = 2}, - [514] = {.lex_state = 60, .external_lex_state = 2}, - [515] = {.lex_state = 60, .external_lex_state = 2}, - [516] = {.lex_state = 60, .external_lex_state = 2}, - [517] = {.lex_state = 60, .external_lex_state = 2}, - [518] = {.lex_state = 60, .external_lex_state = 2}, - [519] = {.lex_state = 60, .external_lex_state = 2}, - [520] = {.lex_state = 60, .external_lex_state = 2}, - [521] = {.lex_state = 60, .external_lex_state = 2}, - [522] = {.lex_state = 60, .external_lex_state = 2}, - [523] = {.lex_state = 60, .external_lex_state = 2}, - [524] = {.lex_state = 60, .external_lex_state = 2}, - [525] = {.lex_state = 60, .external_lex_state = 2}, - [526] = {.lex_state = 60, .external_lex_state = 2}, - [527] = {.lex_state = 60, .external_lex_state = 2}, - [528] = {.lex_state = 60, .external_lex_state = 2}, - [529] = {.lex_state = 60, .external_lex_state = 2}, - [530] = {.lex_state = 60, .external_lex_state = 2}, - [531] = {.lex_state = 60, .external_lex_state = 2}, - [532] = {.lex_state = 60, .external_lex_state = 3}, - [533] = {.lex_state = 60, .external_lex_state = 2}, - [534] = {.lex_state = 60, .external_lex_state = 2}, - [535] = {.lex_state = 60, .external_lex_state = 2}, - [536] = {.lex_state = 60, .external_lex_state = 2}, - [537] = {.lex_state = 60, .external_lex_state = 2}, - [538] = {.lex_state = 61, .external_lex_state = 3}, - [539] = {.lex_state = 62, .external_lex_state = 3}, - [540] = {.lex_state = 60, .external_lex_state = 2}, - [541] = {.lex_state = 60, .external_lex_state = 2}, - [542] = {.lex_state = 15, .external_lex_state = 9}, - [543] = {.lex_state = 60, .external_lex_state = 2}, - [544] = {.lex_state = 60, .external_lex_state = 2}, - [545] = {.lex_state = 60, .external_lex_state = 2}, - [546] = {.lex_state = 60, .external_lex_state = 2}, - [547] = {.lex_state = 60, .external_lex_state = 2}, - [548] = {.lex_state = 60, .external_lex_state = 2}, - [549] = {.lex_state = 60, .external_lex_state = 2}, - [550] = {.lex_state = 60, .external_lex_state = 3}, - [551] = {.lex_state = 60, .external_lex_state = 2}, - [552] = {.lex_state = 60, .external_lex_state = 2}, - [553] = {.lex_state = 60, .external_lex_state = 3}, - [554] = {.lex_state = 60, .external_lex_state = 2}, - [555] = {.lex_state = 60, .external_lex_state = 2}, - [556] = {.lex_state = 60, .external_lex_state = 2}, - [557] = {.lex_state = 60, .external_lex_state = 2}, - [558] = {.lex_state = 60, .external_lex_state = 2}, - [559] = {.lex_state = 60, .external_lex_state = 2}, - [560] = {.lex_state = 60, .external_lex_state = 2}, - [561] = {.lex_state = 60, .external_lex_state = 2}, - [562] = {.lex_state = 60, .external_lex_state = 2}, - [563] = {.lex_state = 60, .external_lex_state = 2}, - [564] = {.lex_state = 60, .external_lex_state = 2}, - [565] = {.lex_state = 60, .external_lex_state = 2}, - [566] = {.lex_state = 60, .external_lex_state = 2}, - [567] = {.lex_state = 60, .external_lex_state = 2}, - [568] = {.lex_state = 60, .external_lex_state = 2}, - [569] = {.lex_state = 60, .external_lex_state = 2}, - [570] = {.lex_state = 60, .external_lex_state = 2}, - [571] = {.lex_state = 60, .external_lex_state = 2}, - [572] = {.lex_state = 60, .external_lex_state = 3}, - [573] = {.lex_state = 60, .external_lex_state = 2}, - [574] = {.lex_state = 60, .external_lex_state = 3}, - [575] = {.lex_state = 60, .external_lex_state = 2}, - [576] = {.lex_state = 15, .external_lex_state = 10}, - [577] = {.lex_state = 15, .external_lex_state = 10}, - [578] = {.lex_state = 15, .external_lex_state = 10}, - [579] = {.lex_state = 15, .external_lex_state = 10}, - [580] = {.lex_state = 15, .external_lex_state = 10}, - [581] = {.lex_state = 15, .external_lex_state = 10}, - [582] = {.lex_state = 60, .external_lex_state = 2}, - [583] = {.lex_state = 60, .external_lex_state = 3}, - [584] = {.lex_state = 60, .external_lex_state = 3}, - [585] = {.lex_state = 15, .external_lex_state = 10}, - [586] = {.lex_state = 60, .external_lex_state = 2}, - [587] = {.lex_state = 60, .external_lex_state = 3}, - [588] = {.lex_state = 60, .external_lex_state = 3}, - [589] = {.lex_state = 60, .external_lex_state = 2}, - [590] = {.lex_state = 60, .external_lex_state = 3}, - [591] = {.lex_state = 60, .external_lex_state = 2}, - [592] = {.lex_state = 62, .external_lex_state = 2}, - [593] = {.lex_state = 60, .external_lex_state = 2}, - [594] = {.lex_state = 60, .external_lex_state = 3}, - [595] = {.lex_state = 60, .external_lex_state = 3}, - [596] = {.lex_state = 62, .external_lex_state = 3}, - [597] = {.lex_state = 62, .external_lex_state = 3}, - [598] = {.lex_state = 62, .external_lex_state = 3}, - [599] = {.lex_state = 61, .external_lex_state = 3}, - [600] = {.lex_state = 61, .external_lex_state = 2}, - [601] = {.lex_state = 62, .external_lex_state = 3}, - [602] = {.lex_state = 61, .external_lex_state = 3}, - [603] = {.lex_state = 62, .external_lex_state = 3}, - [604] = {.lex_state = 61, .external_lex_state = 3}, - [605] = {.lex_state = 62, .external_lex_state = 3}, - [606] = {.lex_state = 61, .external_lex_state = 3}, - [607] = {.lex_state = 61, .external_lex_state = 2}, - [608] = {.lex_state = 61, .external_lex_state = 2}, - [609] = {.lex_state = 62, .external_lex_state = 2}, - [610] = {.lex_state = 60, .external_lex_state = 3}, - [611] = {.lex_state = 60, .external_lex_state = 2}, - [612] = {.lex_state = 60, .external_lex_state = 3}, - [613] = {.lex_state = 62, .external_lex_state = 3}, - [614] = {.lex_state = 61, .external_lex_state = 3}, - [615] = {.lex_state = 61, .external_lex_state = 2}, - [616] = {.lex_state = 62, .external_lex_state = 2}, - [617] = {.lex_state = 60, .external_lex_state = 2}, - [618] = {.lex_state = 62, .external_lex_state = 2}, - [619] = {.lex_state = 62, .external_lex_state = 2}, - [620] = {.lex_state = 60, .external_lex_state = 3}, - [621] = {.lex_state = 60, .external_lex_state = 3}, - [622] = {.lex_state = 61, .external_lex_state = 2}, - [623] = {.lex_state = 61, .external_lex_state = 3}, - [624] = {.lex_state = 62, .external_lex_state = 2}, - [625] = {.lex_state = 61, .external_lex_state = 3}, - [626] = {.lex_state = 61, .external_lex_state = 3}, - [627] = {.lex_state = 62, .external_lex_state = 3}, - [628] = {.lex_state = 62, .external_lex_state = 2}, - [629] = {.lex_state = 62, .external_lex_state = 3}, - [630] = {.lex_state = 62, .external_lex_state = 3}, - [631] = {.lex_state = 60, .external_lex_state = 2}, - [632] = {.lex_state = 60, .external_lex_state = 2}, - [633] = {.lex_state = 60, .external_lex_state = 2}, - [634] = {.lex_state = 60, .external_lex_state = 2}, - [635] = {.lex_state = 60, .external_lex_state = 2}, - [636] = {.lex_state = 61, .external_lex_state = 2}, - [637] = {.lex_state = 61, .external_lex_state = 3}, - [638] = {.lex_state = 60, .external_lex_state = 3}, - [639] = {.lex_state = 62, .external_lex_state = 2}, - [640] = {.lex_state = 62, .external_lex_state = 3}, - [641] = {.lex_state = 60, .external_lex_state = 2}, - [642] = {.lex_state = 60, .external_lex_state = 3}, - [643] = {.lex_state = 60, .external_lex_state = 3}, - [644] = {.lex_state = 62, .external_lex_state = 2}, - [645] = {.lex_state = 62, .external_lex_state = 2}, - [646] = {.lex_state = 61, .external_lex_state = 2}, - [647] = {.lex_state = 62, .external_lex_state = 2}, - [648] = {.lex_state = 61, .external_lex_state = 2}, - [649] = {.lex_state = 61, .external_lex_state = 2}, - [650] = {.lex_state = 60, .external_lex_state = 2}, - [651] = {.lex_state = 60, .external_lex_state = 2}, - [652] = {.lex_state = 60, .external_lex_state = 3}, - [653] = {.lex_state = 60, .external_lex_state = 3}, - [654] = {.lex_state = 60, .external_lex_state = 3}, - [655] = {.lex_state = 60, .external_lex_state = 3}, - [656] = {.lex_state = 60, .external_lex_state = 3}, - [657] = {.lex_state = 60, .external_lex_state = 3}, - [658] = {.lex_state = 60, .external_lex_state = 2}, - [659] = {.lex_state = 60, .external_lex_state = 3}, - [660] = {.lex_state = 60, .external_lex_state = 2}, - [661] = {.lex_state = 60, .external_lex_state = 3}, - [662] = {.lex_state = 60, .external_lex_state = 3}, - [663] = {.lex_state = 60, .external_lex_state = 3}, - [664] = {.lex_state = 60, .external_lex_state = 3}, - [665] = {.lex_state = 60, .external_lex_state = 2}, - [666] = {.lex_state = 60, .external_lex_state = 2}, - [667] = {.lex_state = 60, .external_lex_state = 2}, - [668] = {.lex_state = 60, .external_lex_state = 2}, - [669] = {.lex_state = 60, .external_lex_state = 2}, - [670] = {.lex_state = 60, .external_lex_state = 2}, - [671] = {.lex_state = 60, .external_lex_state = 2}, - [672] = {.lex_state = 60, .external_lex_state = 3}, - [673] = {.lex_state = 60, .external_lex_state = 3}, - [674] = {.lex_state = 60, .external_lex_state = 2}, - [675] = {.lex_state = 60, .external_lex_state = 2}, - [676] = {.lex_state = 60, .external_lex_state = 2}, - [677] = {.lex_state = 60, .external_lex_state = 2}, - [678] = {.lex_state = 60, .external_lex_state = 2}, - [679] = {.lex_state = 60, .external_lex_state = 2}, - [680] = {.lex_state = 60, .external_lex_state = 3}, - [681] = {.lex_state = 60, .external_lex_state = 2}, - [682] = {.lex_state = 60, .external_lex_state = 2}, - [683] = {.lex_state = 60, .external_lex_state = 3}, - [684] = {.lex_state = 60, .external_lex_state = 2}, - [685] = {.lex_state = 60, .external_lex_state = 2}, - [686] = {.lex_state = 60, .external_lex_state = 2}, - [687] = {.lex_state = 60, .external_lex_state = 2}, - [688] = {.lex_state = 60, .external_lex_state = 3}, - [689] = {.lex_state = 60, .external_lex_state = 2}, - [690] = {.lex_state = 60, .external_lex_state = 2}, - [691] = {.lex_state = 60, .external_lex_state = 2}, - [692] = {.lex_state = 60, .external_lex_state = 2}, - [693] = {.lex_state = 60, .external_lex_state = 3}, - [694] = {.lex_state = 60, .external_lex_state = 2}, - [695] = {.lex_state = 60, .external_lex_state = 2}, - [696] = {.lex_state = 60, .external_lex_state = 3}, - [697] = {.lex_state = 60, .external_lex_state = 2}, - [698] = {.lex_state = 60, .external_lex_state = 3}, - [699] = {.lex_state = 60, .external_lex_state = 3}, - [700] = {.lex_state = 60, .external_lex_state = 3}, - [701] = {.lex_state = 60, .external_lex_state = 2}, - [702] = {.lex_state = 60, .external_lex_state = 2}, - [703] = {.lex_state = 60, .external_lex_state = 2}, - [704] = {.lex_state = 60, .external_lex_state = 2}, - [705] = {.lex_state = 60, .external_lex_state = 2}, - [706] = {.lex_state = 60, .external_lex_state = 3}, - [707] = {.lex_state = 60, .external_lex_state = 2}, - [708] = {.lex_state = 60, .external_lex_state = 2}, - [709] = {.lex_state = 60, .external_lex_state = 2}, - [710] = {.lex_state = 60, .external_lex_state = 2}, - [711] = {.lex_state = 60, .external_lex_state = 3}, - [712] = {.lex_state = 60, .external_lex_state = 2}, - [713] = {.lex_state = 60, .external_lex_state = 2}, - [714] = {.lex_state = 60, .external_lex_state = 3}, - [715] = {.lex_state = 60, .external_lex_state = 2}, - [716] = {.lex_state = 60, .external_lex_state = 2}, - [717] = {.lex_state = 60, .external_lex_state = 3}, - [718] = {.lex_state = 60, .external_lex_state = 3}, - [719] = {.lex_state = 60, .external_lex_state = 3}, - [720] = {.lex_state = 60, .external_lex_state = 3}, - [721] = {.lex_state = 60, .external_lex_state = 3}, - [722] = {.lex_state = 60, .external_lex_state = 3}, - [723] = {.lex_state = 60, .external_lex_state = 3}, - [724] = {.lex_state = 60, .external_lex_state = 3}, - [725] = {.lex_state = 60, .external_lex_state = 3}, - [726] = {.lex_state = 60, .external_lex_state = 3}, - [727] = {.lex_state = 60, .external_lex_state = 3}, - [728] = {.lex_state = 60, .external_lex_state = 3}, - [729] = {.lex_state = 60, .external_lex_state = 3}, - [730] = {.lex_state = 60, .external_lex_state = 3}, - [731] = {.lex_state = 60, .external_lex_state = 3}, - [732] = {.lex_state = 60, .external_lex_state = 3}, - [733] = {.lex_state = 60, .external_lex_state = 3}, - [734] = {.lex_state = 60, .external_lex_state = 3}, - [735] = {.lex_state = 60, .external_lex_state = 3}, - [736] = {.lex_state = 60, .external_lex_state = 3}, - [737] = {.lex_state = 60, .external_lex_state = 3}, - [738] = {.lex_state = 60, .external_lex_state = 3}, - [739] = {.lex_state = 60, .external_lex_state = 2}, - [740] = {.lex_state = 60, .external_lex_state = 2}, - [741] = {.lex_state = 60, .external_lex_state = 2}, - [742] = {.lex_state = 60, .external_lex_state = 3}, - [743] = {.lex_state = 60, .external_lex_state = 3}, - [744] = {.lex_state = 60, .external_lex_state = 2}, - [745] = {.lex_state = 60, .external_lex_state = 2}, - [746] = {.lex_state = 60, .external_lex_state = 3}, - [747] = {.lex_state = 60, .external_lex_state = 2}, - [748] = {.lex_state = 60, .external_lex_state = 3}, - [749] = {.lex_state = 60, .external_lex_state = 3}, - [750] = {.lex_state = 60, .external_lex_state = 2}, - [751] = {.lex_state = 60, .external_lex_state = 3}, - [752] = {.lex_state = 60, .external_lex_state = 7}, - [753] = {.lex_state = 60, .external_lex_state = 3}, - [754] = {.lex_state = 60, .external_lex_state = 3}, - [755] = {.lex_state = 60, .external_lex_state = 3}, - [756] = {.lex_state = 60, .external_lex_state = 3}, - [757] = {.lex_state = 60, .external_lex_state = 2}, - [758] = {.lex_state = 60, .external_lex_state = 3}, - [759] = {.lex_state = 60, .external_lex_state = 3}, - [760] = {.lex_state = 60, .external_lex_state = 2}, - [761] = {.lex_state = 60, .external_lex_state = 3}, - [762] = {.lex_state = 60, .external_lex_state = 3}, - [763] = {.lex_state = 60, .external_lex_state = 2}, - [764] = {.lex_state = 60, .external_lex_state = 2}, - [765] = {.lex_state = 60, .external_lex_state = 2}, - [766] = {.lex_state = 60, .external_lex_state = 2}, - [767] = {.lex_state = 60, .external_lex_state = 2}, - [768] = {.lex_state = 60, .external_lex_state = 2}, - [769] = {.lex_state = 60, .external_lex_state = 2}, - [770] = {.lex_state = 60, .external_lex_state = 3}, - [771] = {.lex_state = 60, .external_lex_state = 2}, - [772] = {.lex_state = 60, .external_lex_state = 3}, - [773] = {.lex_state = 60, .external_lex_state = 3}, - [774] = {.lex_state = 60, .external_lex_state = 2}, - [775] = {.lex_state = 60, .external_lex_state = 2}, - [776] = {.lex_state = 60, .external_lex_state = 3}, - [777] = {.lex_state = 60, .external_lex_state = 2}, - [778] = {.lex_state = 60, .external_lex_state = 2}, - [779] = {.lex_state = 60, .external_lex_state = 2}, - [780] = {.lex_state = 60, .external_lex_state = 2}, - [781] = {.lex_state = 60, .external_lex_state = 3}, - [782] = {.lex_state = 60, .external_lex_state = 2}, - [783] = {.lex_state = 60, .external_lex_state = 2}, - [784] = {.lex_state = 60, .external_lex_state = 7}, - [785] = {.lex_state = 60, .external_lex_state = 3}, - [786] = {.lex_state = 60, .external_lex_state = 3}, - [787] = {.lex_state = 60, .external_lex_state = 3}, - [788] = {.lex_state = 60, .external_lex_state = 3}, - [789] = {.lex_state = 60, .external_lex_state = 3}, - [790] = {.lex_state = 60, .external_lex_state = 3}, - [791] = {.lex_state = 60, .external_lex_state = 3}, - [792] = {.lex_state = 60, .external_lex_state = 3}, - [793] = {.lex_state = 60, .external_lex_state = 2}, - [794] = {.lex_state = 60, .external_lex_state = 2}, - [795] = {.lex_state = 60, .external_lex_state = 3}, - [796] = {.lex_state = 60, .external_lex_state = 2}, - [797] = {.lex_state = 60, .external_lex_state = 3}, - [798] = {.lex_state = 60, .external_lex_state = 2}, - [799] = {.lex_state = 60, .external_lex_state = 3}, - [800] = {.lex_state = 60, .external_lex_state = 3}, - [801] = {.lex_state = 60, .external_lex_state = 3}, - [802] = {.lex_state = 60, .external_lex_state = 3}, - [803] = {.lex_state = 60, .external_lex_state = 2}, - [804] = {.lex_state = 60, .external_lex_state = 2}, - [805] = {.lex_state = 60, .external_lex_state = 2}, - [806] = {.lex_state = 60, .external_lex_state = 3}, - [807] = {.lex_state = 60, .external_lex_state = 2}, - [808] = {.lex_state = 60, .external_lex_state = 2}, - [809] = {.lex_state = 60, .external_lex_state = 2}, - [810] = {.lex_state = 60, .external_lex_state = 2}, - [811] = {.lex_state = 60, .external_lex_state = 2}, - [812] = {.lex_state = 60, .external_lex_state = 2}, - [813] = {.lex_state = 60, .external_lex_state = 3}, - [814] = {.lex_state = 60, .external_lex_state = 8}, - [815] = {.lex_state = 60, .external_lex_state = 2}, - [816] = {.lex_state = 60, .external_lex_state = 2}, - [817] = {.lex_state = 60, .external_lex_state = 2}, - [818] = {.lex_state = 60, .external_lex_state = 2}, - [819] = {.lex_state = 60, .external_lex_state = 2}, - [820] = {.lex_state = 60, .external_lex_state = 8}, - [821] = {.lex_state = 60, .external_lex_state = 7}, - [822] = {.lex_state = 60, .external_lex_state = 2}, - [823] = {.lex_state = 60, .external_lex_state = 2}, - [824] = {.lex_state = 60, .external_lex_state = 7}, - [825] = {.lex_state = 60, .external_lex_state = 2}, - [826] = {.lex_state = 60, .external_lex_state = 2}, - [827] = {.lex_state = 60, .external_lex_state = 2}, - [828] = {.lex_state = 60, .external_lex_state = 2}, - [829] = {.lex_state = 60, .external_lex_state = 2}, - [830] = {.lex_state = 60, .external_lex_state = 2}, - [831] = {.lex_state = 15, .external_lex_state = 6}, - [832] = {.lex_state = 15, .external_lex_state = 6}, - [833] = {.lex_state = 15, .external_lex_state = 6}, - [834] = {.lex_state = 14, .external_lex_state = 4}, - [835] = {.lex_state = 14, .external_lex_state = 9}, - [836] = {.lex_state = 15, .external_lex_state = 11}, - [837] = {.lex_state = 14, .external_lex_state = 4}, - [838] = {.lex_state = 60, .external_lex_state = 7}, - [839] = {.lex_state = 15, .external_lex_state = 11}, - [840] = {.lex_state = 14, .external_lex_state = 4}, - [841] = {.lex_state = 15, .external_lex_state = 6}, - [842] = {.lex_state = 16, .external_lex_state = 2}, - [843] = {.lex_state = 15, .external_lex_state = 6}, - [844] = {.lex_state = 15, .external_lex_state = 6}, - [845] = {.lex_state = 15, .external_lex_state = 2}, - [846] = {.lex_state = 14, .external_lex_state = 9}, - [847] = {.lex_state = 15, .external_lex_state = 11}, - [848] = {.lex_state = 15, .external_lex_state = 11}, - [849] = {.lex_state = 14, .external_lex_state = 7}, - [850] = {.lex_state = 15, .external_lex_state = 11}, - [851] = {.lex_state = 15, .external_lex_state = 11}, - [852] = {.lex_state = 14, .external_lex_state = 9}, - [853] = {.lex_state = 15, .external_lex_state = 11}, - [854] = {.lex_state = 14, .external_lex_state = 9}, - [855] = {.lex_state = 14, .external_lex_state = 9}, - [856] = {.lex_state = 14, .external_lex_state = 9}, - [857] = {.lex_state = 14, .external_lex_state = 9}, - [858] = {.lex_state = 15, .external_lex_state = 11}, - [859] = {.lex_state = 15, .external_lex_state = 11}, - [860] = {.lex_state = 14, .external_lex_state = 9}, - [861] = {.lex_state = 14, .external_lex_state = 9}, - [862] = {.lex_state = 14, .external_lex_state = 9}, - [863] = {.lex_state = 14, .external_lex_state = 12}, - [864] = {.lex_state = 14, .external_lex_state = 9}, - [865] = {.lex_state = 15, .external_lex_state = 11}, - [866] = {.lex_state = 14, .external_lex_state = 7}, - [867] = {.lex_state = 15, .external_lex_state = 11}, - [868] = {.lex_state = 60, .external_lex_state = 2}, - [869] = {.lex_state = 60, .external_lex_state = 2}, - [870] = {.lex_state = 15, .external_lex_state = 11}, - [871] = {.lex_state = 60, .external_lex_state = 2}, - [872] = {.lex_state = 15, .external_lex_state = 11}, - [873] = {.lex_state = 14, .external_lex_state = 9}, - [874] = {.lex_state = 15, .external_lex_state = 10}, - [875] = {.lex_state = 15, .external_lex_state = 2}, - [876] = {.lex_state = 15, .external_lex_state = 11}, - [877] = {.lex_state = 15, .external_lex_state = 11}, - [878] = {.lex_state = 60, .external_lex_state = 2}, - [879] = {.lex_state = 15, .external_lex_state = 2}, - [880] = {.lex_state = 60, .external_lex_state = 2}, - [881] = {.lex_state = 14, .external_lex_state = 7}, - [882] = {.lex_state = 60, .external_lex_state = 2}, - [883] = {.lex_state = 14, .external_lex_state = 13}, - [884] = {.lex_state = 14, .external_lex_state = 8}, - [885] = {.lex_state = 60, .external_lex_state = 2}, - [886] = {.lex_state = 15, .external_lex_state = 11}, - [887] = {.lex_state = 15, .external_lex_state = 11}, - [888] = {.lex_state = 60, .external_lex_state = 2}, - [889] = {.lex_state = 14, .external_lex_state = 8}, - [890] = {.lex_state = 15, .external_lex_state = 11}, - [891] = {.lex_state = 15, .external_lex_state = 11}, - [892] = {.lex_state = 15, .external_lex_state = 11}, - [893] = {.lex_state = 15, .external_lex_state = 11}, - [894] = {.lex_state = 15, .external_lex_state = 11}, - [895] = {.lex_state = 15, .external_lex_state = 11}, - [896] = {.lex_state = 14, .external_lex_state = 8}, - [897] = {.lex_state = 15, .external_lex_state = 11}, - [898] = {.lex_state = 14, .external_lex_state = 12}, - [899] = {.lex_state = 15, .external_lex_state = 10}, - [900] = {.lex_state = 60, .external_lex_state = 2}, - [901] = {.lex_state = 60, .external_lex_state = 2}, - [902] = {.lex_state = 14, .external_lex_state = 12}, - [903] = {.lex_state = 14, .external_lex_state = 12}, - [904] = {.lex_state = 15, .external_lex_state = 8}, - [905] = {.lex_state = 60, .external_lex_state = 2}, - [906] = {.lex_state = 14, .external_lex_state = 11}, - [907] = {.lex_state = 14, .external_lex_state = 11}, - [908] = {.lex_state = 60, .external_lex_state = 2}, - [909] = {.lex_state = 60, .external_lex_state = 2}, - [910] = {.lex_state = 60, .external_lex_state = 2}, - [911] = {.lex_state = 60, .external_lex_state = 2}, - [912] = {.lex_state = 14, .external_lex_state = 12}, - [913] = {.lex_state = 60, .external_lex_state = 2}, - [914] = {.lex_state = 14, .external_lex_state = 7}, - [915] = {.lex_state = 15, .external_lex_state = 6}, - [916] = {.lex_state = 14, .external_lex_state = 13}, - [917] = {.lex_state = 60, .external_lex_state = 2}, - [918] = {.lex_state = 60, .external_lex_state = 2}, - [919] = {.lex_state = 60, .external_lex_state = 2}, - [920] = {.lex_state = 60, .external_lex_state = 2}, - [921] = {.lex_state = 60, .external_lex_state = 2}, - [922] = {.lex_state = 15, .external_lex_state = 10}, - [923] = {.lex_state = 15, .external_lex_state = 10}, - [924] = {.lex_state = 60, .external_lex_state = 2}, - [925] = {.lex_state = 60, .external_lex_state = 2}, - [926] = {.lex_state = 60, .external_lex_state = 2}, - [927] = {.lex_state = 60, .external_lex_state = 2}, - [928] = {.lex_state = 60, .external_lex_state = 2}, - [929] = {.lex_state = 60, .external_lex_state = 2}, - [930] = {.lex_state = 60, .external_lex_state = 2}, - [931] = {.lex_state = 60, .external_lex_state = 2}, - [932] = {.lex_state = 14, .external_lex_state = 4}, - [933] = {.lex_state = 60, .external_lex_state = 2}, - [934] = {.lex_state = 15, .external_lex_state = 8}, - [935] = {.lex_state = 60, .external_lex_state = 2}, - [936] = {.lex_state = 60, .external_lex_state = 2}, - [937] = {.lex_state = 60, .external_lex_state = 2}, - [938] = {.lex_state = 60, .external_lex_state = 2}, - [939] = {.lex_state = 60, .external_lex_state = 2}, - [940] = {.lex_state = 60, .external_lex_state = 2}, - [941] = {.lex_state = 60, .external_lex_state = 2}, - [942] = {.lex_state = 60, .external_lex_state = 2}, - [943] = {.lex_state = 60, .external_lex_state = 2}, - [944] = {.lex_state = 60, .external_lex_state = 2}, - [945] = {.lex_state = 60, .external_lex_state = 2}, - [946] = {.lex_state = 60, .external_lex_state = 2}, - [947] = {.lex_state = 60, .external_lex_state = 2}, - [948] = {.lex_state = 14, .external_lex_state = 9}, - [949] = {.lex_state = 14, .external_lex_state = 7}, - [950] = {.lex_state = 15, .external_lex_state = 6}, - [951] = {.lex_state = 60, .external_lex_state = 2}, - [952] = {.lex_state = 60, .external_lex_state = 2}, - [953] = {.lex_state = 60, .external_lex_state = 2}, - [954] = {.lex_state = 60, .external_lex_state = 2}, - [955] = {.lex_state = 60, .external_lex_state = 2}, - [956] = {.lex_state = 14, .external_lex_state = 9}, - [957] = {.lex_state = 60, .external_lex_state = 2}, - [958] = {.lex_state = 60, .external_lex_state = 2}, - [959] = {.lex_state = 15, .external_lex_state = 10}, - [960] = {.lex_state = 15, .external_lex_state = 10}, - [961] = {.lex_state = 60, .external_lex_state = 2}, - [962] = {.lex_state = 60, .external_lex_state = 2}, - [963] = {.lex_state = 60, .external_lex_state = 2}, - [964] = {.lex_state = 60, .external_lex_state = 2}, - [965] = {.lex_state = 15, .external_lex_state = 10}, - [966] = {.lex_state = 60, .external_lex_state = 2}, - [967] = {.lex_state = 15, .external_lex_state = 10}, - [968] = {.lex_state = 60, .external_lex_state = 2}, - [969] = {.lex_state = 60, .external_lex_state = 2}, - [970] = {.lex_state = 15, .external_lex_state = 10}, - [971] = {.lex_state = 15, .external_lex_state = 10}, - [972] = {.lex_state = 15, .external_lex_state = 10}, - [973] = {.lex_state = 60, .external_lex_state = 2}, - [974] = {.lex_state = 15, .external_lex_state = 10}, - [975] = {.lex_state = 60, .external_lex_state = 2}, - [976] = {.lex_state = 60, .external_lex_state = 2}, - [977] = {.lex_state = 60, .external_lex_state = 2}, - [978] = {.lex_state = 60, .external_lex_state = 2}, - [979] = {.lex_state = 60, .external_lex_state = 2}, - [980] = {.lex_state = 60, .external_lex_state = 2}, - [981] = {.lex_state = 60, .external_lex_state = 2}, - [982] = {.lex_state = 60, .external_lex_state = 2}, - [983] = {.lex_state = 60, .external_lex_state = 2}, - [984] = {.lex_state = 60, .external_lex_state = 2}, - [985] = {.lex_state = 14, .external_lex_state = 12}, - [986] = {.lex_state = 14, .external_lex_state = 12}, - [987] = {.lex_state = 14, .external_lex_state = 12}, - [988] = {.lex_state = 60, .external_lex_state = 2}, - [989] = {.lex_state = 15, .external_lex_state = 8}, - [990] = {.lex_state = 15, .external_lex_state = 6}, - [991] = {.lex_state = 60, .external_lex_state = 2}, - [992] = {.lex_state = 15, .external_lex_state = 13}, - [993] = {.lex_state = 60, .external_lex_state = 2}, - [994] = {.lex_state = 60, .external_lex_state = 2}, - [995] = {.lex_state = 14, .external_lex_state = 12}, - [996] = {.lex_state = 14, .external_lex_state = 12}, - [997] = {.lex_state = 14, .external_lex_state = 12}, - [998] = {.lex_state = 14, .external_lex_state = 12}, - [999] = {.lex_state = 60, .external_lex_state = 2}, - [1000] = {.lex_state = 60, .external_lex_state = 2}, - [1001] = {.lex_state = 60, .external_lex_state = 2}, - [1002] = {.lex_state = 14, .external_lex_state = 12}, - [1003] = {.lex_state = 60, .external_lex_state = 2}, - [1004] = {.lex_state = 60, .external_lex_state = 2}, - [1005] = {.lex_state = 60, .external_lex_state = 2}, - [1006] = {.lex_state = 60, .external_lex_state = 2}, - [1007] = {.lex_state = 14, .external_lex_state = 12}, - [1008] = {.lex_state = 14, .external_lex_state = 12}, - [1009] = {.lex_state = 60, .external_lex_state = 2}, - [1010] = {.lex_state = 60, .external_lex_state = 2}, - [1011] = {.lex_state = 14, .external_lex_state = 13}, - [1012] = {.lex_state = 14, .external_lex_state = 13}, - [1013] = {.lex_state = 60, .external_lex_state = 2}, - [1014] = {.lex_state = 14, .external_lex_state = 13}, - [1015] = {.lex_state = 14, .external_lex_state = 13}, - [1016] = {.lex_state = 60, .external_lex_state = 2}, - [1017] = {.lex_state = 14, .external_lex_state = 4}, - [1018] = {.lex_state = 14, .external_lex_state = 7}, - [1019] = {.lex_state = 60, .external_lex_state = 2}, - [1020] = {.lex_state = 60, .external_lex_state = 2}, - [1021] = {.lex_state = 60, .external_lex_state = 2}, - [1022] = {.lex_state = 60, .external_lex_state = 2}, - [1023] = {.lex_state = 60, .external_lex_state = 2}, - [1024] = {.lex_state = 14, .external_lex_state = 13}, - [1025] = {.lex_state = 14, .external_lex_state = 13}, - [1026] = {.lex_state = 60, .external_lex_state = 2}, - [1027] = {.lex_state = 14, .external_lex_state = 13}, - [1028] = {.lex_state = 14, .external_lex_state = 13}, - [1029] = {.lex_state = 60, .external_lex_state = 2}, - [1030] = {.lex_state = 60, .external_lex_state = 2}, - [1031] = {.lex_state = 60, .external_lex_state = 2}, - [1032] = {.lex_state = 60, .external_lex_state = 2}, - [1033] = {.lex_state = 60, .external_lex_state = 2}, - [1034] = {.lex_state = 60, .external_lex_state = 2}, - [1035] = {.lex_state = 60, .external_lex_state = 2}, - [1036] = {.lex_state = 60, .external_lex_state = 2}, - [1037] = {.lex_state = 15, .external_lex_state = 6}, - [1038] = {.lex_state = 60, .external_lex_state = 2}, - [1039] = {.lex_state = 60, .external_lex_state = 2}, - [1040] = {.lex_state = 60, .external_lex_state = 2}, - [1041] = {.lex_state = 14, .external_lex_state = 11}, - [1042] = {.lex_state = 14, .external_lex_state = 11}, - [1043] = {.lex_state = 60, .external_lex_state = 2}, - [1044] = {.lex_state = 14, .external_lex_state = 13}, - [1045] = {.lex_state = 14, .external_lex_state = 13}, - [1046] = {.lex_state = 14, .external_lex_state = 9}, - [1047] = {.lex_state = 15, .external_lex_state = 11}, - [1048] = {.lex_state = 14, .external_lex_state = 10}, - [1049] = {.lex_state = 15, .external_lex_state = 11}, - [1050] = {.lex_state = 15, .external_lex_state = 11}, - [1051] = {.lex_state = 14, .external_lex_state = 9}, - [1052] = {.lex_state = 15, .external_lex_state = 11}, - [1053] = {.lex_state = 14, .external_lex_state = 9}, - [1054] = {.lex_state = 14, .external_lex_state = 9}, - [1055] = {.lex_state = 15, .external_lex_state = 11}, - [1056] = {.lex_state = 15, .external_lex_state = 11}, - [1057] = {.lex_state = 14, .external_lex_state = 10}, - [1058] = {.lex_state = 14, .external_lex_state = 12}, - [1059] = {.lex_state = 15, .external_lex_state = 11}, - [1060] = {.lex_state = 14, .external_lex_state = 12}, - [1061] = {.lex_state = 14, .external_lex_state = 8}, - [1062] = {.lex_state = 14, .external_lex_state = 12}, - [1063] = {.lex_state = 14, .external_lex_state = 12}, - [1064] = {.lex_state = 15, .external_lex_state = 2}, - [1065] = {.lex_state = 14, .external_lex_state = 9}, - [1066] = {.lex_state = 15, .external_lex_state = 11}, - [1067] = {.lex_state = 14, .external_lex_state = 9}, - [1068] = {.lex_state = 14, .external_lex_state = 9}, - [1069] = {.lex_state = 15, .external_lex_state = 12}, - [1070] = {.lex_state = 14, .external_lex_state = 9}, - [1071] = {.lex_state = 15, .external_lex_state = 2}, - [1072] = {.lex_state = 14, .external_lex_state = 13}, - [1073] = {.lex_state = 14, .external_lex_state = 9}, - [1074] = {.lex_state = 15, .external_lex_state = 11}, - [1075] = {.lex_state = 14, .external_lex_state = 9}, - [1076] = {.lex_state = 14, .external_lex_state = 9}, - [1077] = {.lex_state = 14, .external_lex_state = 9}, - [1078] = {.lex_state = 14, .external_lex_state = 12}, - [1079] = {.lex_state = 14, .external_lex_state = 9}, - [1080] = {.lex_state = 15, .external_lex_state = 11}, - [1081] = {.lex_state = 15, .external_lex_state = 11}, - [1082] = {.lex_state = 14, .external_lex_state = 9}, - [1083] = {.lex_state = 14, .external_lex_state = 12}, - [1084] = {.lex_state = 14, .external_lex_state = 12}, - [1085] = {.lex_state = 14, .external_lex_state = 12}, - [1086] = {.lex_state = 14, .external_lex_state = 9}, - [1087] = {.lex_state = 14, .external_lex_state = 9}, - [1088] = {.lex_state = 15, .external_lex_state = 11}, - [1089] = {.lex_state = 14, .external_lex_state = 12}, - [1090] = {.lex_state = 15, .external_lex_state = 11}, - [1091] = {.lex_state = 14, .external_lex_state = 9}, - [1092] = {.lex_state = 14, .external_lex_state = 12}, - [1093] = {.lex_state = 14, .external_lex_state = 12}, - [1094] = {.lex_state = 14, .external_lex_state = 12}, - [1095] = {.lex_state = 14, .external_lex_state = 9}, - [1096] = {.lex_state = 15, .external_lex_state = 12}, - [1097] = {.lex_state = 14, .external_lex_state = 9}, - [1098] = {.lex_state = 14, .external_lex_state = 13}, - [1099] = {.lex_state = 15, .external_lex_state = 11}, - [1100] = {.lex_state = 14, .external_lex_state = 9}, - [1101] = {.lex_state = 14, .external_lex_state = 8}, - [1102] = {.lex_state = 15, .external_lex_state = 11}, - [1103] = {.lex_state = 15, .external_lex_state = 11}, - [1104] = {.lex_state = 15, .external_lex_state = 11}, - [1105] = {.lex_state = 15, .external_lex_state = 11}, - [1106] = {.lex_state = 14, .external_lex_state = 9}, - [1107] = {.lex_state = 15, .external_lex_state = 13}, - [1108] = {.lex_state = 15, .external_lex_state = 11}, - [1109] = {.lex_state = 15, .external_lex_state = 11}, - [1110] = {.lex_state = 15, .external_lex_state = 11}, - [1111] = {.lex_state = 15, .external_lex_state = 11}, - [1112] = {.lex_state = 15, .external_lex_state = 11}, - [1113] = {.lex_state = 15, .external_lex_state = 11}, - [1114] = {.lex_state = 15, .external_lex_state = 11}, - [1115] = {.lex_state = 15, .external_lex_state = 11}, - [1116] = {.lex_state = 14, .external_lex_state = 7}, - [1117] = {.lex_state = 15, .external_lex_state = 13}, - [1118] = {.lex_state = 15, .external_lex_state = 12}, - [1119] = {.lex_state = 15, .external_lex_state = 12}, - [1120] = {.lex_state = 15, .external_lex_state = 13}, - [1121] = {.lex_state = 14, .external_lex_state = 12}, - [1122] = {.lex_state = 14, .external_lex_state = 7}, - [1123] = {.lex_state = 15, .external_lex_state = 11}, - [1124] = {.lex_state = 15, .external_lex_state = 11}, - [1125] = {.lex_state = 15, .external_lex_state = 11}, - [1126] = {.lex_state = 15, .external_lex_state = 11}, - [1127] = {.lex_state = 15, .external_lex_state = 11}, - [1128] = {.lex_state = 15, .external_lex_state = 11}, - [1129] = {.lex_state = 15, .external_lex_state = 11}, - [1130] = {.lex_state = 15, .external_lex_state = 11}, - [1131] = {.lex_state = 14, .external_lex_state = 12}, - [1132] = {.lex_state = 14, .external_lex_state = 9}, - [1133] = {.lex_state = 15, .external_lex_state = 11}, - [1134] = {.lex_state = 15, .external_lex_state = 11}, - [1135] = {.lex_state = 15, .external_lex_state = 11}, - [1136] = {.lex_state = 15, .external_lex_state = 11}, - [1137] = {.lex_state = 15, .external_lex_state = 11}, - [1138] = {.lex_state = 15, .external_lex_state = 11}, - [1139] = {.lex_state = 15, .external_lex_state = 12}, - [1140] = {.lex_state = 15, .external_lex_state = 12}, - [1141] = {.lex_state = 15, .external_lex_state = 12}, - [1142] = {.lex_state = 15, .external_lex_state = 11}, - [1143] = {.lex_state = 15, .external_lex_state = 11}, - [1144] = {.lex_state = 15, .external_lex_state = 11}, - [1145] = {.lex_state = 15, .external_lex_state = 11}, - [1146] = {.lex_state = 15, .external_lex_state = 11}, - [1147] = {.lex_state = 15, .external_lex_state = 11}, - [1148] = {.lex_state = 15, .external_lex_state = 11}, - [1149] = {.lex_state = 15, .external_lex_state = 11}, - [1150] = {.lex_state = 14, .external_lex_state = 12}, - [1151] = {.lex_state = 15, .external_lex_state = 11}, - [1152] = {.lex_state = 14, .external_lex_state = 13}, - [1153] = {.lex_state = 15, .external_lex_state = 11}, - [1154] = {.lex_state = 15, .external_lex_state = 11}, - [1155] = {.lex_state = 14, .external_lex_state = 13}, - [1156] = {.lex_state = 15, .external_lex_state = 11}, - [1157] = {.lex_state = 14, .external_lex_state = 9}, - [1158] = {.lex_state = 15, .external_lex_state = 13}, - [1159] = {.lex_state = 15, .external_lex_state = 13}, - [1160] = {.lex_state = 15, .external_lex_state = 13}, - [1161] = {.lex_state = 15, .external_lex_state = 11}, - [1162] = {.lex_state = 15, .external_lex_state = 11}, - [1163] = {.lex_state = 15, .external_lex_state = 11}, - [1164] = {.lex_state = 15, .external_lex_state = 11}, - [1165] = {.lex_state = 15, .external_lex_state = 11}, - [1166] = {.lex_state = 15, .external_lex_state = 11}, - [1167] = {.lex_state = 15, .external_lex_state = 11}, - [1168] = {.lex_state = 15, .external_lex_state = 11}, - [1169] = {.lex_state = 15, .external_lex_state = 11}, - [1170] = {.lex_state = 15, .external_lex_state = 11}, - [1171] = {.lex_state = 15, .external_lex_state = 13}, - [1172] = {.lex_state = 15, .external_lex_state = 13}, - [1173] = {.lex_state = 14, .external_lex_state = 9}, - [1174] = {.lex_state = 15, .external_lex_state = 13}, - [1175] = {.lex_state = 15, .external_lex_state = 13}, - [1176] = {.lex_state = 15, .external_lex_state = 13}, - [1177] = {.lex_state = 15, .external_lex_state = 10}, - [1178] = {.lex_state = 15, .external_lex_state = 10}, - [1179] = {.lex_state = 14, .external_lex_state = 13}, - [1180] = {.lex_state = 14, .external_lex_state = 12}, - [1181] = {.lex_state = 14, .external_lex_state = 13}, - [1182] = {.lex_state = 14, .external_lex_state = 13}, - [1183] = {.lex_state = 14, .external_lex_state = 13}, - [1184] = {.lex_state = 14, .external_lex_state = 13}, - [1185] = {.lex_state = 15, .external_lex_state = 10}, - [1186] = {.lex_state = 15, .external_lex_state = 10}, - [1187] = {.lex_state = 15, .external_lex_state = 10}, - [1188] = {.lex_state = 14, .external_lex_state = 12}, - [1189] = {.lex_state = 14, .external_lex_state = 13}, - [1190] = {.lex_state = 14, .external_lex_state = 12}, - [1191] = {.lex_state = 15, .external_lex_state = 10}, - [1192] = {.lex_state = 15, .external_lex_state = 10}, - [1193] = {.lex_state = 15, .external_lex_state = 10}, - [1194] = {.lex_state = 15, .external_lex_state = 10}, - [1195] = {.lex_state = 15, .external_lex_state = 8}, - [1196] = {.lex_state = 15, .external_lex_state = 10}, - [1197] = {.lex_state = 14, .external_lex_state = 12}, - [1198] = {.lex_state = 15, .external_lex_state = 10}, - [1199] = {.lex_state = 15, .external_lex_state = 10}, - [1200] = {.lex_state = 15, .external_lex_state = 10}, - [1201] = {.lex_state = 14, .external_lex_state = 12}, - [1202] = {.lex_state = 14, .external_lex_state = 7}, - [1203] = {.lex_state = 14, .external_lex_state = 12}, - [1204] = {.lex_state = 14, .external_lex_state = 12}, - [1205] = {.lex_state = 14, .external_lex_state = 13}, - [1206] = {.lex_state = 14, .external_lex_state = 12}, - [1207] = {.lex_state = 15, .external_lex_state = 10}, - [1208] = {.lex_state = 14, .external_lex_state = 12}, - [1209] = {.lex_state = 14, .external_lex_state = 13}, - [1210] = {.lex_state = 14, .external_lex_state = 13}, - [1211] = {.lex_state = 15, .external_lex_state = 10}, - [1212] = {.lex_state = 14, .external_lex_state = 12}, - [1213] = {.lex_state = 15, .external_lex_state = 10}, - [1214] = {.lex_state = 14, .external_lex_state = 12}, - [1215] = {.lex_state = 14, .external_lex_state = 13}, - [1216] = {.lex_state = 14, .external_lex_state = 13}, - [1217] = {.lex_state = 14, .external_lex_state = 13}, - [1218] = {.lex_state = 15, .external_lex_state = 10}, - [1219] = {.lex_state = 14, .external_lex_state = 13}, - [1220] = {.lex_state = 14, .external_lex_state = 13}, - [1221] = {.lex_state = 14, .external_lex_state = 12}, - [1222] = {.lex_state = 14, .external_lex_state = 12}, - [1223] = {.lex_state = 14, .external_lex_state = 12}, - [1224] = {.lex_state = 14, .external_lex_state = 12}, - [1225] = {.lex_state = 15, .external_lex_state = 10}, - [1226] = {.lex_state = 15, .external_lex_state = 10}, - [1227] = {.lex_state = 14, .external_lex_state = 12}, - [1228] = {.lex_state = 14, .external_lex_state = 13}, - [1229] = {.lex_state = 14, .external_lex_state = 13}, - [1230] = {.lex_state = 14, .external_lex_state = 12}, - [1231] = {.lex_state = 15, .external_lex_state = 10}, - [1232] = {.lex_state = 14, .external_lex_state = 12}, - [1233] = {.lex_state = 15, .external_lex_state = 10}, - [1234] = {.lex_state = 14, .external_lex_state = 13}, - [1235] = {.lex_state = 14, .external_lex_state = 13}, - [1236] = {.lex_state = 15, .external_lex_state = 8}, - [1237] = {.lex_state = 14, .external_lex_state = 12}, - [1238] = {.lex_state = 14, .external_lex_state = 12}, - [1239] = {.lex_state = 14, .external_lex_state = 7}, - [1240] = {.lex_state = 14, .external_lex_state = 12}, - [1241] = {.lex_state = 15, .external_lex_state = 10}, - [1242] = {.lex_state = 14, .external_lex_state = 13}, - [1243] = {.lex_state = 14, .external_lex_state = 12}, - [1244] = {.lex_state = 14, .external_lex_state = 12}, - [1245] = {.lex_state = 14, .external_lex_state = 13}, - [1246] = {.lex_state = 14, .external_lex_state = 12}, - [1247] = {.lex_state = 14, .external_lex_state = 13}, - [1248] = {.lex_state = 14, .external_lex_state = 13}, - [1249] = {.lex_state = 14, .external_lex_state = 13}, - [1250] = {.lex_state = 14, .external_lex_state = 12}, - [1251] = {.lex_state = 14, .external_lex_state = 12}, - [1252] = {.lex_state = 14, .external_lex_state = 13}, - [1253] = {.lex_state = 14, .external_lex_state = 13}, - [1254] = {.lex_state = 14, .external_lex_state = 13}, - [1255] = {.lex_state = 15, .external_lex_state = 10}, - [1256] = {.lex_state = 14, .external_lex_state = 12}, - [1257] = {.lex_state = 14, .external_lex_state = 12}, - [1258] = {.lex_state = 15, .external_lex_state = 10}, - [1259] = {.lex_state = 14, .external_lex_state = 13}, - [1260] = {.lex_state = 14, .external_lex_state = 12}, - [1261] = {.lex_state = 14, .external_lex_state = 13}, - [1262] = {.lex_state = 14, .external_lex_state = 13}, - [1263] = {.lex_state = 14, .external_lex_state = 13}, - [1264] = {.lex_state = 14, .external_lex_state = 13}, - [1265] = {.lex_state = 14, .external_lex_state = 13}, - [1266] = {.lex_state = 14, .external_lex_state = 13}, - [1267] = {.lex_state = 14, .external_lex_state = 13}, - [1268] = {.lex_state = 14, .external_lex_state = 13}, - [1269] = {.lex_state = 14, .external_lex_state = 13}, - [1270] = {.lex_state = 15, .external_lex_state = 10}, - [1271] = {.lex_state = 14, .external_lex_state = 12}, - [1272] = {.lex_state = 14, .external_lex_state = 12}, - [1273] = {.lex_state = 15, .external_lex_state = 10}, - [1274] = {.lex_state = 14, .external_lex_state = 12}, - [1275] = {.lex_state = 15, .external_lex_state = 13}, - [1276] = {.lex_state = 14, .external_lex_state = 12}, - [1277] = {.lex_state = 15, .external_lex_state = 13}, - [1278] = {.lex_state = 14, .external_lex_state = 12}, - [1279] = {.lex_state = 15, .external_lex_state = 10}, - [1280] = {.lex_state = 15, .external_lex_state = 13}, - [1281] = {.lex_state = 14, .external_lex_state = 12}, - [1282] = {.lex_state = 15, .external_lex_state = 10}, - [1283] = {.lex_state = 14, .external_lex_state = 12}, - [1284] = {.lex_state = 14, .external_lex_state = 12}, - [1285] = {.lex_state = 15, .external_lex_state = 10}, - [1286] = {.lex_state = 14, .external_lex_state = 12}, - [1287] = {.lex_state = 15, .external_lex_state = 13}, - [1288] = {.lex_state = 14, .external_lex_state = 12}, - [1289] = {.lex_state = 14, .external_lex_state = 12}, - [1290] = {.lex_state = 14, .external_lex_state = 12}, - [1291] = {.lex_state = 14, .external_lex_state = 12}, - [1292] = {.lex_state = 15, .external_lex_state = 13}, - [1293] = {.lex_state = 14, .external_lex_state = 12}, - [1294] = {.lex_state = 14, .external_lex_state = 12}, - [1295] = {.lex_state = 14, .external_lex_state = 12}, - [1296] = {.lex_state = 14, .external_lex_state = 12}, - [1297] = {.lex_state = 14, .external_lex_state = 12}, - [1298] = {.lex_state = 14, .external_lex_state = 12}, - [1299] = {.lex_state = 14, .external_lex_state = 12}, - [1300] = {.lex_state = 14, .external_lex_state = 12}, - [1301] = {.lex_state = 15, .external_lex_state = 13}, - [1302] = {.lex_state = 15, .external_lex_state = 13}, - [1303] = {.lex_state = 15, .external_lex_state = 13}, - [1304] = {.lex_state = 15, .external_lex_state = 13}, - [1305] = {.lex_state = 15, .external_lex_state = 13}, - [1306] = {.lex_state = 14, .external_lex_state = 12}, - [1307] = {.lex_state = 14, .external_lex_state = 12}, - [1308] = {.lex_state = 14, .external_lex_state = 12}, - [1309] = {.lex_state = 14, .external_lex_state = 12}, - [1310] = {.lex_state = 15, .external_lex_state = 10}, - [1311] = {.lex_state = 15, .external_lex_state = 13}, - [1312] = {.lex_state = 15, .external_lex_state = 13}, - [1313] = {.lex_state = 14, .external_lex_state = 12}, - [1314] = {.lex_state = 14, .external_lex_state = 12}, - [1315] = {.lex_state = 15, .external_lex_state = 13}, - [1316] = {.lex_state = 15, .external_lex_state = 13}, - [1317] = {.lex_state = 15, .external_lex_state = 13}, - [1318] = {.lex_state = 15, .external_lex_state = 13}, - [1319] = {.lex_state = 15, .external_lex_state = 13}, - [1320] = {.lex_state = 15, .external_lex_state = 13}, - [1321] = {.lex_state = 14, .external_lex_state = 12}, - [1322] = {.lex_state = 14, .external_lex_state = 13}, - [1323] = {.lex_state = 14, .external_lex_state = 13}, - [1324] = {.lex_state = 15, .external_lex_state = 13}, - [1325] = {.lex_state = 15, .external_lex_state = 13}, - [1326] = {.lex_state = 15, .external_lex_state = 13}, - [1327] = {.lex_state = 14, .external_lex_state = 12}, - [1328] = {.lex_state = 15, .external_lex_state = 13}, - [1329] = {.lex_state = 15, .external_lex_state = 13}, - [1330] = {.lex_state = 14, .external_lex_state = 12}, - [1331] = {.lex_state = 14, .external_lex_state = 12}, - [1332] = {.lex_state = 14, .external_lex_state = 12}, - [1333] = {.lex_state = 14, .external_lex_state = 12}, - [1334] = {.lex_state = 15, .external_lex_state = 13}, - [1335] = {.lex_state = 15, .external_lex_state = 13}, - [1336] = {.lex_state = 15, .external_lex_state = 13}, - [1337] = {.lex_state = 14, .external_lex_state = 12}, - [1338] = {.lex_state = 15, .external_lex_state = 13}, - [1339] = {.lex_state = 15, .external_lex_state = 13}, - [1340] = {.lex_state = 15, .external_lex_state = 13}, - [1341] = {.lex_state = 14, .external_lex_state = 12}, - [1342] = {.lex_state = 15, .external_lex_state = 13}, - [1343] = {.lex_state = 15, .external_lex_state = 13}, - [1344] = {.lex_state = 14, .external_lex_state = 13}, - [1345] = {.lex_state = 14, .external_lex_state = 12}, - [1346] = {.lex_state = 16, .external_lex_state = 11}, - [1347] = {.lex_state = 60, .external_lex_state = 9}, - [1348] = {.lex_state = 16, .external_lex_state = 11}, - [1349] = {.lex_state = 16, .external_lex_state = 11}, - [1350] = {.lex_state = 60, .external_lex_state = 9}, - [1351] = {.lex_state = 16, .external_lex_state = 11}, - [1352] = {.lex_state = 16, .external_lex_state = 10}, - [1353] = {.lex_state = 60, .external_lex_state = 13}, - [1354] = {.lex_state = 15, .external_lex_state = 12}, - [1355] = {.lex_state = 60, .external_lex_state = 12}, - [1356] = {.lex_state = 60, .external_lex_state = 12}, - [1357] = {.lex_state = 16, .external_lex_state = 10}, - [1358] = {.lex_state = 60, .external_lex_state = 13}, - [1359] = {.lex_state = 15, .external_lex_state = 12}, - [1360] = {.lex_state = 15, .external_lex_state = 12}, - [1361] = {.lex_state = 15, .external_lex_state = 12}, - [1362] = {.lex_state = 14, .external_lex_state = 13}, - [1363] = {.lex_state = 14, .external_lex_state = 13}, - [1364] = {.lex_state = 14, .external_lex_state = 10}, - [1365] = {.lex_state = 60, .external_lex_state = 12}, - [1366] = {.lex_state = 60, .external_lex_state = 12}, - [1367] = {.lex_state = 15, .external_lex_state = 10}, - [1368] = {.lex_state = 14, .external_lex_state = 13}, - [1369] = {.lex_state = 14, .external_lex_state = 10}, - [1370] = {.lex_state = 16, .external_lex_state = 13}, - [1371] = {.lex_state = 14, .external_lex_state = 13}, - [1372] = {.lex_state = 16, .external_lex_state = 13}, - [1373] = {.lex_state = 14, .external_lex_state = 10}, - [1374] = {.lex_state = 14, .external_lex_state = 12}, - [1375] = {.lex_state = 14, .external_lex_state = 13}, - [1376] = {.lex_state = 16, .external_lex_state = 10}, - [1377] = {.lex_state = 14, .external_lex_state = 12}, - [1378] = {.lex_state = 14, .external_lex_state = 13}, - [1379] = {.lex_state = 14, .external_lex_state = 12}, - [1380] = {.lex_state = 15, .external_lex_state = 10}, - [1381] = {.lex_state = 14, .external_lex_state = 12}, - [1382] = {.lex_state = 16, .external_lex_state = 10}, - [1383] = {.lex_state = 16, .external_lex_state = 10}, - [1384] = {.lex_state = 16, .external_lex_state = 10}, - [1385] = {.lex_state = 16, .external_lex_state = 10}, - [1386] = {.lex_state = 16, .external_lex_state = 10}, - [1387] = {.lex_state = 16, .external_lex_state = 10}, - [1388] = {.lex_state = 16, .external_lex_state = 10}, - [1389] = {.lex_state = 16, .external_lex_state = 10}, - [1390] = {.lex_state = 16, .external_lex_state = 10}, - [1391] = {.lex_state = 16, .external_lex_state = 10}, - [1392] = {.lex_state = 16, .external_lex_state = 10}, - [1393] = {.lex_state = 16, .external_lex_state = 10}, - [1394] = {.lex_state = 16, .external_lex_state = 10}, - [1395] = {.lex_state = 16, .external_lex_state = 10}, - [1396] = {.lex_state = 16, .external_lex_state = 10}, - [1397] = {.lex_state = 16, .external_lex_state = 10}, - [1398] = {.lex_state = 16, .external_lex_state = 10}, - [1399] = {.lex_state = 60, .external_lex_state = 12}, - [1400] = {.lex_state = 60, .external_lex_state = 12}, - [1401] = {.lex_state = 16, .external_lex_state = 10}, - [1402] = {.lex_state = 16, .external_lex_state = 10}, - [1403] = {.lex_state = 16, .external_lex_state = 10}, - [1404] = {.lex_state = 60, .external_lex_state = 12}, - [1405] = {.lex_state = 60, .external_lex_state = 10}, - [1406] = {.lex_state = 60, .external_lex_state = 10}, - [1407] = {.lex_state = 16, .external_lex_state = 11}, - [1408] = {.lex_state = 16, .external_lex_state = 11}, - [1409] = {.lex_state = 16, .external_lex_state = 11}, - [1410] = {.lex_state = 16, .external_lex_state = 11}, - [1411] = {.lex_state = 16, .external_lex_state = 11}, - [1412] = {.lex_state = 16, .external_lex_state = 11}, - [1413] = {.lex_state = 16, .external_lex_state = 11}, - [1414] = {.lex_state = 16, .external_lex_state = 11}, - [1415] = {.lex_state = 60, .external_lex_state = 12}, - [1416] = {.lex_state = 60, .external_lex_state = 12}, - [1417] = {.lex_state = 60, .external_lex_state = 12}, - [1418] = {.lex_state = 60, .external_lex_state = 12}, - [1419] = {.lex_state = 60, .external_lex_state = 12}, - [1420] = {.lex_state = 60, .external_lex_state = 12}, - [1421] = {.lex_state = 60, .external_lex_state = 13}, - [1422] = {.lex_state = 60, .external_lex_state = 12}, - [1423] = {.lex_state = 60, .external_lex_state = 13}, - [1424] = {.lex_state = 60, .external_lex_state = 12}, - [1425] = {.lex_state = 60, .external_lex_state = 12}, - [1426] = {.lex_state = 60, .external_lex_state = 13}, - [1427] = {.lex_state = 60, .external_lex_state = 13}, - [1428] = {.lex_state = 60, .external_lex_state = 12}, - [1429] = {.lex_state = 60, .external_lex_state = 12}, - [1430] = {.lex_state = 60, .external_lex_state = 13}, - [1431] = {.lex_state = 60, .external_lex_state = 12}, - [1432] = {.lex_state = 60, .external_lex_state = 12}, - [1433] = {.lex_state = 60, .external_lex_state = 12}, - [1434] = {.lex_state = 60, .external_lex_state = 12}, - [1435] = {.lex_state = 60, .external_lex_state = 13}, - [1436] = {.lex_state = 60, .external_lex_state = 13}, - [1437] = {.lex_state = 60, .external_lex_state = 12}, - [1438] = {.lex_state = 60, .external_lex_state = 12}, - [1439] = {.lex_state = 60, .external_lex_state = 13}, - [1440] = {.lex_state = 18, .external_lex_state = 14}, - [1441] = {.lex_state = 18, .external_lex_state = 14}, - [1442] = {.lex_state = 18, .external_lex_state = 14}, - [1443] = {.lex_state = 18, .external_lex_state = 14}, - [1444] = {.lex_state = 18, .external_lex_state = 14}, - [1445] = {.lex_state = 18, .external_lex_state = 14}, - [1446] = {.lex_state = 16, .external_lex_state = 11}, - [1447] = {.lex_state = 18, .external_lex_state = 14}, - [1448] = {.lex_state = 18, .external_lex_state = 14}, - [1449] = {.lex_state = 18, .external_lex_state = 14}, - [1450] = {.lex_state = 18, .external_lex_state = 14}, - [1451] = {.lex_state = 18, .external_lex_state = 14}, - [1452] = {.lex_state = 18, .external_lex_state = 14}, - [1453] = {.lex_state = 18, .external_lex_state = 14}, - [1454] = {.lex_state = 18, .external_lex_state = 14}, - [1455] = {.lex_state = 18, .external_lex_state = 14}, - [1456] = {.lex_state = 18, .external_lex_state = 14}, - [1457] = {.lex_state = 18, .external_lex_state = 14}, - [1458] = {.lex_state = 18, .external_lex_state = 14}, - [1459] = {.lex_state = 16, .external_lex_state = 11}, - [1460] = {.lex_state = 18, .external_lex_state = 14}, - [1461] = {.lex_state = 16, .external_lex_state = 11}, - [1462] = {.lex_state = 16, .external_lex_state = 11}, - [1463] = {.lex_state = 60, .external_lex_state = 9}, - [1464] = {.lex_state = 16, .external_lex_state = 11}, - [1465] = {.lex_state = 16, .external_lex_state = 11}, - [1466] = {.lex_state = 16, .external_lex_state = 11}, - [1467] = {.lex_state = 16, .external_lex_state = 11}, - [1468] = {.lex_state = 16, .external_lex_state = 11}, - [1469] = {.lex_state = 16, .external_lex_state = 11}, - [1470] = {.lex_state = 16, .external_lex_state = 11}, - [1471] = {.lex_state = 60, .external_lex_state = 9}, - [1472] = {.lex_state = 16, .external_lex_state = 11}, - [1473] = {.lex_state = 16, .external_lex_state = 11}, - [1474] = {.lex_state = 60, .external_lex_state = 9}, - [1475] = {.lex_state = 60, .external_lex_state = 9}, - [1476] = {.lex_state = 60, .external_lex_state = 9}, - [1477] = {.lex_state = 16, .external_lex_state = 11}, - [1478] = {.lex_state = 60, .external_lex_state = 9}, - [1479] = {.lex_state = 60, .external_lex_state = 9}, - [1480] = {.lex_state = 16, .external_lex_state = 11}, - [1481] = {.lex_state = 16, .external_lex_state = 11}, - [1482] = {.lex_state = 16, .external_lex_state = 11}, - [1483] = {.lex_state = 16, .external_lex_state = 11}, - [1484] = {.lex_state = 60, .external_lex_state = 9}, - [1485] = {.lex_state = 16, .external_lex_state = 11}, - [1486] = {.lex_state = 16, .external_lex_state = 11}, - [1487] = {.lex_state = 16, .external_lex_state = 11}, - [1488] = {.lex_state = 60, .external_lex_state = 9}, - [1489] = {.lex_state = 16, .external_lex_state = 11}, - [1490] = {.lex_state = 16, .external_lex_state = 11}, - [1491] = {.lex_state = 60, .external_lex_state = 9}, - [1492] = {.lex_state = 16, .external_lex_state = 11}, - [1493] = {.lex_state = 60, .external_lex_state = 9}, - [1494] = {.lex_state = 60, .external_lex_state = 10}, - [1495] = {.lex_state = 16, .external_lex_state = 13}, - [1496] = {.lex_state = 16, .external_lex_state = 10}, - [1497] = {.lex_state = 16, .external_lex_state = 13}, - [1498] = {.lex_state = 16, .external_lex_state = 13}, - [1499] = {.lex_state = 60, .external_lex_state = 12}, - [1500] = {.lex_state = 0, .external_lex_state = 10}, - [1501] = {.lex_state = 60, .external_lex_state = 13}, - [1502] = {.lex_state = 60, .external_lex_state = 11}, - [1503] = {.lex_state = 60, .external_lex_state = 9}, - [1504] = {.lex_state = 16, .external_lex_state = 10}, - [1505] = {.lex_state = 16, .external_lex_state = 13}, - [1506] = {.lex_state = 60, .external_lex_state = 12}, - [1507] = {.lex_state = 16, .external_lex_state = 10}, - [1508] = {.lex_state = 16, .external_lex_state = 10}, - [1509] = {.lex_state = 60, .external_lex_state = 11}, - [1510] = {.lex_state = 0, .external_lex_state = 10}, - [1511] = {.lex_state = 16, .external_lex_state = 10}, - [1512] = {.lex_state = 60, .external_lex_state = 13}, - [1513] = {.lex_state = 60, .external_lex_state = 12}, - [1514] = {.lex_state = 0, .external_lex_state = 10}, - [1515] = {.lex_state = 60, .external_lex_state = 11}, - [1516] = {.lex_state = 60, .external_lex_state = 12}, - [1517] = {.lex_state = 16, .external_lex_state = 13}, - [1518] = {.lex_state = 60, .external_lex_state = 12}, - [1519] = {.lex_state = 60, .external_lex_state = 10}, - [1520] = {.lex_state = 60, .external_lex_state = 13}, - [1521] = {.lex_state = 60, .external_lex_state = 12}, - [1522] = {.lex_state = 16, .external_lex_state = 10}, - [1523] = {.lex_state = 60, .external_lex_state = 12}, - [1524] = {.lex_state = 16, .external_lex_state = 10}, - [1525] = {.lex_state = 60, .external_lex_state = 13}, - [1526] = {.lex_state = 16, .external_lex_state = 10}, - [1527] = {.lex_state = 16, .external_lex_state = 10}, - [1528] = {.lex_state = 60, .external_lex_state = 13}, - [1529] = {.lex_state = 60, .external_lex_state = 12}, - [1530] = {.lex_state = 16, .external_lex_state = 10}, - [1531] = {.lex_state = 60, .external_lex_state = 9}, - [1532] = {.lex_state = 60, .external_lex_state = 12}, - [1533] = {.lex_state = 16, .external_lex_state = 13}, - [1534] = {.lex_state = 60, .external_lex_state = 9}, - [1535] = {.lex_state = 16, .external_lex_state = 10}, - [1536] = {.lex_state = 16, .external_lex_state = 13}, - [1537] = {.lex_state = 60, .external_lex_state = 9}, - [1538] = {.lex_state = 60, .external_lex_state = 11}, - [1539] = {.lex_state = 60, .external_lex_state = 9}, - [1540] = {.lex_state = 16, .external_lex_state = 10}, - [1541] = {.lex_state = 60, .external_lex_state = 9}, - [1542] = {.lex_state = 60, .external_lex_state = 13}, - [1543] = {.lex_state = 60, .external_lex_state = 9}, - [1544] = {.lex_state = 60, .external_lex_state = 12}, - [1545] = {.lex_state = 60, .external_lex_state = 9}, - [1546] = {.lex_state = 60, .external_lex_state = 12}, - [1547] = {.lex_state = 60, .external_lex_state = 13}, - [1548] = {.lex_state = 60, .external_lex_state = 12}, - [1549] = {.lex_state = 0, .external_lex_state = 10}, - [1550] = {.lex_state = 60, .external_lex_state = 13}, - [1551] = {.lex_state = 60, .external_lex_state = 12}, - [1552] = {.lex_state = 60, .external_lex_state = 13}, - [1553] = {.lex_state = 60, .external_lex_state = 9}, - [1554] = {.lex_state = 60, .external_lex_state = 13}, - [1555] = {.lex_state = 60, .external_lex_state = 13}, - [1556] = {.lex_state = 16, .external_lex_state = 13}, - [1557] = {.lex_state = 60, .external_lex_state = 13}, - [1558] = {.lex_state = 60, .external_lex_state = 13}, - [1559] = {.lex_state = 60, .external_lex_state = 9}, - [1560] = {.lex_state = 16, .external_lex_state = 10}, - [1561] = {.lex_state = 60, .external_lex_state = 9}, - [1562] = {.lex_state = 60, .external_lex_state = 12}, - [1563] = {.lex_state = 16, .external_lex_state = 13}, - [1564] = {.lex_state = 60, .external_lex_state = 12}, - [1565] = {.lex_state = 14, .external_lex_state = 10}, - [1566] = {.lex_state = 60, .external_lex_state = 12}, - [1567] = {.lex_state = 60, .external_lex_state = 12}, - [1568] = {.lex_state = 60, .external_lex_state = 9}, - [1569] = {.lex_state = 60, .external_lex_state = 11}, - [1570] = {.lex_state = 60, .external_lex_state = 12}, - [1571] = {.lex_state = 60, .external_lex_state = 12}, - [1572] = {.lex_state = 60, .external_lex_state = 11}, - [1573] = {.lex_state = 16, .external_lex_state = 10}, - [1574] = {.lex_state = 60, .external_lex_state = 11}, - [1575] = {.lex_state = 60, .external_lex_state = 11}, - [1576] = {.lex_state = 16, .external_lex_state = 13}, - [1577] = {.lex_state = 60, .external_lex_state = 10}, - [1578] = {.lex_state = 18, .external_lex_state = 14}, - [1579] = {.lex_state = 16, .external_lex_state = 13}, - [1580] = {.lex_state = 16, .external_lex_state = 13}, - [1581] = {.lex_state = 16, .external_lex_state = 13}, - [1582] = {.lex_state = 16, .external_lex_state = 13}, - [1583] = {.lex_state = 16, .external_lex_state = 13}, - [1584] = {.lex_state = 60, .external_lex_state = 11}, - [1585] = {.lex_state = 60, .external_lex_state = 12}, - [1586] = {.lex_state = 60, .external_lex_state = 12}, - [1587] = {.lex_state = 16, .external_lex_state = 13}, - [1588] = {.lex_state = 16, .external_lex_state = 10}, - [1589] = {.lex_state = 60, .external_lex_state = 12}, - [1590] = {.lex_state = 60, .external_lex_state = 11}, - [1591] = {.lex_state = 60, .external_lex_state = 12}, - [1592] = {.lex_state = 60, .external_lex_state = 13}, - [1593] = {.lex_state = 60, .external_lex_state = 13}, - [1594] = {.lex_state = 60, .external_lex_state = 12}, - [1595] = {.lex_state = 16, .external_lex_state = 13}, - [1596] = {.lex_state = 60, .external_lex_state = 12}, - [1597] = {.lex_state = 60, .external_lex_state = 12}, - [1598] = {.lex_state = 16, .external_lex_state = 13}, - [1599] = {.lex_state = 60, .external_lex_state = 13}, - [1600] = {.lex_state = 16, .external_lex_state = 13}, - [1601] = {.lex_state = 60, .external_lex_state = 12}, - [1602] = {.lex_state = 60, .external_lex_state = 12}, - [1603] = {.lex_state = 60, .external_lex_state = 11}, - [1604] = {.lex_state = 16, .external_lex_state = 10}, - [1605] = {.lex_state = 60, .external_lex_state = 12}, - [1606] = {.lex_state = 60, .external_lex_state = 11}, - [1607] = {.lex_state = 60, .external_lex_state = 13}, - [1608] = {.lex_state = 16, .external_lex_state = 10}, - [1609] = {.lex_state = 60, .external_lex_state = 12}, - [1610] = {.lex_state = 60, .external_lex_state = 11}, - [1611] = {.lex_state = 16, .external_lex_state = 13}, - [1612] = {.lex_state = 18, .external_lex_state = 14}, - [1613] = {.lex_state = 16, .external_lex_state = 13}, - [1614] = {.lex_state = 16, .external_lex_state = 10}, - [1615] = {.lex_state = 60, .external_lex_state = 13}, - [1616] = {.lex_state = 16, .external_lex_state = 10}, - [1617] = {.lex_state = 60, .external_lex_state = 11}, - [1618] = {.lex_state = 60, .external_lex_state = 11}, - [1619] = {.lex_state = 60, .external_lex_state = 11}, - [1620] = {.lex_state = 14, .external_lex_state = 9}, - [1621] = {.lex_state = 60, .external_lex_state = 11}, - [1622] = {.lex_state = 60, .external_lex_state = 12}, - [1623] = {.lex_state = 18, .external_lex_state = 14}, - [1624] = {.lex_state = 60, .external_lex_state = 12}, - [1625] = {.lex_state = 18, .external_lex_state = 14}, - [1626] = {.lex_state = 60, .external_lex_state = 13}, - [1627] = {.lex_state = 16, .external_lex_state = 11}, - [1628] = {.lex_state = 60, .external_lex_state = 12}, - [1629] = {.lex_state = 60, .external_lex_state = 13}, - [1630] = {.lex_state = 60, .external_lex_state = 9}, - [1631] = {.lex_state = 60, .external_lex_state = 12}, - [1632] = {.lex_state = 16, .external_lex_state = 10}, - [1633] = {.lex_state = 60, .external_lex_state = 12}, - [1634] = {.lex_state = 18, .external_lex_state = 14}, - [1635] = {.lex_state = 60, .external_lex_state = 13}, - [1636] = {.lex_state = 18, .external_lex_state = 14}, - [1637] = {.lex_state = 18, .external_lex_state = 14}, - [1638] = {.lex_state = 60, .external_lex_state = 12}, - [1639] = {.lex_state = 60, .external_lex_state = 11}, - [1640] = {.lex_state = 60, .external_lex_state = 9}, - [1641] = {.lex_state = 60, .external_lex_state = 11}, - [1642] = {.lex_state = 16, .external_lex_state = 10}, - [1643] = {.lex_state = 18, .external_lex_state = 14}, - [1644] = {.lex_state = 60, .external_lex_state = 11}, - [1645] = {.lex_state = 60, .external_lex_state = 13}, - [1646] = {.lex_state = 60, .external_lex_state = 13}, - [1647] = {.lex_state = 60, .external_lex_state = 12}, - [1648] = {.lex_state = 60, .external_lex_state = 12}, - [1649] = {.lex_state = 60, .external_lex_state = 11}, - [1650] = {.lex_state = 60, .external_lex_state = 11}, - [1651] = {.lex_state = 60, .external_lex_state = 12}, - [1652] = {.lex_state = 60, .external_lex_state = 12}, - [1653] = {.lex_state = 18, .external_lex_state = 14}, - [1654] = {.lex_state = 60, .external_lex_state = 13}, - [1655] = {.lex_state = 60, .external_lex_state = 12}, - [1656] = {.lex_state = 18, .external_lex_state = 14}, - [1657] = {.lex_state = 60, .external_lex_state = 13}, - [1658] = {.lex_state = 60, .external_lex_state = 13}, - [1659] = {.lex_state = 16, .external_lex_state = 10}, - [1660] = {.lex_state = 18, .external_lex_state = 14}, - [1661] = {.lex_state = 60, .external_lex_state = 11}, - [1662] = {.lex_state = 60, .external_lex_state = 11}, - [1663] = {.lex_state = 60, .external_lex_state = 13}, - [1664] = {.lex_state = 16, .external_lex_state = 10}, - [1665] = {.lex_state = 60, .external_lex_state = 9}, - [1666] = {.lex_state = 60, .external_lex_state = 12}, - [1667] = {.lex_state = 60, .external_lex_state = 12}, - [1668] = {.lex_state = 60, .external_lex_state = 12}, - [1669] = {.lex_state = 60, .external_lex_state = 12}, - [1670] = {.lex_state = 16, .external_lex_state = 10}, - [1671] = {.lex_state = 60, .external_lex_state = 13}, - [1672] = {.lex_state = 16, .external_lex_state = 10}, - [1673] = {.lex_state = 16, .external_lex_state = 10}, - [1674] = {.lex_state = 14, .external_lex_state = 9}, - [1675] = {.lex_state = 16, .external_lex_state = 10}, - [1676] = {.lex_state = 60, .external_lex_state = 11}, - [1677] = {.lex_state = 16, .external_lex_state = 11}, - [1678] = {.lex_state = 18, .external_lex_state = 14}, - [1679] = {.lex_state = 60, .external_lex_state = 13}, - [1680] = {.lex_state = 60, .external_lex_state = 12}, - [1681] = {.lex_state = 60, .external_lex_state = 10}, - [1682] = {.lex_state = 16, .external_lex_state = 10}, - [1683] = {.lex_state = 14, .external_lex_state = 9}, - [1684] = {.lex_state = 60, .external_lex_state = 13}, - [1685] = {.lex_state = 16, .external_lex_state = 10}, - [1686] = {.lex_state = 16, .external_lex_state = 10}, - [1687] = {.lex_state = 60, .external_lex_state = 9}, - [1688] = {.lex_state = 60, .external_lex_state = 12}, - [1689] = {.lex_state = 60, .external_lex_state = 10}, - [1690] = {.lex_state = 60, .external_lex_state = 10}, - [1691] = {.lex_state = 14, .external_lex_state = 9}, - [1692] = {.lex_state = 16, .external_lex_state = 10}, - [1693] = {.lex_state = 16, .external_lex_state = 10}, - [1694] = {.lex_state = 16, .external_lex_state = 10}, - [1695] = {.lex_state = 14, .external_lex_state = 12}, - [1696] = {.lex_state = 16, .external_lex_state = 10}, - [1697] = {.lex_state = 16, .external_lex_state = 10}, - [1698] = {.lex_state = 8, .external_lex_state = 11}, - [1699] = {.lex_state = 8, .external_lex_state = 11}, - [1700] = {.lex_state = 16, .external_lex_state = 10}, - [1701] = {.lex_state = 16, .external_lex_state = 11}, - [1702] = {.lex_state = 60, .external_lex_state = 10}, - [1703] = {.lex_state = 14, .external_lex_state = 12}, - [1704] = {.lex_state = 16, .external_lex_state = 10}, - [1705] = {.lex_state = 16, .external_lex_state = 10}, - [1706] = {.lex_state = 60, .external_lex_state = 9}, - [1707] = {.lex_state = 60, .external_lex_state = 9}, - [1708] = {.lex_state = 16, .external_lex_state = 11}, - [1709] = {.lex_state = 60, .external_lex_state = 13}, - [1710] = {.lex_state = 16, .external_lex_state = 10}, - [1711] = {.lex_state = 60, .external_lex_state = 9}, - [1712] = {.lex_state = 60, .external_lex_state = 13}, - [1713] = {.lex_state = 60, .external_lex_state = 9}, - [1714] = {.lex_state = 16, .external_lex_state = 10}, - [1715] = {.lex_state = 16, .external_lex_state = 10}, - [1716] = {.lex_state = 60, .external_lex_state = 10}, - [1717] = {.lex_state = 8, .external_lex_state = 11}, - [1718] = {.lex_state = 60, .external_lex_state = 9}, - [1719] = {.lex_state = 60, .external_lex_state = 11}, - [1720] = {.lex_state = 16, .external_lex_state = 10}, - [1721] = {.lex_state = 16, .external_lex_state = 10}, - [1722] = {.lex_state = 60, .external_lex_state = 13}, - [1723] = {.lex_state = 60, .external_lex_state = 12}, - [1724] = {.lex_state = 16, .external_lex_state = 10}, - [1725] = {.lex_state = 14, .external_lex_state = 12}, - [1726] = {.lex_state = 16, .external_lex_state = 10}, - [1727] = {.lex_state = 60, .external_lex_state = 12}, - [1728] = {.lex_state = 60, .external_lex_state = 10}, - [1729] = {.lex_state = 60, .external_lex_state = 11}, - [1730] = {.lex_state = 16, .external_lex_state = 10}, - [1731] = {.lex_state = 60, .external_lex_state = 10}, - [1732] = {.lex_state = 60, .external_lex_state = 11}, - [1733] = {.lex_state = 60, .external_lex_state = 10}, - [1734] = {.lex_state = 16, .external_lex_state = 11}, - [1735] = {.lex_state = 60, .external_lex_state = 10}, - [1736] = {.lex_state = 16, .external_lex_state = 10}, - [1737] = {.lex_state = 60, .external_lex_state = 10}, - [1738] = {.lex_state = 16, .external_lex_state = 10}, - [1739] = {.lex_state = 60, .external_lex_state = 9}, - [1740] = {.lex_state = 60, .external_lex_state = 10}, - [1741] = {.lex_state = 0, .external_lex_state = 9}, - [1742] = {.lex_state = 0, .external_lex_state = 9}, - [1743] = {.lex_state = 16, .external_lex_state = 10}, - [1744] = {.lex_state = 60, .external_lex_state = 10}, - [1745] = {.lex_state = 0, .external_lex_state = 9}, - [1746] = {.lex_state = 60, .external_lex_state = 12}, - [1747] = {.lex_state = 0, .external_lex_state = 9}, - [1748] = {.lex_state = 0, .external_lex_state = 9}, - [1749] = {.lex_state = 0, .external_lex_state = 9}, - [1750] = {.lex_state = 60, .external_lex_state = 10}, - [1751] = {.lex_state = 14, .external_lex_state = 10}, - [1752] = {.lex_state = 60, .external_lex_state = 12}, - [1753] = {.lex_state = 60, .external_lex_state = 12}, - [1754] = {.lex_state = 16, .external_lex_state = 11}, - [1755] = {.lex_state = 16, .external_lex_state = 12}, - [1756] = {.lex_state = 14, .external_lex_state = 10}, - [1757] = {.lex_state = 0, .external_lex_state = 9}, - [1758] = {.lex_state = 0, .external_lex_state = 9}, - [1759] = {.lex_state = 0, .external_lex_state = 9}, - [1760] = {.lex_state = 60, .external_lex_state = 10}, - [1761] = {.lex_state = 0, .external_lex_state = 9}, - [1762] = {.lex_state = 0, .external_lex_state = 9}, - [1763] = {.lex_state = 0, .external_lex_state = 9}, - [1764] = {.lex_state = 0, .external_lex_state = 9}, - [1765] = {.lex_state = 0, .external_lex_state = 9}, - [1766] = {.lex_state = 0, .external_lex_state = 9}, - [1767] = {.lex_state = 60, .external_lex_state = 9}, - [1768] = {.lex_state = 14, .external_lex_state = 12}, - [1769] = {.lex_state = 0, .external_lex_state = 9}, - [1770] = {.lex_state = 16, .external_lex_state = 11}, - [1771] = {.lex_state = 60, .external_lex_state = 12}, - [1772] = {.lex_state = 0, .external_lex_state = 9}, - [1773] = {.lex_state = 0, .external_lex_state = 9}, - [1774] = {.lex_state = 0, .external_lex_state = 11}, - [1775] = {.lex_state = 60, .external_lex_state = 10}, - [1776] = {.lex_state = 60, .external_lex_state = 10}, - [1777] = {.lex_state = 16, .external_lex_state = 10}, - [1778] = {.lex_state = 16, .external_lex_state = 10}, - [1779] = {.lex_state = 60, .external_lex_state = 10}, - [1780] = {.lex_state = 0, .external_lex_state = 11}, - [1781] = {.lex_state = 16, .external_lex_state = 10}, - [1782] = {.lex_state = 16, .external_lex_state = 10}, - [1783] = {.lex_state = 16, .external_lex_state = 10}, - [1784] = {.lex_state = 16, .external_lex_state = 10}, - [1785] = {.lex_state = 0, .external_lex_state = 12}, - [1786] = {.lex_state = 16, .external_lex_state = 10}, - [1787] = {.lex_state = 0, .external_lex_state = 12}, - [1788] = {.lex_state = 0, .external_lex_state = 12}, - [1789] = {.lex_state = 0, .external_lex_state = 13}, - [1790] = {.lex_state = 0, .external_lex_state = 13}, - [1791] = {.lex_state = 8, .external_lex_state = 11}, - [1792] = {.lex_state = 0, .external_lex_state = 13}, - [1793] = {.lex_state = 0, .external_lex_state = 9}, - [1794] = {.lex_state = 0, .external_lex_state = 9}, - [1795] = {.lex_state = 16, .external_lex_state = 11}, - [1796] = {.lex_state = 0, .external_lex_state = 9}, - [1797] = {.lex_state = 0, .external_lex_state = 12}, - [1798] = {.lex_state = 0, .external_lex_state = 13}, - [1799] = {.lex_state = 60, .external_lex_state = 9}, - [1800] = {.lex_state = 0, .external_lex_state = 13}, - [1801] = {.lex_state = 60, .external_lex_state = 10}, - [1802] = {.lex_state = 60, .external_lex_state = 10}, - [1803] = {.lex_state = 0, .external_lex_state = 9}, - [1804] = {.lex_state = 60, .external_lex_state = 9}, - [1805] = {.lex_state = 16, .external_lex_state = 10}, - [1806] = {.lex_state = 60, .external_lex_state = 10}, - [1807] = {.lex_state = 0, .external_lex_state = 11}, - [1808] = {.lex_state = 60, .external_lex_state = 10}, - [1809] = {.lex_state = 0, .external_lex_state = 12}, - [1810] = {.lex_state = 0, .external_lex_state = 12}, - [1811] = {.lex_state = 0, .external_lex_state = 9}, - [1812] = {.lex_state = 0, .external_lex_state = 11}, - [1813] = {.lex_state = 0, .external_lex_state = 13}, - [1814] = {.lex_state = 0, .external_lex_state = 10}, - [1815] = {.lex_state = 0, .external_lex_state = 12}, - [1816] = {.lex_state = 0, .external_lex_state = 12}, - [1817] = {.lex_state = 0, .external_lex_state = 12}, - [1818] = {.lex_state = 0, .external_lex_state = 13}, - [1819] = {.lex_state = 0, .external_lex_state = 12}, - [1820] = {.lex_state = 60, .external_lex_state = 10}, - [1821] = {.lex_state = 0, .external_lex_state = 11}, - [1822] = {.lex_state = 0, .external_lex_state = 11}, - [1823] = {.lex_state = 60, .external_lex_state = 10}, - [1824] = {.lex_state = 0, .external_lex_state = 12}, - [1825] = {.lex_state = 0, .external_lex_state = 11}, - [1826] = {.lex_state = 16, .external_lex_state = 10}, - [1827] = {.lex_state = 0, .external_lex_state = 12}, - [1828] = {.lex_state = 0, .external_lex_state = 12}, - [1829] = {.lex_state = 0, .external_lex_state = 12}, - [1830] = {.lex_state = 16, .external_lex_state = 10}, - [1831] = {.lex_state = 0, .external_lex_state = 13}, - [1832] = {.lex_state = 60, .external_lex_state = 10}, - [1833] = {.lex_state = 0, .external_lex_state = 12}, - [1834] = {.lex_state = 0, .external_lex_state = 12}, - [1835] = {.lex_state = 0, .external_lex_state = 12}, - [1836] = {.lex_state = 0, .external_lex_state = 12}, - [1837] = {.lex_state = 0, .external_lex_state = 12}, - [1838] = {.lex_state = 0, .external_lex_state = 12}, - [1839] = {.lex_state = 0, .external_lex_state = 10}, - [1840] = {.lex_state = 0, .external_lex_state = 13}, - [1841] = {.lex_state = 0, .external_lex_state = 13}, - [1842] = {.lex_state = 0, .external_lex_state = 13}, - [1843] = {.lex_state = 0, .external_lex_state = 13}, - [1844] = {.lex_state = 0, .external_lex_state = 13}, - [1845] = {.lex_state = 0, .external_lex_state = 12}, - [1846] = {.lex_state = 0, .external_lex_state = 12}, - [1847] = {.lex_state = 0, .external_lex_state = 12}, - [1848] = {.lex_state = 16, .external_lex_state = 11}, - [1849] = {.lex_state = 0, .external_lex_state = 13}, - [1850] = {.lex_state = 0, .external_lex_state = 13}, - [1851] = {.lex_state = 0, .external_lex_state = 13}, - [1852] = {.lex_state = 0, .external_lex_state = 13}, - [1853] = {.lex_state = 0, .external_lex_state = 13}, - [1854] = {.lex_state = 0, .external_lex_state = 12}, - [1855] = {.lex_state = 0, .external_lex_state = 12}, - [1856] = {.lex_state = 0, .external_lex_state = 12}, - [1857] = {.lex_state = 8, .external_lex_state = 11}, - [1858] = {.lex_state = 0, .external_lex_state = 12}, - [1859] = {.lex_state = 16, .external_lex_state = 11}, - [1860] = {.lex_state = 0, .external_lex_state = 12}, - [1861] = {.lex_state = 0, .external_lex_state = 9}, - [1862] = {.lex_state = 0, .external_lex_state = 10}, - [1863] = {.lex_state = 0, .external_lex_state = 12}, - [1864] = {.lex_state = 0, .external_lex_state = 12}, - [1865] = {.lex_state = 0, .external_lex_state = 12}, - [1866] = {.lex_state = 0, .external_lex_state = 12}, - [1867] = {.lex_state = 0, .external_lex_state = 11}, - [1868] = {.lex_state = 16, .external_lex_state = 11}, - [1869] = {.lex_state = 8, .external_lex_state = 11}, - [1870] = {.lex_state = 0, .external_lex_state = 11}, - [1871] = {.lex_state = 14, .external_lex_state = 10}, - [1872] = {.lex_state = 0, .external_lex_state = 12}, - [1873] = {.lex_state = 0, .external_lex_state = 11}, - [1874] = {.lex_state = 0, .external_lex_state = 13}, - [1875] = {.lex_state = 0, .external_lex_state = 12}, - [1876] = {.lex_state = 0, .external_lex_state = 12}, - [1877] = {.lex_state = 0, .external_lex_state = 9}, - [1878] = {.lex_state = 8, .external_lex_state = 11}, - [1879] = {.lex_state = 16, .external_lex_state = 10}, - [1880] = {.lex_state = 8, .external_lex_state = 11}, - [1881] = {.lex_state = 60, .external_lex_state = 10}, - [1882] = {.lex_state = 8, .external_lex_state = 11}, - [1883] = {.lex_state = 0, .external_lex_state = 12}, - [1884] = {.lex_state = 0, .external_lex_state = 11}, - [1885] = {.lex_state = 8, .external_lex_state = 11}, - [1886] = {.lex_state = 8, .external_lex_state = 11}, - [1887] = {.lex_state = 0, .external_lex_state = 10}, - [1888] = {.lex_state = 14, .external_lex_state = 10}, - [1889] = {.lex_state = 0, .external_lex_state = 10}, - [1890] = {.lex_state = 0, .external_lex_state = 12}, - [1891] = {.lex_state = 0, .external_lex_state = 12}, - [1892] = {.lex_state = 0, .external_lex_state = 13}, - [1893] = {.lex_state = 0, .external_lex_state = 13}, - [1894] = {.lex_state = 0, .external_lex_state = 13}, - [1895] = {.lex_state = 0, .external_lex_state = 9}, - [1896] = {.lex_state = 0, .external_lex_state = 11}, - [1897] = {.lex_state = 0, .external_lex_state = 12}, - [1898] = {.lex_state = 0, .external_lex_state = 12}, - [1899] = {.lex_state = 0, .external_lex_state = 12}, - [1900] = {.lex_state = 0, .external_lex_state = 12}, - [1901] = {.lex_state = 0, .external_lex_state = 12}, - [1902] = {.lex_state = 16, .external_lex_state = 12}, - [1903] = {.lex_state = 0, .external_lex_state = 13}, - [1904] = {.lex_state = 0, .external_lex_state = 13}, - [1905] = {.lex_state = 0, .external_lex_state = 13}, - [1906] = {.lex_state = 0, .external_lex_state = 12}, - [1907] = {.lex_state = 0, .external_lex_state = 9}, - [1908] = {.lex_state = 0, .external_lex_state = 12}, - [1909] = {.lex_state = 0, .external_lex_state = 12}, - [1910] = {.lex_state = 0, .external_lex_state = 9}, - [1911] = {.lex_state = 16, .external_lex_state = 10}, - [1912] = {.lex_state = 0, .external_lex_state = 12}, - [1913] = {.lex_state = 0, .external_lex_state = 12}, - [1914] = {.lex_state = 0, .external_lex_state = 11}, - [1915] = {.lex_state = 0, .external_lex_state = 9}, - [1916] = {.lex_state = 60, .external_lex_state = 9}, - [1917] = {.lex_state = 0, .external_lex_state = 13}, - [1918] = {.lex_state = 0, .external_lex_state = 12}, - [1919] = {.lex_state = 0, .external_lex_state = 12}, - [1920] = {.lex_state = 0, .external_lex_state = 9}, - [1921] = {.lex_state = 0, .external_lex_state = 12}, - [1922] = {.lex_state = 8, .external_lex_state = 11}, - [1923] = {.lex_state = 0, .external_lex_state = 11}, - [1924] = {.lex_state = 0, .external_lex_state = 12}, - [1925] = {.lex_state = 0, .external_lex_state = 11}, - [1926] = {.lex_state = 0, .external_lex_state = 12}, - [1927] = {.lex_state = 0, .external_lex_state = 11}, - [1928] = {.lex_state = 0, .external_lex_state = 12}, - [1929] = {.lex_state = 0, .external_lex_state = 9}, - [1930] = {.lex_state = 60, .external_lex_state = 10}, - [1931] = {.lex_state = 0, .external_lex_state = 9}, - [1932] = {.lex_state = 0, .external_lex_state = 9}, - [1933] = {.lex_state = 60, .external_lex_state = 10}, - [1934] = {.lex_state = 0, .external_lex_state = 13}, - [1935] = {.lex_state = 0, .external_lex_state = 13}, - [1936] = {.lex_state = 16, .external_lex_state = 10}, - [1937] = {.lex_state = 0, .external_lex_state = 12}, - [1938] = {.lex_state = 0, .external_lex_state = 11}, - [1939] = {.lex_state = 60, .external_lex_state = 12}, - [1940] = {.lex_state = 0, .external_lex_state = 12}, - [1941] = {.lex_state = 0, .external_lex_state = 13}, - [1942] = {.lex_state = 0, .external_lex_state = 12}, - [1943] = {.lex_state = 0, .external_lex_state = 12}, - [1944] = {.lex_state = 0, .external_lex_state = 12}, - [1945] = {.lex_state = 0, .external_lex_state = 12}, - [1946] = {.lex_state = 0, .external_lex_state = 9}, - [1947] = {.lex_state = 0, .external_lex_state = 12}, - [1948] = {.lex_state = 0, .external_lex_state = 13}, - [1949] = {.lex_state = 0, .external_lex_state = 12}, - [1950] = {.lex_state = 60, .external_lex_state = 9}, - [1951] = {.lex_state = 16, .external_lex_state = 10}, - [1952] = {.lex_state = 0, .external_lex_state = 12}, - [1953] = {.lex_state = 0, .external_lex_state = 11}, - [1954] = {.lex_state = 0, .external_lex_state = 12}, - [1955] = {.lex_state = 16, .external_lex_state = 10}, - [1956] = {.lex_state = 0, .external_lex_state = 13}, - [1957] = {.lex_state = 0, .external_lex_state = 13}, - [1958] = {.lex_state = 16, .external_lex_state = 10}, - [1959] = {.lex_state = 0, .external_lex_state = 12}, - [1960] = {.lex_state = 0, .external_lex_state = 9}, - [1961] = {.lex_state = 0, .external_lex_state = 11}, - [1962] = {.lex_state = 0, .external_lex_state = 11}, - [1963] = {.lex_state = 14, .external_lex_state = 10}, - [1964] = {.lex_state = 0, .external_lex_state = 12}, - [1965] = {.lex_state = 0, .external_lex_state = 13}, - [1966] = {.lex_state = 17, .external_lex_state = 10}, - [1967] = {.lex_state = 0, .external_lex_state = 12}, - [1968] = {.lex_state = 16, .external_lex_state = 10}, - [1969] = {.lex_state = 17, .external_lex_state = 10}, - [1970] = {.lex_state = 0, .external_lex_state = 13}, - [1971] = {.lex_state = 16, .external_lex_state = 10}, - [1972] = {.lex_state = 0, .external_lex_state = 12}, - [1973] = {.lex_state = 0, .external_lex_state = 12}, - [1974] = {.lex_state = 14, .external_lex_state = 10}, - [1975] = {.lex_state = 0, .external_lex_state = 9}, - [1976] = {.lex_state = 0, .external_lex_state = 9}, - [1977] = {.lex_state = 0, .external_lex_state = 9}, - [1978] = {.lex_state = 0, .external_lex_state = 12}, - [1979] = {.lex_state = 16, .external_lex_state = 10}, - [1980] = {.lex_state = 0, .external_lex_state = 12}, - [1981] = {.lex_state = 0, .external_lex_state = 12}, - [1982] = {.lex_state = 0, .external_lex_state = 10}, - [1983] = {.lex_state = 0, .external_lex_state = 10}, - [1984] = {.lex_state = 0, .external_lex_state = 12}, - [1985] = {.lex_state = 0, .external_lex_state = 9}, - [1986] = {.lex_state = 0, .external_lex_state = 12}, - [1987] = {.lex_state = 17, .external_lex_state = 10}, - [1988] = {.lex_state = 0, .external_lex_state = 9}, - [1989] = {.lex_state = 0, .external_lex_state = 9}, - [1990] = {.lex_state = 0, .external_lex_state = 12}, - [1991] = {.lex_state = 16, .external_lex_state = 10}, - [1992] = {.lex_state = 0, .external_lex_state = 11}, - [1993] = {.lex_state = 0, .external_lex_state = 11}, - [1994] = {.lex_state = 0, .external_lex_state = 11}, - [1995] = {.lex_state = 16, .external_lex_state = 10}, - [1996] = {.lex_state = 0, .external_lex_state = 11}, - [1997] = {.lex_state = 16, .external_lex_state = 10}, - [1998] = {.lex_state = 0, .external_lex_state = 9}, - [1999] = {.lex_state = 0, .external_lex_state = 13}, - [2000] = {.lex_state = 0, .external_lex_state = 13}, - [2001] = {.lex_state = 0, .external_lex_state = 9}, - [2002] = {.lex_state = 17, .external_lex_state = 10}, - [2003] = {.lex_state = 0, .external_lex_state = 12}, - [2004] = {.lex_state = 0, .external_lex_state = 10}, - [2005] = {.lex_state = 0, .external_lex_state = 9}, - [2006] = {.lex_state = 0, .external_lex_state = 13}, - [2007] = {.lex_state = 17, .external_lex_state = 10}, - [2008] = {.lex_state = 0, .external_lex_state = 9}, - [2009] = {.lex_state = 17, .external_lex_state = 10}, - [2010] = {.lex_state = 0, .external_lex_state = 13}, - [2011] = {.lex_state = 0, .external_lex_state = 9}, - [2012] = {.lex_state = 0, .external_lex_state = 13}, - [2013] = {.lex_state = 0, .external_lex_state = 12}, - [2014] = {.lex_state = 0, .external_lex_state = 12}, - [2015] = {.lex_state = 0, .external_lex_state = 9}, - [2016] = {.lex_state = 0, .external_lex_state = 13}, - [2017] = {.lex_state = 0, .external_lex_state = 10}, - [2018] = {.lex_state = 16, .external_lex_state = 10}, - [2019] = {.lex_state = 0, .external_lex_state = 12}, - [2020] = {.lex_state = 0, .external_lex_state = 13}, - [2021] = {.lex_state = 0, .external_lex_state = 12}, - [2022] = {.lex_state = 0, .external_lex_state = 9}, - [2023] = {.lex_state = 0, .external_lex_state = 12}, - [2024] = {.lex_state = 0, .external_lex_state = 12}, - [2025] = {.lex_state = 0, .external_lex_state = 9}, - [2026] = {.lex_state = 0, .external_lex_state = 9}, - [2027] = {.lex_state = 0, .external_lex_state = 13}, - [2028] = {.lex_state = 0, .external_lex_state = 12}, - [2029] = {.lex_state = 0, .external_lex_state = 9}, - [2030] = {.lex_state = 0, .external_lex_state = 9}, - [2031] = {.lex_state = 0, .external_lex_state = 12}, - [2032] = {.lex_state = 0, .external_lex_state = 9}, - [2033] = {.lex_state = 0, .external_lex_state = 12}, - [2034] = {.lex_state = 0, .external_lex_state = 11}, - [2035] = {.lex_state = 0, .external_lex_state = 10}, - [2036] = {.lex_state = 0, .external_lex_state = 11}, - [2037] = {.lex_state = 60, .external_lex_state = 10}, - [2038] = {.lex_state = 0, .external_lex_state = 12}, - [2039] = {.lex_state = 0, .external_lex_state = 11}, - [2040] = {.lex_state = 0, .external_lex_state = 13}, - [2041] = {.lex_state = 16, .external_lex_state = 10}, - [2042] = {.lex_state = 0, .external_lex_state = 11}, - [2043] = {.lex_state = 16, .external_lex_state = 10}, - [2044] = {.lex_state = 0, .external_lex_state = 13}, - [2045] = {.lex_state = 0, .external_lex_state = 11}, - [2046] = {.lex_state = 60, .external_lex_state = 10}, - [2047] = {.lex_state = 60, .external_lex_state = 10}, - [2048] = {.lex_state = 0, .external_lex_state = 12}, - [2049] = {.lex_state = 60, .external_lex_state = 10}, - [2050] = {.lex_state = 0, .external_lex_state = 12}, - [2051] = {.lex_state = 0, .external_lex_state = 13}, - [2052] = {.lex_state = 0, .external_lex_state = 12}, - [2053] = {.lex_state = 0, .external_lex_state = 10}, - [2054] = {.lex_state = 0, .external_lex_state = 11}, - [2055] = {.lex_state = 0, .external_lex_state = 11}, - [2056] = {.lex_state = 16, .external_lex_state = 10}, - [2057] = {.lex_state = 0, .external_lex_state = 12}, - [2058] = {.lex_state = 0, .external_lex_state = 11}, - [2059] = {.lex_state = 0, .external_lex_state = 13}, - [2060] = {.lex_state = 60, .external_lex_state = 10}, - [2061] = {.lex_state = 0, .external_lex_state = 11}, - [2062] = {.lex_state = 16, .external_lex_state = 10}, - [2063] = {.lex_state = 60, .external_lex_state = 10}, - [2064] = {.lex_state = 0, .external_lex_state = 11}, - [2065] = {.lex_state = 0, .external_lex_state = 11}, - [2066] = {.lex_state = 0, .external_lex_state = 12}, - [2067] = {.lex_state = 16, .external_lex_state = 10}, - [2068] = {.lex_state = 0, .external_lex_state = 12}, - [2069] = {.lex_state = 0, .external_lex_state = 11}, - [2070] = {.lex_state = 0, .external_lex_state = 11}, - [2071] = {.lex_state = 0, .external_lex_state = 13}, - [2072] = {.lex_state = 16, .external_lex_state = 10}, - [2073] = {.lex_state = 0, .external_lex_state = 10}, - [2074] = {.lex_state = 0, .external_lex_state = 12}, - [2075] = {.lex_state = 60, .external_lex_state = 10}, - [2076] = {.lex_state = 60, .external_lex_state = 10}, - [2077] = {.lex_state = 0, .external_lex_state = 12}, - [2078] = {.lex_state = 0, .external_lex_state = 12}, - [2079] = {.lex_state = 0, .external_lex_state = 11}, - [2080] = {.lex_state = 0, .external_lex_state = 13}, - [2081] = {.lex_state = 16, .external_lex_state = 10}, - [2082] = {.lex_state = 0, .external_lex_state = 11}, - [2083] = {.lex_state = 0, .external_lex_state = 11}, - [2084] = {.lex_state = 16, .external_lex_state = 10}, - [2085] = {.lex_state = 0, .external_lex_state = 11}, - [2086] = {.lex_state = 60, .external_lex_state = 10}, - [2087] = {.lex_state = 60, .external_lex_state = 10}, - [2088] = {.lex_state = 0, .external_lex_state = 12}, - [2089] = {.lex_state = 0, .external_lex_state = 13}, - [2090] = {.lex_state = 0, .external_lex_state = 13}, - [2091] = {.lex_state = 0, .external_lex_state = 11}, - [2092] = {.lex_state = 0, .external_lex_state = 11}, - [2093] = {.lex_state = 60, .external_lex_state = 10}, - [2094] = {.lex_state = 0, .external_lex_state = 12}, - [2095] = {.lex_state = 16, .external_lex_state = 10}, - [2096] = {.lex_state = 0, .external_lex_state = 11}, - [2097] = {.lex_state = 16, .external_lex_state = 10}, - [2098] = {.lex_state = 0, .external_lex_state = 11}, - [2099] = {.lex_state = 0, .external_lex_state = 10}, - [2100] = {.lex_state = 0, .external_lex_state = 12}, - [2101] = {.lex_state = 60, .external_lex_state = 10}, - [2102] = {.lex_state = 0, .external_lex_state = 11}, - [2103] = {.lex_state = 16, .external_lex_state = 10}, - [2104] = {.lex_state = 60, .external_lex_state = 10}, - [2105] = {.lex_state = 0, .external_lex_state = 11}, - [2106] = {.lex_state = 16, .external_lex_state = 10}, - [2107] = {.lex_state = 60, .external_lex_state = 10}, - [2108] = {.lex_state = 60, .external_lex_state = 10}, - [2109] = {.lex_state = 0, .external_lex_state = 11}, - [2110] = {.lex_state = 60, .external_lex_state = 10}, - [2111] = {.lex_state = 60, .external_lex_state = 10}, - [2112] = {.lex_state = 60, .external_lex_state = 10}, - [2113] = {.lex_state = 60, .external_lex_state = 10}, - [2114] = {.lex_state = 16, .external_lex_state = 10}, - [2115] = {.lex_state = 16, .external_lex_state = 10}, - [2116] = {.lex_state = 16, .external_lex_state = 10}, - [2117] = {.lex_state = 0, .external_lex_state = 11}, - [2118] = {.lex_state = 60, .external_lex_state = 10}, - [2119] = {.lex_state = 60, .external_lex_state = 10}, - [2120] = {.lex_state = 16, .external_lex_state = 10}, - [2121] = {.lex_state = 0, .external_lex_state = 12}, - [2122] = {.lex_state = 0, .external_lex_state = 12}, - [2123] = {.lex_state = 0, .external_lex_state = 10}, - [2124] = {.lex_state = 16, .external_lex_state = 10}, - [2125] = {.lex_state = 16, .external_lex_state = 10}, - [2126] = {.lex_state = 16, .external_lex_state = 10}, - [2127] = {.lex_state = 0, .external_lex_state = 12}, - [2128] = {.lex_state = 0, .external_lex_state = 12}, - [2129] = {.lex_state = 16, .external_lex_state = 10}, - [2130] = {.lex_state = 60, .external_lex_state = 10}, - [2131] = {.lex_state = 60, .external_lex_state = 10}, - [2132] = {.lex_state = 0, .external_lex_state = 13}, - [2133] = {.lex_state = 16, .external_lex_state = 10}, - [2134] = {.lex_state = 0, .external_lex_state = 11}, - [2135] = {.lex_state = 0, .external_lex_state = 11}, - [2136] = {.lex_state = 16, .external_lex_state = 10}, - [2137] = {.lex_state = 0, .external_lex_state = 11}, - [2138] = {.lex_state = 60, .external_lex_state = 10}, - [2139] = {.lex_state = 16, .external_lex_state = 10}, - [2140] = {.lex_state = 0, .external_lex_state = 11}, - [2141] = {.lex_state = 0, .external_lex_state = 12}, - [2142] = {.lex_state = 16, .external_lex_state = 10}, - [2143] = {.lex_state = 60, .external_lex_state = 10}, - [2144] = {.lex_state = 16, .external_lex_state = 10}, - [2145] = {.lex_state = 0, .external_lex_state = 12}, - [2146] = {.lex_state = 16, .external_lex_state = 10}, - [2147] = {.lex_state = 0, .external_lex_state = 13}, - [2148] = {.lex_state = 0, .external_lex_state = 12}, - [2149] = {.lex_state = 0, .external_lex_state = 12}, - [2150] = {.lex_state = 16, .external_lex_state = 10}, - [2151] = {.lex_state = 60, .external_lex_state = 10}, - [2152] = {.lex_state = 0, .external_lex_state = 12}, - [2153] = {.lex_state = 16, .external_lex_state = 10}, - [2154] = {.lex_state = 16, .external_lex_state = 10}, - [2155] = {.lex_state = 16, .external_lex_state = 10}, - [2156] = {.lex_state = 16, .external_lex_state = 10}, - [2157] = {.lex_state = 16, .external_lex_state = 10}, - [2158] = {.lex_state = 0, .external_lex_state = 11}, - [2159] = {.lex_state = 16, .external_lex_state = 10}, - [2160] = {.lex_state = 60, .external_lex_state = 10}, - [2161] = {.lex_state = 16, .external_lex_state = 10}, - [2162] = {.lex_state = 16, .external_lex_state = 10}, - [2163] = {.lex_state = 16, .external_lex_state = 10}, - [2164] = {.lex_state = 60, .external_lex_state = 10}, - [2165] = {.lex_state = 0, .external_lex_state = 11}, - [2166] = {.lex_state = 16, .external_lex_state = 10}, - [2167] = {.lex_state = 16, .external_lex_state = 10}, - [2168] = {.lex_state = 0, .external_lex_state = 11}, - [2169] = {.lex_state = 60, .external_lex_state = 10}, - [2170] = {.lex_state = 0, .external_lex_state = 13}, - [2171] = {.lex_state = 60, .external_lex_state = 10}, - [2172] = {.lex_state = 0, .external_lex_state = 12}, - [2173] = {.lex_state = 16, .external_lex_state = 10}, - [2174] = {.lex_state = 60, .external_lex_state = 10}, - [2175] = {.lex_state = 16, .external_lex_state = 10}, - [2176] = {.lex_state = 0, .external_lex_state = 11}, - [2177] = {.lex_state = 60, .external_lex_state = 10}, - [2178] = {.lex_state = 60, .external_lex_state = 10}, - [2179] = {.lex_state = 16, .external_lex_state = 10}, - [2180] = {.lex_state = 0, .external_lex_state = 12}, - [2181] = {.lex_state = 0, .external_lex_state = 13}, - [2182] = {.lex_state = 0, .external_lex_state = 11}, - [2183] = {.lex_state = 0, .external_lex_state = 13}, - [2184] = {.lex_state = 0, .external_lex_state = 10}, - [2185] = {.lex_state = 0, .external_lex_state = 12}, - [2186] = {.lex_state = 0, .external_lex_state = 11}, - [2187] = {.lex_state = 0, .external_lex_state = 12}, - [2188] = {.lex_state = 0, .external_lex_state = 12}, - [2189] = {.lex_state = 0, .external_lex_state = 10}, - [2190] = {.lex_state = 0, .external_lex_state = 10}, - [2191] = {.lex_state = 0, .external_lex_state = 13}, - [2192] = {.lex_state = 0, .external_lex_state = 11}, - [2193] = {.lex_state = 60, .external_lex_state = 10}, - [2194] = {.lex_state = 0, .external_lex_state = 11}, - [2195] = {.lex_state = 60, .external_lex_state = 10}, - [2196] = {.lex_state = 16, .external_lex_state = 10}, - [2197] = {.lex_state = 60, .external_lex_state = 10}, - [2198] = {.lex_state = 60, .external_lex_state = 10}, - [2199] = {.lex_state = 60, .external_lex_state = 10}, - [2200] = {.lex_state = 0, .external_lex_state = 11}, - [2201] = {.lex_state = 0, .external_lex_state = 13}, - [2202] = {.lex_state = 0, .external_lex_state = 13}, - [2203] = {.lex_state = 60, .external_lex_state = 10}, - [2204] = {.lex_state = 0, .external_lex_state = 11}, - [2205] = {.lex_state = 16, .external_lex_state = 10}, - [2206] = {.lex_state = 0, .external_lex_state = 13}, - [2207] = {.lex_state = 0, .external_lex_state = 11}, - [2208] = {.lex_state = 16, .external_lex_state = 10}, - [2209] = {.lex_state = 0, .external_lex_state = 13}, - [2210] = {.lex_state = 0, .external_lex_state = 13}, - [2211] = {.lex_state = 0, .external_lex_state = 12}, - [2212] = {.lex_state = 16, .external_lex_state = 10}, - [2213] = {.lex_state = 60, .external_lex_state = 10}, - [2214] = {.lex_state = 0, .external_lex_state = 12}, - [2215] = {.lex_state = 60, .external_lex_state = 10}, - [2216] = {.lex_state = 60, .external_lex_state = 10}, - [2217] = {.lex_state = 0, .external_lex_state = 10}, - [2218] = {.lex_state = 60, .external_lex_state = 10}, - [2219] = {.lex_state = 60, .external_lex_state = 10}, - [2220] = {.lex_state = 60, .external_lex_state = 10}, - [2221] = {.lex_state = 16, .external_lex_state = 10}, - [2222] = {.lex_state = 60, .external_lex_state = 10}, - [2223] = {.lex_state = 60, .external_lex_state = 10}, - [2224] = {.lex_state = 60, .external_lex_state = 10}, - [2225] = {.lex_state = 16, .external_lex_state = 10}, + [1] = {.lex_state = 57, .external_lex_state = 2}, + [2] = {.lex_state = 57, .external_lex_state = 3}, + [3] = {.lex_state = 57, .external_lex_state = 3}, + [4] = {.lex_state = 57, .external_lex_state = 3}, + [5] = {.lex_state = 57, .external_lex_state = 3}, + [6] = {.lex_state = 57, .external_lex_state = 3}, + [7] = {.lex_state = 57, .external_lex_state = 3}, + [8] = {.lex_state = 57, .external_lex_state = 3}, + [9] = {.lex_state = 57, .external_lex_state = 3}, + [10] = {.lex_state = 57, .external_lex_state = 3}, + [11] = {.lex_state = 57, .external_lex_state = 3}, + [12] = {.lex_state = 57, .external_lex_state = 3}, + [13] = {.lex_state = 57, .external_lex_state = 3}, + [14] = {.lex_state = 57, .external_lex_state = 3}, + [15] = {.lex_state = 57, .external_lex_state = 3}, + [16] = {.lex_state = 57, .external_lex_state = 3}, + [17] = {.lex_state = 57, .external_lex_state = 3}, + [18] = {.lex_state = 57, .external_lex_state = 3}, + [19] = {.lex_state = 57, .external_lex_state = 3}, + [20] = {.lex_state = 57, .external_lex_state = 3}, + [21] = {.lex_state = 57, .external_lex_state = 3}, + [22] = {.lex_state = 57, .external_lex_state = 3}, + [23] = {.lex_state = 57, .external_lex_state = 3}, + [24] = {.lex_state = 57, .external_lex_state = 3}, + [25] = {.lex_state = 57, .external_lex_state = 3}, + [26] = {.lex_state = 57, .external_lex_state = 3}, + [27] = {.lex_state = 57, .external_lex_state = 3}, + [28] = {.lex_state = 57, .external_lex_state = 3}, + [29] = {.lex_state = 57, .external_lex_state = 3}, + [30] = {.lex_state = 57, .external_lex_state = 3}, + [31] = {.lex_state = 57, .external_lex_state = 3}, + [32] = {.lex_state = 57, .external_lex_state = 3}, + [33] = {.lex_state = 57, .external_lex_state = 3}, + [34] = {.lex_state = 57, .external_lex_state = 3}, + [35] = {.lex_state = 57, .external_lex_state = 3}, + [36] = {.lex_state = 57, .external_lex_state = 3}, + [37] = {.lex_state = 57, .external_lex_state = 3}, + [38] = {.lex_state = 57, .external_lex_state = 3}, + [39] = {.lex_state = 57, .external_lex_state = 3}, + [40] = {.lex_state = 57, .external_lex_state = 3}, + [41] = {.lex_state = 57, .external_lex_state = 3}, + [42] = {.lex_state = 57, .external_lex_state = 3}, + [43] = {.lex_state = 57, .external_lex_state = 3}, + [44] = {.lex_state = 57, .external_lex_state = 3}, + [45] = {.lex_state = 57, .external_lex_state = 3}, + [46] = {.lex_state = 57, .external_lex_state = 3}, + [47] = {.lex_state = 57, .external_lex_state = 3}, + [48] = {.lex_state = 57, .external_lex_state = 3}, + [49] = {.lex_state = 57, .external_lex_state = 3}, + [50] = {.lex_state = 57, .external_lex_state = 3}, + [51] = {.lex_state = 57, .external_lex_state = 3}, + [52] = {.lex_state = 57, .external_lex_state = 3}, + [53] = {.lex_state = 57, .external_lex_state = 3}, + [54] = {.lex_state = 57, .external_lex_state = 3}, + [55] = {.lex_state = 57, .external_lex_state = 3}, + [56] = {.lex_state = 57, .external_lex_state = 3}, + [57] = {.lex_state = 57, .external_lex_state = 3}, + [58] = {.lex_state = 57, .external_lex_state = 3}, + [59] = {.lex_state = 57, .external_lex_state = 3}, + [60] = {.lex_state = 57, .external_lex_state = 3}, + [61] = {.lex_state = 57, .external_lex_state = 2}, + [62] = {.lex_state = 57, .external_lex_state = 3}, + [63] = {.lex_state = 57, .external_lex_state = 3}, + [64] = {.lex_state = 57, .external_lex_state = 3}, + [65] = {.lex_state = 57, .external_lex_state = 3}, + [66] = {.lex_state = 57, .external_lex_state = 2}, + [67] = {.lex_state = 57, .external_lex_state = 3}, + [68] = {.lex_state = 57, .external_lex_state = 3}, + [69] = {.lex_state = 57, .external_lex_state = 3}, + [70] = {.lex_state = 30, .external_lex_state = 4}, + [71] = {.lex_state = 30, .external_lex_state = 4}, + [72] = {.lex_state = 30, .external_lex_state = 4}, + [73] = {.lex_state = 30, .external_lex_state = 4}, + [74] = {.lex_state = 39, .external_lex_state = 4}, + [75] = {.lex_state = 57, .external_lex_state = 5}, + [76] = {.lex_state = 57, .external_lex_state = 5}, + [77] = {.lex_state = 57, .external_lex_state = 5}, + [78] = {.lex_state = 57, .external_lex_state = 5}, + [79] = {.lex_state = 57, .external_lex_state = 5}, + [80] = {.lex_state = 57, .external_lex_state = 5}, + [81] = {.lex_state = 57, .external_lex_state = 5}, + [82] = {.lex_state = 57, .external_lex_state = 5}, + [83] = {.lex_state = 57, .external_lex_state = 5}, + [84] = {.lex_state = 57, .external_lex_state = 5}, + [85] = {.lex_state = 57, .external_lex_state = 5}, + [86] = {.lex_state = 57, .external_lex_state = 5}, + [87] = {.lex_state = 57, .external_lex_state = 5}, + [88] = {.lex_state = 57, .external_lex_state = 5}, + [89] = {.lex_state = 57, .external_lex_state = 5}, + [90] = {.lex_state = 57, .external_lex_state = 5}, + [91] = {.lex_state = 57, .external_lex_state = 5}, + [92] = {.lex_state = 57, .external_lex_state = 5}, + [93] = {.lex_state = 57, .external_lex_state = 5}, + [94] = {.lex_state = 57, .external_lex_state = 5}, + [95] = {.lex_state = 57, .external_lex_state = 5}, + [96] = {.lex_state = 57, .external_lex_state = 5}, + [97] = {.lex_state = 57, .external_lex_state = 5}, + [98] = {.lex_state = 57, .external_lex_state = 5}, + [99] = {.lex_state = 57, .external_lex_state = 5}, + [100] = {.lex_state = 57, .external_lex_state = 5}, + [101] = {.lex_state = 57, .external_lex_state = 5}, + [102] = {.lex_state = 57, .external_lex_state = 5}, + [103] = {.lex_state = 57, .external_lex_state = 5}, + [104] = {.lex_state = 57, .external_lex_state = 5}, + [105] = {.lex_state = 57, .external_lex_state = 5}, + [106] = {.lex_state = 57, .external_lex_state = 5}, + [107] = {.lex_state = 57, .external_lex_state = 5}, + [108] = {.lex_state = 57, .external_lex_state = 5}, + [109] = {.lex_state = 57, .external_lex_state = 5}, + [110] = {.lex_state = 57, .external_lex_state = 5}, + [111] = {.lex_state = 57, .external_lex_state = 5}, + [112] = {.lex_state = 57, .external_lex_state = 5}, + [113] = {.lex_state = 57, .external_lex_state = 5}, + [114] = {.lex_state = 57, .external_lex_state = 5}, + [115] = {.lex_state = 57, .external_lex_state = 5}, + [116] = {.lex_state = 57, .external_lex_state = 5}, + [117] = {.lex_state = 57, .external_lex_state = 5}, + [118] = {.lex_state = 57, .external_lex_state = 5}, + [119] = {.lex_state = 57, .external_lex_state = 5}, + [120] = {.lex_state = 57, .external_lex_state = 5}, + [121] = {.lex_state = 57, .external_lex_state = 5}, + [122] = {.lex_state = 57, .external_lex_state = 5}, + [123] = {.lex_state = 57, .external_lex_state = 5}, + [124] = {.lex_state = 57, .external_lex_state = 5}, + [125] = {.lex_state = 57, .external_lex_state = 5}, + [126] = {.lex_state = 57, .external_lex_state = 5}, + [127] = {.lex_state = 57, .external_lex_state = 5}, + [128] = {.lex_state = 57, .external_lex_state = 5}, + [129] = {.lex_state = 57, .external_lex_state = 5}, + [130] = {.lex_state = 57, .external_lex_state = 5}, + [131] = {.lex_state = 57, .external_lex_state = 4}, + [132] = {.lex_state = 57, .external_lex_state = 4}, + [133] = {.lex_state = 57, .external_lex_state = 4}, + [134] = {.lex_state = 57, .external_lex_state = 4}, + [135] = {.lex_state = 57, .external_lex_state = 4}, + [136] = {.lex_state = 57, .external_lex_state = 4}, + [137] = {.lex_state = 57, .external_lex_state = 4}, + [138] = {.lex_state = 57, .external_lex_state = 4}, + [139] = {.lex_state = 57, .external_lex_state = 4}, + [140] = {.lex_state = 57, .external_lex_state = 4}, + [141] = {.lex_state = 57, .external_lex_state = 4}, + [142] = {.lex_state = 57, .external_lex_state = 4}, + [143] = {.lex_state = 57, .external_lex_state = 4}, + [144] = {.lex_state = 57, .external_lex_state = 4}, + [145] = {.lex_state = 57, .external_lex_state = 2}, + [146] = {.lex_state = 31, .external_lex_state = 6}, + [147] = {.lex_state = 40, .external_lex_state = 6}, + [148] = {.lex_state = 40, .external_lex_state = 6}, + [149] = {.lex_state = 40, .external_lex_state = 4}, + [150] = {.lex_state = 39, .external_lex_state = 4}, + [151] = {.lex_state = 31, .external_lex_state = 6}, + [152] = {.lex_state = 40, .external_lex_state = 6}, + [153] = {.lex_state = 40, .external_lex_state = 7}, + [154] = {.lex_state = 40, .external_lex_state = 2}, + [155] = {.lex_state = 31, .external_lex_state = 4}, + [156] = {.lex_state = 40, .external_lex_state = 6}, + [157] = {.lex_state = 31, .external_lex_state = 4}, + [158] = {.lex_state = 40, .external_lex_state = 7}, + [159] = {.lex_state = 40, .external_lex_state = 8}, + [160] = {.lex_state = 31, .external_lex_state = 6}, + [161] = {.lex_state = 31, .external_lex_state = 7}, + [162] = {.lex_state = 40, .external_lex_state = 7}, + [163] = {.lex_state = 31, .external_lex_state = 2}, + [164] = {.lex_state = 40, .external_lex_state = 7}, + [165] = {.lex_state = 40, .external_lex_state = 8}, + [166] = {.lex_state = 40, .external_lex_state = 7}, + [167] = {.lex_state = 40, .external_lex_state = 8}, + [168] = {.lex_state = 31, .external_lex_state = 8}, + [169] = {.lex_state = 40, .external_lex_state = 7}, + [170] = {.lex_state = 31, .external_lex_state = 2}, + [171] = {.lex_state = 40, .external_lex_state = 8}, + [172] = {.lex_state = 31, .external_lex_state = 8}, + [173] = {.lex_state = 31, .external_lex_state = 8}, + [174] = {.lex_state = 31, .external_lex_state = 7}, + [175] = {.lex_state = 39, .external_lex_state = 2}, + [176] = {.lex_state = 31, .external_lex_state = 7}, + [177] = {.lex_state = 39, .external_lex_state = 2}, + [178] = {.lex_state = 31, .external_lex_state = 6}, + [179] = {.lex_state = 31, .external_lex_state = 7}, + [180] = {.lex_state = 31, .external_lex_state = 7}, + [181] = {.lex_state = 31, .external_lex_state = 2}, + [182] = {.lex_state = 31, .external_lex_state = 2}, + [183] = {.lex_state = 31, .external_lex_state = 2}, + [184] = {.lex_state = 31, .external_lex_state = 7}, + [185] = {.lex_state = 31, .external_lex_state = 8}, + [186] = {.lex_state = 31, .external_lex_state = 2}, + [187] = {.lex_state = 57, .external_lex_state = 2}, + [188] = {.lex_state = 31, .external_lex_state = 6}, + [189] = {.lex_state = 57, .external_lex_state = 8}, + [190] = {.lex_state = 57, .external_lex_state = 7}, + [191] = {.lex_state = 57, .external_lex_state = 7}, + [192] = {.lex_state = 57, .external_lex_state = 8}, + [193] = {.lex_state = 57, .external_lex_state = 7}, + [194] = {.lex_state = 31, .external_lex_state = 6}, + [195] = {.lex_state = 31, .external_lex_state = 6}, + [196] = {.lex_state = 57, .external_lex_state = 8}, + [197] = {.lex_state = 57, .external_lex_state = 7}, + [198] = {.lex_state = 31, .external_lex_state = 6}, + [199] = {.lex_state = 57, .external_lex_state = 8}, + [200] = {.lex_state = 57, .external_lex_state = 8}, + [201] = {.lex_state = 57, .external_lex_state = 8}, + [202] = {.lex_state = 31, .external_lex_state = 6}, + [203] = {.lex_state = 57, .external_lex_state = 7}, + [204] = {.lex_state = 57, .external_lex_state = 8}, + [205] = {.lex_state = 57, .external_lex_state = 7}, + [206] = {.lex_state = 57, .external_lex_state = 8}, + [207] = {.lex_state = 31, .external_lex_state = 6}, + [208] = {.lex_state = 57, .external_lex_state = 7}, + [209] = {.lex_state = 57, .external_lex_state = 2}, + [210] = {.lex_state = 57, .external_lex_state = 8}, + [211] = {.lex_state = 31, .external_lex_state = 6}, + [212] = {.lex_state = 57, .external_lex_state = 7}, + [213] = {.lex_state = 57, .external_lex_state = 2}, + [214] = {.lex_state = 57, .external_lex_state = 7}, + [215] = {.lex_state = 31, .external_lex_state = 6}, + [216] = {.lex_state = 57, .external_lex_state = 7}, + [217] = {.lex_state = 57, .external_lex_state = 8}, + [218] = {.lex_state = 32, .external_lex_state = 4}, + [219] = {.lex_state = 32, .external_lex_state = 4}, + [220] = {.lex_state = 57, .external_lex_state = 2}, + [221] = {.lex_state = 57, .external_lex_state = 2}, + [222] = {.lex_state = 31, .external_lex_state = 7}, + [223] = {.lex_state = 31, .external_lex_state = 7}, + [224] = {.lex_state = 32, .external_lex_state = 2}, + [225] = {.lex_state = 31, .external_lex_state = 7}, + [226] = {.lex_state = 31, .external_lex_state = 7}, + [227] = {.lex_state = 31, .external_lex_state = 7}, + [228] = {.lex_state = 31, .external_lex_state = 7}, + [229] = {.lex_state = 31, .external_lex_state = 7}, + [230] = {.lex_state = 31, .external_lex_state = 7}, + [231] = {.lex_state = 57, .external_lex_state = 7}, + [232] = {.lex_state = 32, .external_lex_state = 2}, + [233] = {.lex_state = 57, .external_lex_state = 6}, + [234] = {.lex_state = 31, .external_lex_state = 7}, + [235] = {.lex_state = 57, .external_lex_state = 8}, + [236] = {.lex_state = 31, .external_lex_state = 7}, + [237] = {.lex_state = 31, .external_lex_state = 7}, + [238] = {.lex_state = 31, .external_lex_state = 7}, + [239] = {.lex_state = 57, .external_lex_state = 8}, + [240] = {.lex_state = 57, .external_lex_state = 7}, + [241] = {.lex_state = 57, .external_lex_state = 8}, + [242] = {.lex_state = 31, .external_lex_state = 7}, + [243] = {.lex_state = 57, .external_lex_state = 7}, + [244] = {.lex_state = 31, .external_lex_state = 7}, + [245] = {.lex_state = 31, .external_lex_state = 7}, + [246] = {.lex_state = 57, .external_lex_state = 7}, + [247] = {.lex_state = 31, .external_lex_state = 7}, + [248] = {.lex_state = 31, .external_lex_state = 7}, + [249] = {.lex_state = 31, .external_lex_state = 7}, + [250] = {.lex_state = 31, .external_lex_state = 7}, + [251] = {.lex_state = 31, .external_lex_state = 7}, + [252] = {.lex_state = 31, .external_lex_state = 7}, + [253] = {.lex_state = 57, .external_lex_state = 7}, + [254] = {.lex_state = 57, .external_lex_state = 8}, + [255] = {.lex_state = 31, .external_lex_state = 7}, + [256] = {.lex_state = 31, .external_lex_state = 7}, + [257] = {.lex_state = 57, .external_lex_state = 7}, + [258] = {.lex_state = 57, .external_lex_state = 7}, + [259] = {.lex_state = 57, .external_lex_state = 8}, + [260] = {.lex_state = 31, .external_lex_state = 7}, + [261] = {.lex_state = 57, .external_lex_state = 7}, + [262] = {.lex_state = 57, .external_lex_state = 7}, + [263] = {.lex_state = 57, .external_lex_state = 8}, + [264] = {.lex_state = 57, .external_lex_state = 7}, + [265] = {.lex_state = 31, .external_lex_state = 7}, + [266] = {.lex_state = 31, .external_lex_state = 7}, + [267] = {.lex_state = 31, .external_lex_state = 7}, + [268] = {.lex_state = 31, .external_lex_state = 7}, + [269] = {.lex_state = 31, .external_lex_state = 7}, + [270] = {.lex_state = 31, .external_lex_state = 7}, + [271] = {.lex_state = 31, .external_lex_state = 7}, + [272] = {.lex_state = 31, .external_lex_state = 7}, + [273] = {.lex_state = 31, .external_lex_state = 7}, + [274] = {.lex_state = 31, .external_lex_state = 7}, + [275] = {.lex_state = 57, .external_lex_state = 7}, + [276] = {.lex_state = 57, .external_lex_state = 8}, + [277] = {.lex_state = 57, .external_lex_state = 7}, + [278] = {.lex_state = 57, .external_lex_state = 8}, + [279] = {.lex_state = 31, .external_lex_state = 7}, + [280] = {.lex_state = 31, .external_lex_state = 7}, + [281] = {.lex_state = 57, .external_lex_state = 7}, + [282] = {.lex_state = 57, .external_lex_state = 7}, + [283] = {.lex_state = 31, .external_lex_state = 7}, + [284] = {.lex_state = 31, .external_lex_state = 7}, + [285] = {.lex_state = 31, .external_lex_state = 7}, + [286] = {.lex_state = 31, .external_lex_state = 7}, + [287] = {.lex_state = 57, .external_lex_state = 7}, + [288] = {.lex_state = 31, .external_lex_state = 7}, + [289] = {.lex_state = 57, .external_lex_state = 8}, + [290] = {.lex_state = 57, .external_lex_state = 7}, + [291] = {.lex_state = 57, .external_lex_state = 7}, + [292] = {.lex_state = 57, .external_lex_state = 8}, + [293] = {.lex_state = 57, .external_lex_state = 8}, + [294] = {.lex_state = 57, .external_lex_state = 6}, + [295] = {.lex_state = 57, .external_lex_state = 6}, + [296] = {.lex_state = 57, .external_lex_state = 7}, + [297] = {.lex_state = 57, .external_lex_state = 8}, + [298] = {.lex_state = 57, .external_lex_state = 6}, + [299] = {.lex_state = 57, .external_lex_state = 6}, + [300] = {.lex_state = 57, .external_lex_state = 7}, + [301] = {.lex_state = 57, .external_lex_state = 6}, + [302] = {.lex_state = 57, .external_lex_state = 6}, + [303] = {.lex_state = 57, .external_lex_state = 6}, + [304] = {.lex_state = 57, .external_lex_state = 8}, + [305] = {.lex_state = 57, .external_lex_state = 7}, + [306] = {.lex_state = 31, .external_lex_state = 2}, + [307] = {.lex_state = 57, .external_lex_state = 7}, + [308] = {.lex_state = 57, .external_lex_state = 6}, + [309] = {.lex_state = 57, .external_lex_state = 8}, + [310] = {.lex_state = 31, .external_lex_state = 6}, + [311] = {.lex_state = 31, .external_lex_state = 6}, + [312] = {.lex_state = 57, .external_lex_state = 2}, + [313] = {.lex_state = 31, .external_lex_state = 6}, + [314] = {.lex_state = 31, .external_lex_state = 6}, + [315] = {.lex_state = 57, .external_lex_state = 4}, + [316] = {.lex_state = 31, .external_lex_state = 6}, + [317] = {.lex_state = 31, .external_lex_state = 6}, + [318] = {.lex_state = 57, .external_lex_state = 7}, + [319] = {.lex_state = 57, .external_lex_state = 8}, + [320] = {.lex_state = 57, .external_lex_state = 4}, + [321] = {.lex_state = 57, .external_lex_state = 2}, + [322] = {.lex_state = 31, .external_lex_state = 6}, + [323] = {.lex_state = 31, .external_lex_state = 6}, + [324] = {.lex_state = 57, .external_lex_state = 2}, + [325] = {.lex_state = 31, .external_lex_state = 6}, + [326] = {.lex_state = 31, .external_lex_state = 6}, + [327] = {.lex_state = 31, .external_lex_state = 6}, + [328] = {.lex_state = 31, .external_lex_state = 6}, + [329] = {.lex_state = 31, .external_lex_state = 6}, + [330] = {.lex_state = 31, .external_lex_state = 6}, + [331] = {.lex_state = 31, .external_lex_state = 6}, + [332] = {.lex_state = 31, .external_lex_state = 6}, + [333] = {.lex_state = 57, .external_lex_state = 8}, + [334] = {.lex_state = 57, .external_lex_state = 8}, + [335] = {.lex_state = 57, .external_lex_state = 8}, + [336] = {.lex_state = 57, .external_lex_state = 2}, + [337] = {.lex_state = 57, .external_lex_state = 8}, + [338] = {.lex_state = 57, .external_lex_state = 8}, + [339] = {.lex_state = 57, .external_lex_state = 8}, + [340] = {.lex_state = 57, .external_lex_state = 2}, + [341] = {.lex_state = 57, .external_lex_state = 8}, + [342] = {.lex_state = 57, .external_lex_state = 8}, + [343] = {.lex_state = 57, .external_lex_state = 8}, + [344] = {.lex_state = 57, .external_lex_state = 2}, + [345] = {.lex_state = 57, .external_lex_state = 8}, + [346] = {.lex_state = 57, .external_lex_state = 8}, + [347] = {.lex_state = 57, .external_lex_state = 8}, + [348] = {.lex_state = 57, .external_lex_state = 2}, + [349] = {.lex_state = 57, .external_lex_state = 8}, + [350] = {.lex_state = 57, .external_lex_state = 8}, + [351] = {.lex_state = 57, .external_lex_state = 8}, + [352] = {.lex_state = 57, .external_lex_state = 8}, + [353] = {.lex_state = 57, .external_lex_state = 4}, + [354] = {.lex_state = 57, .external_lex_state = 8}, + [355] = {.lex_state = 57, .external_lex_state = 8}, + [356] = {.lex_state = 31, .external_lex_state = 2}, + [357] = {.lex_state = 57, .external_lex_state = 8}, + [358] = {.lex_state = 57, .external_lex_state = 8}, + [359] = {.lex_state = 57, .external_lex_state = 8}, + [360] = {.lex_state = 57, .external_lex_state = 8}, + [361] = {.lex_state = 57, .external_lex_state = 8}, + [362] = {.lex_state = 57, .external_lex_state = 8}, + [363] = {.lex_state = 57, .external_lex_state = 8}, + [364] = {.lex_state = 57, .external_lex_state = 8}, + [365] = {.lex_state = 57, .external_lex_state = 8}, + [366] = {.lex_state = 57, .external_lex_state = 4}, + [367] = {.lex_state = 57, .external_lex_state = 8}, + [368] = {.lex_state = 57, .external_lex_state = 4}, + [369] = {.lex_state = 57, .external_lex_state = 8}, + [370] = {.lex_state = 57, .external_lex_state = 8}, + [371] = {.lex_state = 57, .external_lex_state = 8}, + [372] = {.lex_state = 57, .external_lex_state = 8}, + [373] = {.lex_state = 57, .external_lex_state = 4}, + [374] = {.lex_state = 57, .external_lex_state = 2}, + [375] = {.lex_state = 57, .external_lex_state = 2}, + [376] = {.lex_state = 57, .external_lex_state = 2}, + [377] = {.lex_state = 57, .external_lex_state = 2}, + [378] = {.lex_state = 57, .external_lex_state = 7}, + [379] = {.lex_state = 57, .external_lex_state = 2}, + [380] = {.lex_state = 57, .external_lex_state = 4}, + [381] = {.lex_state = 57, .external_lex_state = 2}, + [382] = {.lex_state = 57, .external_lex_state = 2}, + [383] = {.lex_state = 57, .external_lex_state = 4}, + [384] = {.lex_state = 57, .external_lex_state = 2}, + [385] = {.lex_state = 33, .external_lex_state = 9}, + [386] = {.lex_state = 57, .external_lex_state = 7}, + [387] = {.lex_state = 57, .external_lex_state = 7}, + [388] = {.lex_state = 57, .external_lex_state = 4}, + [389] = {.lex_state = 57, .external_lex_state = 4}, + [390] = {.lex_state = 57, .external_lex_state = 2}, + [391] = {.lex_state = 57, .external_lex_state = 7}, + [392] = {.lex_state = 57, .external_lex_state = 2}, + [393] = {.lex_state = 57, .external_lex_state = 2}, + [394] = {.lex_state = 57, .external_lex_state = 8}, + [395] = {.lex_state = 57, .external_lex_state = 2}, + [396] = {.lex_state = 57, .external_lex_state = 2}, + [397] = {.lex_state = 57, .external_lex_state = 2}, + [398] = {.lex_state = 57, .external_lex_state = 2}, + [399] = {.lex_state = 57, .external_lex_state = 2}, + [400] = {.lex_state = 57, .external_lex_state = 4}, + [401] = {.lex_state = 57, .external_lex_state = 2}, + [402] = {.lex_state = 57, .external_lex_state = 8}, + [403] = {.lex_state = 33, .external_lex_state = 4}, + [404] = {.lex_state = 57, .external_lex_state = 2}, + [405] = {.lex_state = 57, .external_lex_state = 2}, + [406] = {.lex_state = 57, .external_lex_state = 2}, + [407] = {.lex_state = 57, .external_lex_state = 8}, + [408] = {.lex_state = 57, .external_lex_state = 2}, + [409] = {.lex_state = 57, .external_lex_state = 2}, + [410] = {.lex_state = 57, .external_lex_state = 2}, + [411] = {.lex_state = 57, .external_lex_state = 8}, + [412] = {.lex_state = 57, .external_lex_state = 2}, + [413] = {.lex_state = 57, .external_lex_state = 2}, + [414] = {.lex_state = 57, .external_lex_state = 8}, + [415] = {.lex_state = 57, .external_lex_state = 2}, + [416] = {.lex_state = 57, .external_lex_state = 2}, + [417] = {.lex_state = 57, .external_lex_state = 2}, + [418] = {.lex_state = 57, .external_lex_state = 2}, + [419] = {.lex_state = 57, .external_lex_state = 2}, + [420] = {.lex_state = 57, .external_lex_state = 2}, + [421] = {.lex_state = 33, .external_lex_state = 9}, + [422] = {.lex_state = 57, .external_lex_state = 2}, + [423] = {.lex_state = 57, .external_lex_state = 2}, + [424] = {.lex_state = 57, .external_lex_state = 2}, + [425] = {.lex_state = 57, .external_lex_state = 2}, + [426] = {.lex_state = 57, .external_lex_state = 2}, + [427] = {.lex_state = 57, .external_lex_state = 2}, + [428] = {.lex_state = 57, .external_lex_state = 2}, + [429] = {.lex_state = 57, .external_lex_state = 2}, + [430] = {.lex_state = 57, .external_lex_state = 2}, + [431] = {.lex_state = 57, .external_lex_state = 2}, + [432] = {.lex_state = 57, .external_lex_state = 2}, + [433] = {.lex_state = 57, .external_lex_state = 2}, + [434] = {.lex_state = 57, .external_lex_state = 2}, + [435] = {.lex_state = 57, .external_lex_state = 2}, + [436] = {.lex_state = 57, .external_lex_state = 2}, + [437] = {.lex_state = 57, .external_lex_state = 2}, + [438] = {.lex_state = 57, .external_lex_state = 2}, + [439] = {.lex_state = 57, .external_lex_state = 2}, + [440] = {.lex_state = 57, .external_lex_state = 2}, + [441] = {.lex_state = 57, .external_lex_state = 2}, + [442] = {.lex_state = 57, .external_lex_state = 2}, + [443] = {.lex_state = 57, .external_lex_state = 2}, + [444] = {.lex_state = 57, .external_lex_state = 2}, + [445] = {.lex_state = 57, .external_lex_state = 2}, + [446] = {.lex_state = 57, .external_lex_state = 2}, + [447] = {.lex_state = 57, .external_lex_state = 2}, + [448] = {.lex_state = 57, .external_lex_state = 2}, + [449] = {.lex_state = 57, .external_lex_state = 2}, + [450] = {.lex_state = 57, .external_lex_state = 2}, + [451] = {.lex_state = 57, .external_lex_state = 2}, + [452] = {.lex_state = 57, .external_lex_state = 2}, + [453] = {.lex_state = 57, .external_lex_state = 2}, + [454] = {.lex_state = 57, .external_lex_state = 2}, + [455] = {.lex_state = 57, .external_lex_state = 2}, + [456] = {.lex_state = 57, .external_lex_state = 2}, + [457] = {.lex_state = 57, .external_lex_state = 2}, + [458] = {.lex_state = 57, .external_lex_state = 2}, + [459] = {.lex_state = 57, .external_lex_state = 2}, + [460] = {.lex_state = 57, .external_lex_state = 2}, + [461] = {.lex_state = 57, .external_lex_state = 2}, + [462] = {.lex_state = 57, .external_lex_state = 2}, + [463] = {.lex_state = 57, .external_lex_state = 2}, + [464] = {.lex_state = 57, .external_lex_state = 2}, + [465] = {.lex_state = 57, .external_lex_state = 2}, + [466] = {.lex_state = 57, .external_lex_state = 2}, + [467] = {.lex_state = 57, .external_lex_state = 2}, + [468] = {.lex_state = 57, .external_lex_state = 2}, + [469] = {.lex_state = 57, .external_lex_state = 2}, + [470] = {.lex_state = 57, .external_lex_state = 2}, + [471] = {.lex_state = 57, .external_lex_state = 2}, + [472] = {.lex_state = 57, .external_lex_state = 2}, + [473] = {.lex_state = 57, .external_lex_state = 2}, + [474] = {.lex_state = 57, .external_lex_state = 2}, + [475] = {.lex_state = 57, .external_lex_state = 2}, + [476] = {.lex_state = 57, .external_lex_state = 2}, + [477] = {.lex_state = 57, .external_lex_state = 2}, + [478] = {.lex_state = 57, .external_lex_state = 2}, + [479] = {.lex_state = 57, .external_lex_state = 2}, + [480] = {.lex_state = 57, .external_lex_state = 2}, + [481] = {.lex_state = 57, .external_lex_state = 2}, + [482] = {.lex_state = 57, .external_lex_state = 2}, + [483] = {.lex_state = 57, .external_lex_state = 2}, + [484] = {.lex_state = 57, .external_lex_state = 2}, + [485] = {.lex_state = 58, .external_lex_state = 3}, + [486] = {.lex_state = 57, .external_lex_state = 2}, + [487] = {.lex_state = 57, .external_lex_state = 2}, + [488] = {.lex_state = 57, .external_lex_state = 2}, + [489] = {.lex_state = 57, .external_lex_state = 2}, + [490] = {.lex_state = 57, .external_lex_state = 2}, + [491] = {.lex_state = 59, .external_lex_state = 3}, + [492] = {.lex_state = 57, .external_lex_state = 2}, + [493] = {.lex_state = 57, .external_lex_state = 2}, + [494] = {.lex_state = 58, .external_lex_state = 2}, + [495] = {.lex_state = 59, .external_lex_state = 2}, + [496] = {.lex_state = 57, .external_lex_state = 2}, + [497] = {.lex_state = 57, .external_lex_state = 2}, + [498] = {.lex_state = 57, .external_lex_state = 2}, + [499] = {.lex_state = 57, .external_lex_state = 2}, + [500] = {.lex_state = 57, .external_lex_state = 2}, + [501] = {.lex_state = 57, .external_lex_state = 2}, + [502] = {.lex_state = 57, .external_lex_state = 2}, + [503] = {.lex_state = 57, .external_lex_state = 2}, + [504] = {.lex_state = 57, .external_lex_state = 2}, + [505] = {.lex_state = 57, .external_lex_state = 2}, + [506] = {.lex_state = 57, .external_lex_state = 2}, + [507] = {.lex_state = 57, .external_lex_state = 2}, + [508] = {.lex_state = 57, .external_lex_state = 2}, + [509] = {.lex_state = 57, .external_lex_state = 2}, + [510] = {.lex_state = 57, .external_lex_state = 2}, + [511] = {.lex_state = 57, .external_lex_state = 2}, + [512] = {.lex_state = 57, .external_lex_state = 2}, + [513] = {.lex_state = 57, .external_lex_state = 2}, + [514] = {.lex_state = 57, .external_lex_state = 2}, + [515] = {.lex_state = 57, .external_lex_state = 2}, + [516] = {.lex_state = 57, .external_lex_state = 2}, + [517] = {.lex_state = 57, .external_lex_state = 2}, + [518] = {.lex_state = 57, .external_lex_state = 2}, + [519] = {.lex_state = 57, .external_lex_state = 2}, + [520] = {.lex_state = 57, .external_lex_state = 2}, + [521] = {.lex_state = 57, .external_lex_state = 2}, + [522] = {.lex_state = 57, .external_lex_state = 2}, + [523] = {.lex_state = 57, .external_lex_state = 2}, + [524] = {.lex_state = 57, .external_lex_state = 2}, + [525] = {.lex_state = 58, .external_lex_state = 3}, + [526] = {.lex_state = 57, .external_lex_state = 2}, + [527] = {.lex_state = 57, .external_lex_state = 2}, + [528] = {.lex_state = 57, .external_lex_state = 2}, + [529] = {.lex_state = 59, .external_lex_state = 3}, + [530] = {.lex_state = 57, .external_lex_state = 2}, + [531] = {.lex_state = 57, .external_lex_state = 2}, + [532] = {.lex_state = 57, .external_lex_state = 2}, + [533] = {.lex_state = 57, .external_lex_state = 2}, + [534] = {.lex_state = 57, .external_lex_state = 2}, + [535] = {.lex_state = 57, .external_lex_state = 2}, + [536] = {.lex_state = 57, .external_lex_state = 2}, + [537] = {.lex_state = 57, .external_lex_state = 2}, + [538] = {.lex_state = 57, .external_lex_state = 2}, + [539] = {.lex_state = 57, .external_lex_state = 2}, + [540] = {.lex_state = 57, .external_lex_state = 2}, + [541] = {.lex_state = 57, .external_lex_state = 2}, + [542] = {.lex_state = 57, .external_lex_state = 2}, + [543] = {.lex_state = 57, .external_lex_state = 2}, + [544] = {.lex_state = 57, .external_lex_state = 2}, + [545] = {.lex_state = 57, .external_lex_state = 2}, + [546] = {.lex_state = 57, .external_lex_state = 2}, + [547] = {.lex_state = 57, .external_lex_state = 2}, + [548] = {.lex_state = 57, .external_lex_state = 2}, + [549] = {.lex_state = 57, .external_lex_state = 2}, + [550] = {.lex_state = 57, .external_lex_state = 2}, + [551] = {.lex_state = 57, .external_lex_state = 2}, + [552] = {.lex_state = 57, .external_lex_state = 2}, + [553] = {.lex_state = 57, .external_lex_state = 2}, + [554] = {.lex_state = 57, .external_lex_state = 2}, + [555] = {.lex_state = 57, .external_lex_state = 2}, + [556] = {.lex_state = 57, .external_lex_state = 2}, + [557] = {.lex_state = 57, .external_lex_state = 2}, + [558] = {.lex_state = 57, .external_lex_state = 2}, + [559] = {.lex_state = 57, .external_lex_state = 2}, + [560] = {.lex_state = 57, .external_lex_state = 2}, + [561] = {.lex_state = 57, .external_lex_state = 2}, + [562] = {.lex_state = 57, .external_lex_state = 2}, + [563] = {.lex_state = 57, .external_lex_state = 2}, + [564] = {.lex_state = 57, .external_lex_state = 2}, + [565] = {.lex_state = 57, .external_lex_state = 2}, + [566] = {.lex_state = 57, .external_lex_state = 2}, + [567] = {.lex_state = 57, .external_lex_state = 2}, + [568] = {.lex_state = 57, .external_lex_state = 2}, + [569] = {.lex_state = 57, .external_lex_state = 2}, + [570] = {.lex_state = 57, .external_lex_state = 2}, + [571] = {.lex_state = 57, .external_lex_state = 2}, + [572] = {.lex_state = 57, .external_lex_state = 2}, + [573] = {.lex_state = 57, .external_lex_state = 2}, + [574] = {.lex_state = 57, .external_lex_state = 2}, + [575] = {.lex_state = 57, .external_lex_state = 2}, + [576] = {.lex_state = 57, .external_lex_state = 2}, + [577] = {.lex_state = 57, .external_lex_state = 2}, + [578] = {.lex_state = 57, .external_lex_state = 2}, + [579] = {.lex_state = 57, .external_lex_state = 2}, + [580] = {.lex_state = 57, .external_lex_state = 2}, + [581] = {.lex_state = 57, .external_lex_state = 2}, + [582] = {.lex_state = 57, .external_lex_state = 2}, + [583] = {.lex_state = 57, .external_lex_state = 2}, + [584] = {.lex_state = 57, .external_lex_state = 2}, + [585] = {.lex_state = 57, .external_lex_state = 2}, + [586] = {.lex_state = 57, .external_lex_state = 2}, + [587] = {.lex_state = 57, .external_lex_state = 2}, + [588] = {.lex_state = 57, .external_lex_state = 2}, + [589] = {.lex_state = 57, .external_lex_state = 2}, + [590] = {.lex_state = 57, .external_lex_state = 2}, + [591] = {.lex_state = 57, .external_lex_state = 2}, + [592] = {.lex_state = 57, .external_lex_state = 2}, + [593] = {.lex_state = 57, .external_lex_state = 2}, + [594] = {.lex_state = 57, .external_lex_state = 2}, + [595] = {.lex_state = 57, .external_lex_state = 2}, + [596] = {.lex_state = 57, .external_lex_state = 2}, + [597] = {.lex_state = 57, .external_lex_state = 2}, + [598] = {.lex_state = 57, .external_lex_state = 2}, + [599] = {.lex_state = 57, .external_lex_state = 2}, + [600] = {.lex_state = 57, .external_lex_state = 2}, + [601] = {.lex_state = 57, .external_lex_state = 2}, + [602] = {.lex_state = 57, .external_lex_state = 2}, + [603] = {.lex_state = 57, .external_lex_state = 2}, + [604] = {.lex_state = 57, .external_lex_state = 2}, + [605] = {.lex_state = 57, .external_lex_state = 2}, + [606] = {.lex_state = 57, .external_lex_state = 2}, + [607] = {.lex_state = 57, .external_lex_state = 2}, + [608] = {.lex_state = 57, .external_lex_state = 2}, + [609] = {.lex_state = 57, .external_lex_state = 2}, + [610] = {.lex_state = 57, .external_lex_state = 2}, + [611] = {.lex_state = 57, .external_lex_state = 2}, + [612] = {.lex_state = 57, .external_lex_state = 2}, + [613] = {.lex_state = 57, .external_lex_state = 2}, + [614] = {.lex_state = 57, .external_lex_state = 2}, + [615] = {.lex_state = 57, .external_lex_state = 2}, + [616] = {.lex_state = 57, .external_lex_state = 2}, + [617] = {.lex_state = 57, .external_lex_state = 2}, + [618] = {.lex_state = 57, .external_lex_state = 2}, + [619] = {.lex_state = 57, .external_lex_state = 2}, + [620] = {.lex_state = 57, .external_lex_state = 2}, + [621] = {.lex_state = 57, .external_lex_state = 2}, + [622] = {.lex_state = 57, .external_lex_state = 2}, + [623] = {.lex_state = 57, .external_lex_state = 2}, + [624] = {.lex_state = 57, .external_lex_state = 2}, + [625] = {.lex_state = 57, .external_lex_state = 2}, + [626] = {.lex_state = 57, .external_lex_state = 2}, + [627] = {.lex_state = 57, .external_lex_state = 2}, + [628] = {.lex_state = 57, .external_lex_state = 2}, + [629] = {.lex_state = 57, .external_lex_state = 2}, + [630] = {.lex_state = 59, .external_lex_state = 2}, + [631] = {.lex_state = 57, .external_lex_state = 2}, + [632] = {.lex_state = 57, .external_lex_state = 2}, + [633] = {.lex_state = 57, .external_lex_state = 2}, + [634] = {.lex_state = 57, .external_lex_state = 2}, + [635] = {.lex_state = 57, .external_lex_state = 2}, + [636] = {.lex_state = 57, .external_lex_state = 2}, + [637] = {.lex_state = 57, .external_lex_state = 2}, + [638] = {.lex_state = 57, .external_lex_state = 2}, + [639] = {.lex_state = 57, .external_lex_state = 2}, + [640] = {.lex_state = 57, .external_lex_state = 2}, + [641] = {.lex_state = 58, .external_lex_state = 2}, + [642] = {.lex_state = 57, .external_lex_state = 2}, + [643] = {.lex_state = 57, .external_lex_state = 2}, + [644] = {.lex_state = 57, .external_lex_state = 2}, + [645] = {.lex_state = 57, .external_lex_state = 2}, + [646] = {.lex_state = 57, .external_lex_state = 2}, + [647] = {.lex_state = 57, .external_lex_state = 2}, + [648] = {.lex_state = 57, .external_lex_state = 2}, + [649] = {.lex_state = 57, .external_lex_state = 2}, + [650] = {.lex_state = 33, .external_lex_state = 9}, + [651] = {.lex_state = 33, .external_lex_state = 9}, + [652] = {.lex_state = 57, .external_lex_state = 2}, + [653] = {.lex_state = 34, .external_lex_state = 9}, + [654] = {.lex_state = 57, .external_lex_state = 2}, + [655] = {.lex_state = 57, .external_lex_state = 3}, + [656] = {.lex_state = 57, .external_lex_state = 2}, + [657] = {.lex_state = 34, .external_lex_state = 9}, + [658] = {.lex_state = 34, .external_lex_state = 9}, + [659] = {.lex_state = 34, .external_lex_state = 9}, + [660] = {.lex_state = 34, .external_lex_state = 9}, + [661] = {.lex_state = 34, .external_lex_state = 9}, + [662] = {.lex_state = 57, .external_lex_state = 2}, + [663] = {.lex_state = 34, .external_lex_state = 9}, + [664] = {.lex_state = 57, .external_lex_state = 3}, + [665] = {.lex_state = 58, .external_lex_state = 2}, + [666] = {.lex_state = 34, .external_lex_state = 9}, + [667] = {.lex_state = 59, .external_lex_state = 2}, + [668] = {.lex_state = 34, .external_lex_state = 9}, + [669] = {.lex_state = 57, .external_lex_state = 3}, + [670] = {.lex_state = 57, .external_lex_state = 3}, + [671] = {.lex_state = 34, .external_lex_state = 9}, + [672] = {.lex_state = 34, .external_lex_state = 9}, + [673] = {.lex_state = 34, .external_lex_state = 9}, + [674] = {.lex_state = 58, .external_lex_state = 3}, + [675] = {.lex_state = 34, .external_lex_state = 9}, + [676] = {.lex_state = 59, .external_lex_state = 3}, + [677] = {.lex_state = 57, .external_lex_state = 3}, + [678] = {.lex_state = 57, .external_lex_state = 3}, + [679] = {.lex_state = 57, .external_lex_state = 2}, + [680] = {.lex_state = 57, .external_lex_state = 2}, + [681] = {.lex_state = 57, .external_lex_state = 2}, + [682] = {.lex_state = 57, .external_lex_state = 3}, + [683] = {.lex_state = 57, .external_lex_state = 3}, + [684] = {.lex_state = 57, .external_lex_state = 2}, + [685] = {.lex_state = 57, .external_lex_state = 2}, + [686] = {.lex_state = 57, .external_lex_state = 3}, + [687] = {.lex_state = 57, .external_lex_state = 2}, + [688] = {.lex_state = 57, .external_lex_state = 3}, + [689] = {.lex_state = 58, .external_lex_state = 3}, + [690] = {.lex_state = 59, .external_lex_state = 2}, + [691] = {.lex_state = 58, .external_lex_state = 2}, + [692] = {.lex_state = 59, .external_lex_state = 2}, + [693] = {.lex_state = 58, .external_lex_state = 3}, + [694] = {.lex_state = 58, .external_lex_state = 3}, + [695] = {.lex_state = 59, .external_lex_state = 3}, + [696] = {.lex_state = 58, .external_lex_state = 3}, + [697] = {.lex_state = 58, .external_lex_state = 3}, + [698] = {.lex_state = 57, .external_lex_state = 2}, + [699] = {.lex_state = 59, .external_lex_state = 3}, + [700] = {.lex_state = 58, .external_lex_state = 3}, + [701] = {.lex_state = 58, .external_lex_state = 2}, + [702] = {.lex_state = 58, .external_lex_state = 3}, + [703] = {.lex_state = 59, .external_lex_state = 3}, + [704] = {.lex_state = 58, .external_lex_state = 3}, + [705] = {.lex_state = 58, .external_lex_state = 3}, + [706] = {.lex_state = 58, .external_lex_state = 3}, + [707] = {.lex_state = 58, .external_lex_state = 3}, + [708] = {.lex_state = 57, .external_lex_state = 3}, + [709] = {.lex_state = 57, .external_lex_state = 6}, + [710] = {.lex_state = 57, .external_lex_state = 2}, + [711] = {.lex_state = 59, .external_lex_state = 2}, + [712] = {.lex_state = 58, .external_lex_state = 2}, + [713] = {.lex_state = 59, .external_lex_state = 2}, + [714] = {.lex_state = 59, .external_lex_state = 3}, + [715] = {.lex_state = 58, .external_lex_state = 2}, + [716] = {.lex_state = 59, .external_lex_state = 2}, + [717] = {.lex_state = 57, .external_lex_state = 3}, + [718] = {.lex_state = 59, .external_lex_state = 3}, + [719] = {.lex_state = 57, .external_lex_state = 3}, + [720] = {.lex_state = 59, .external_lex_state = 3}, + [721] = {.lex_state = 57, .external_lex_state = 3}, + [722] = {.lex_state = 57, .external_lex_state = 3}, + [723] = {.lex_state = 57, .external_lex_state = 6}, + [724] = {.lex_state = 59, .external_lex_state = 2}, + [725] = {.lex_state = 59, .external_lex_state = 3}, + [726] = {.lex_state = 57, .external_lex_state = 2}, + [727] = {.lex_state = 58, .external_lex_state = 2}, + [728] = {.lex_state = 59, .external_lex_state = 3}, + [729] = {.lex_state = 59, .external_lex_state = 2}, + [730] = {.lex_state = 58, .external_lex_state = 2}, + [731] = {.lex_state = 57, .external_lex_state = 3}, + [732] = {.lex_state = 57, .external_lex_state = 3}, + [733] = {.lex_state = 57, .external_lex_state = 3}, + [734] = {.lex_state = 58, .external_lex_state = 2}, + [735] = {.lex_state = 58, .external_lex_state = 2}, + [736] = {.lex_state = 57, .external_lex_state = 2}, + [737] = {.lex_state = 57, .external_lex_state = 2}, + [738] = {.lex_state = 57, .external_lex_state = 2}, + [739] = {.lex_state = 57, .external_lex_state = 2}, + [740] = {.lex_state = 57, .external_lex_state = 3}, + [741] = {.lex_state = 59, .external_lex_state = 3}, + [742] = {.lex_state = 59, .external_lex_state = 2}, + [743] = {.lex_state = 59, .external_lex_state = 2}, + [744] = {.lex_state = 58, .external_lex_state = 2}, + [745] = {.lex_state = 58, .external_lex_state = 2}, + [746] = {.lex_state = 57, .external_lex_state = 2}, + [747] = {.lex_state = 57, .external_lex_state = 2}, + [748] = {.lex_state = 58, .external_lex_state = 2}, + [749] = {.lex_state = 57, .external_lex_state = 2}, + [750] = {.lex_state = 57, .external_lex_state = 3}, + [751] = {.lex_state = 57, .external_lex_state = 2}, + [752] = {.lex_state = 57, .external_lex_state = 2}, + [753] = {.lex_state = 57, .external_lex_state = 2}, + [754] = {.lex_state = 57, .external_lex_state = 2}, + [755] = {.lex_state = 57, .external_lex_state = 3}, + [756] = {.lex_state = 57, .external_lex_state = 3}, + [757] = {.lex_state = 57, .external_lex_state = 3}, + [758] = {.lex_state = 57, .external_lex_state = 2}, + [759] = {.lex_state = 57, .external_lex_state = 3}, + [760] = {.lex_state = 57, .external_lex_state = 2}, + [761] = {.lex_state = 57, .external_lex_state = 3}, + [762] = {.lex_state = 57, .external_lex_state = 2}, + [763] = {.lex_state = 57, .external_lex_state = 2}, + [764] = {.lex_state = 57, .external_lex_state = 3}, + [765] = {.lex_state = 57, .external_lex_state = 3}, + [766] = {.lex_state = 57, .external_lex_state = 3}, + [767] = {.lex_state = 57, .external_lex_state = 2}, + [768] = {.lex_state = 57, .external_lex_state = 2}, + [769] = {.lex_state = 57, .external_lex_state = 3}, + [770] = {.lex_state = 57, .external_lex_state = 3}, + [771] = {.lex_state = 57, .external_lex_state = 3}, + [772] = {.lex_state = 57, .external_lex_state = 3}, + [773] = {.lex_state = 57, .external_lex_state = 2}, + [774] = {.lex_state = 57, .external_lex_state = 2}, + [775] = {.lex_state = 57, .external_lex_state = 2}, + [776] = {.lex_state = 57, .external_lex_state = 2}, + [777] = {.lex_state = 57, .external_lex_state = 2}, + [778] = {.lex_state = 57, .external_lex_state = 2}, + [779] = {.lex_state = 57, .external_lex_state = 2}, + [780] = {.lex_state = 57, .external_lex_state = 2}, + [781] = {.lex_state = 57, .external_lex_state = 3}, + [782] = {.lex_state = 57, .external_lex_state = 3}, + [783] = {.lex_state = 57, .external_lex_state = 2}, + [784] = {.lex_state = 57, .external_lex_state = 3}, + [785] = {.lex_state = 57, .external_lex_state = 3}, + [786] = {.lex_state = 57, .external_lex_state = 2}, + [787] = {.lex_state = 57, .external_lex_state = 3}, + [788] = {.lex_state = 57, .external_lex_state = 2}, + [789] = {.lex_state = 57, .external_lex_state = 2}, + [790] = {.lex_state = 57, .external_lex_state = 3}, + [791] = {.lex_state = 57, .external_lex_state = 3}, + [792] = {.lex_state = 57, .external_lex_state = 2}, + [793] = {.lex_state = 57, .external_lex_state = 2}, + [794] = {.lex_state = 57, .external_lex_state = 2}, + [795] = {.lex_state = 57, .external_lex_state = 3}, + [796] = {.lex_state = 57, .external_lex_state = 2}, + [797] = {.lex_state = 57, .external_lex_state = 2}, + [798] = {.lex_state = 57, .external_lex_state = 2}, + [799] = {.lex_state = 57, .external_lex_state = 2}, + [800] = {.lex_state = 57, .external_lex_state = 3}, + [801] = {.lex_state = 57, .external_lex_state = 2}, + [802] = {.lex_state = 57, .external_lex_state = 2}, + [803] = {.lex_state = 57, .external_lex_state = 3}, + [804] = {.lex_state = 57, .external_lex_state = 7}, + [805] = {.lex_state = 57, .external_lex_state = 3}, + [806] = {.lex_state = 57, .external_lex_state = 3}, + [807] = {.lex_state = 57, .external_lex_state = 3}, + [808] = {.lex_state = 57, .external_lex_state = 3}, + [809] = {.lex_state = 57, .external_lex_state = 3}, + [810] = {.lex_state = 57, .external_lex_state = 3}, + [811] = {.lex_state = 57, .external_lex_state = 7}, + [812] = {.lex_state = 57, .external_lex_state = 3}, + [813] = {.lex_state = 57, .external_lex_state = 2}, + [814] = {.lex_state = 57, .external_lex_state = 3}, + [815] = {.lex_state = 57, .external_lex_state = 2}, + [816] = {.lex_state = 57, .external_lex_state = 3}, + [817] = {.lex_state = 57, .external_lex_state = 3}, + [818] = {.lex_state = 57, .external_lex_state = 3}, + [819] = {.lex_state = 57, .external_lex_state = 3}, + [820] = {.lex_state = 57, .external_lex_state = 2}, + [821] = {.lex_state = 57, .external_lex_state = 2}, + [822] = {.lex_state = 57, .external_lex_state = 2}, + [823] = {.lex_state = 57, .external_lex_state = 2}, + [824] = {.lex_state = 57, .external_lex_state = 2}, + [825] = {.lex_state = 57, .external_lex_state = 2}, + [826] = {.lex_state = 57, .external_lex_state = 2}, + [827] = {.lex_state = 57, .external_lex_state = 3}, + [828] = {.lex_state = 57, .external_lex_state = 3}, + [829] = {.lex_state = 57, .external_lex_state = 2}, + [830] = {.lex_state = 57, .external_lex_state = 2}, + [831] = {.lex_state = 57, .external_lex_state = 2}, + [832] = {.lex_state = 57, .external_lex_state = 2}, + [833] = {.lex_state = 57, .external_lex_state = 2}, + [834] = {.lex_state = 57, .external_lex_state = 3}, + [835] = {.lex_state = 57, .external_lex_state = 3}, + [836] = {.lex_state = 57, .external_lex_state = 2}, + [837] = {.lex_state = 57, .external_lex_state = 2}, + [838] = {.lex_state = 57, .external_lex_state = 2}, + [839] = {.lex_state = 57, .external_lex_state = 2}, + [840] = {.lex_state = 57, .external_lex_state = 8}, + [841] = {.lex_state = 57, .external_lex_state = 3}, + [842] = {.lex_state = 57, .external_lex_state = 3}, + [843] = {.lex_state = 57, .external_lex_state = 2}, + [844] = {.lex_state = 57, .external_lex_state = 3}, + [845] = {.lex_state = 57, .external_lex_state = 2}, + [846] = {.lex_state = 57, .external_lex_state = 2}, + [847] = {.lex_state = 57, .external_lex_state = 7}, + [848] = {.lex_state = 57, .external_lex_state = 2}, + [849] = {.lex_state = 57, .external_lex_state = 2}, + [850] = {.lex_state = 57, .external_lex_state = 3}, + [851] = {.lex_state = 57, .external_lex_state = 2}, + [852] = {.lex_state = 57, .external_lex_state = 2}, + [853] = {.lex_state = 57, .external_lex_state = 2}, + [854] = {.lex_state = 57, .external_lex_state = 3}, + [855] = {.lex_state = 57, .external_lex_state = 2}, + [856] = {.lex_state = 57, .external_lex_state = 2}, + [857] = {.lex_state = 57, .external_lex_state = 3}, + [858] = {.lex_state = 57, .external_lex_state = 3}, + [859] = {.lex_state = 57, .external_lex_state = 2}, + [860] = {.lex_state = 57, .external_lex_state = 2}, + [861] = {.lex_state = 57, .external_lex_state = 2}, + [862] = {.lex_state = 57, .external_lex_state = 2}, + [863] = {.lex_state = 57, .external_lex_state = 2}, + [864] = {.lex_state = 57, .external_lex_state = 2}, + [865] = {.lex_state = 57, .external_lex_state = 7}, + [866] = {.lex_state = 57, .external_lex_state = 3}, + [867] = {.lex_state = 57, .external_lex_state = 3}, + [868] = {.lex_state = 57, .external_lex_state = 2}, + [869] = {.lex_state = 57, .external_lex_state = 2}, + [870] = {.lex_state = 57, .external_lex_state = 3}, + [871] = {.lex_state = 57, .external_lex_state = 3}, + [872] = {.lex_state = 57, .external_lex_state = 3}, + [873] = {.lex_state = 57, .external_lex_state = 3}, + [874] = {.lex_state = 57, .external_lex_state = 2}, + [875] = {.lex_state = 57, .external_lex_state = 3}, + [876] = {.lex_state = 57, .external_lex_state = 3}, + [877] = {.lex_state = 57, .external_lex_state = 2}, + [878] = {.lex_state = 57, .external_lex_state = 2}, + [879] = {.lex_state = 57, .external_lex_state = 3}, + [880] = {.lex_state = 57, .external_lex_state = 2}, + [881] = {.lex_state = 57, .external_lex_state = 2}, + [882] = {.lex_state = 57, .external_lex_state = 2}, + [883] = {.lex_state = 57, .external_lex_state = 2}, + [884] = {.lex_state = 57, .external_lex_state = 2}, + [885] = {.lex_state = 57, .external_lex_state = 3}, + [886] = {.lex_state = 57, .external_lex_state = 2}, + [887] = {.lex_state = 57, .external_lex_state = 2}, + [888] = {.lex_state = 57, .external_lex_state = 2}, + [889] = {.lex_state = 57, .external_lex_state = 3}, + [890] = {.lex_state = 57, .external_lex_state = 3}, + [891] = {.lex_state = 57, .external_lex_state = 3}, + [892] = {.lex_state = 57, .external_lex_state = 3}, + [893] = {.lex_state = 57, .external_lex_state = 3}, + [894] = {.lex_state = 57, .external_lex_state = 8}, + [895] = {.lex_state = 57, .external_lex_state = 2}, + [896] = {.lex_state = 57, .external_lex_state = 3}, + [897] = {.lex_state = 57, .external_lex_state = 2}, + [898] = {.lex_state = 57, .external_lex_state = 3}, + [899] = {.lex_state = 57, .external_lex_state = 3}, + [900] = {.lex_state = 57, .external_lex_state = 3}, + [901] = {.lex_state = 57, .external_lex_state = 3}, + [902] = {.lex_state = 57, .external_lex_state = 3}, + [903] = {.lex_state = 57, .external_lex_state = 3}, + [904] = {.lex_state = 57, .external_lex_state = 3}, + [905] = {.lex_state = 57, .external_lex_state = 2}, + [906] = {.lex_state = 57, .external_lex_state = 2}, + [907] = {.lex_state = 57, .external_lex_state = 2}, + [908] = {.lex_state = 57, .external_lex_state = 2}, + [909] = {.lex_state = 57, .external_lex_state = 2}, + [910] = {.lex_state = 57, .external_lex_state = 2}, + [911] = {.lex_state = 57, .external_lex_state = 7}, + [912] = {.lex_state = 57, .external_lex_state = 2}, + [913] = {.lex_state = 57, .external_lex_state = 2}, + [914] = {.lex_state = 57, .external_lex_state = 2}, + [915] = {.lex_state = 57, .external_lex_state = 2}, + [916] = {.lex_state = 57, .external_lex_state = 2}, + [917] = {.lex_state = 57, .external_lex_state = 2}, + [918] = {.lex_state = 57, .external_lex_state = 2}, + [919] = {.lex_state = 57, .external_lex_state = 2}, + [920] = {.lex_state = 57, .external_lex_state = 2}, + [921] = {.lex_state = 57, .external_lex_state = 2}, + [922] = {.lex_state = 57, .external_lex_state = 2}, + [923] = {.lex_state = 57, .external_lex_state = 2}, + [924] = {.lex_state = 57, .external_lex_state = 2}, + [925] = {.lex_state = 57, .external_lex_state = 2}, + [926] = {.lex_state = 57, .external_lex_state = 2}, + [927] = {.lex_state = 57, .external_lex_state = 2}, + [928] = {.lex_state = 57, .external_lex_state = 2}, + [929] = {.lex_state = 57, .external_lex_state = 2}, + [930] = {.lex_state = 57, .external_lex_state = 2}, + [931] = {.lex_state = 57, .external_lex_state = 2}, + [932] = {.lex_state = 57, .external_lex_state = 2}, + [933] = {.lex_state = 57, .external_lex_state = 2}, + [934] = {.lex_state = 57, .external_lex_state = 2}, + [935] = {.lex_state = 57, .external_lex_state = 2}, + [936] = {.lex_state = 57, .external_lex_state = 2}, + [937] = {.lex_state = 57, .external_lex_state = 2}, + [938] = {.lex_state = 57, .external_lex_state = 2}, + [939] = {.lex_state = 57, .external_lex_state = 2}, + [940] = {.lex_state = 57, .external_lex_state = 2}, + [941] = {.lex_state = 57, .external_lex_state = 2}, + [942] = {.lex_state = 57, .external_lex_state = 2}, + [943] = {.lex_state = 57, .external_lex_state = 2}, + [944] = {.lex_state = 57, .external_lex_state = 2}, + [945] = {.lex_state = 57, .external_lex_state = 2}, + [946] = {.lex_state = 57, .external_lex_state = 2}, + [947] = {.lex_state = 57, .external_lex_state = 2}, + [948] = {.lex_state = 57, .external_lex_state = 2}, + [949] = {.lex_state = 57, .external_lex_state = 2}, + [950] = {.lex_state = 57, .external_lex_state = 2}, + [951] = {.lex_state = 57, .external_lex_state = 2}, + [952] = {.lex_state = 57, .external_lex_state = 2}, + [953] = {.lex_state = 57, .external_lex_state = 2}, + [954] = {.lex_state = 57, .external_lex_state = 2}, + [955] = {.lex_state = 57, .external_lex_state = 2}, + [956] = {.lex_state = 57, .external_lex_state = 2}, + [957] = {.lex_state = 57, .external_lex_state = 2}, + [958] = {.lex_state = 57, .external_lex_state = 2}, + [959] = {.lex_state = 57, .external_lex_state = 2}, + [960] = {.lex_state = 57, .external_lex_state = 2}, + [961] = {.lex_state = 57, .external_lex_state = 2}, + [962] = {.lex_state = 57, .external_lex_state = 2}, + [963] = {.lex_state = 57, .external_lex_state = 2}, + [964] = {.lex_state = 57, .external_lex_state = 2}, + [965] = {.lex_state = 57, .external_lex_state = 2}, + [966] = {.lex_state = 57, .external_lex_state = 2}, + [967] = {.lex_state = 57, .external_lex_state = 2}, + [968] = {.lex_state = 57, .external_lex_state = 2}, + [969] = {.lex_state = 57, .external_lex_state = 2}, + [970] = {.lex_state = 57, .external_lex_state = 2}, + [971] = {.lex_state = 57, .external_lex_state = 2}, + [972] = {.lex_state = 57, .external_lex_state = 2}, + [973] = {.lex_state = 57, .external_lex_state = 2}, + [974] = {.lex_state = 57, .external_lex_state = 2}, + [975] = {.lex_state = 57, .external_lex_state = 2}, + [976] = {.lex_state = 57, .external_lex_state = 2}, + [977] = {.lex_state = 57, .external_lex_state = 2}, + [978] = {.lex_state = 57, .external_lex_state = 2}, + [979] = {.lex_state = 57, .external_lex_state = 2}, + [980] = {.lex_state = 57, .external_lex_state = 2}, + [981] = {.lex_state = 57, .external_lex_state = 2}, + [982] = {.lex_state = 57, .external_lex_state = 2}, + [983] = {.lex_state = 57, .external_lex_state = 2}, + [984] = {.lex_state = 57, .external_lex_state = 2}, + [985] = {.lex_state = 57, .external_lex_state = 2}, + [986] = {.lex_state = 57, .external_lex_state = 2}, + [987] = {.lex_state = 57, .external_lex_state = 2}, + [988] = {.lex_state = 57, .external_lex_state = 2}, + [989] = {.lex_state = 57, .external_lex_state = 2}, + [990] = {.lex_state = 57, .external_lex_state = 2}, + [991] = {.lex_state = 57, .external_lex_state = 2}, + [992] = {.lex_state = 57, .external_lex_state = 2}, + [993] = {.lex_state = 57, .external_lex_state = 2}, + [994] = {.lex_state = 57, .external_lex_state = 2}, + [995] = {.lex_state = 57, .external_lex_state = 2}, + [996] = {.lex_state = 57, .external_lex_state = 2}, + [997] = {.lex_state = 57, .external_lex_state = 2}, + [998] = {.lex_state = 57, .external_lex_state = 2}, + [999] = {.lex_state = 57, .external_lex_state = 2}, + [1000] = {.lex_state = 57, .external_lex_state = 2}, + [1001] = {.lex_state = 57, .external_lex_state = 2}, + [1002] = {.lex_state = 57, .external_lex_state = 2}, + [1003] = {.lex_state = 57, .external_lex_state = 2}, + [1004] = {.lex_state = 57, .external_lex_state = 2}, + [1005] = {.lex_state = 57, .external_lex_state = 2}, + [1006] = {.lex_state = 57, .external_lex_state = 2}, + [1007] = {.lex_state = 57, .external_lex_state = 2}, + [1008] = {.lex_state = 57, .external_lex_state = 2}, + [1009] = {.lex_state = 57, .external_lex_state = 2}, + [1010] = {.lex_state = 57, .external_lex_state = 2}, + [1011] = {.lex_state = 57, .external_lex_state = 2}, + [1012] = {.lex_state = 57, .external_lex_state = 2}, + [1013] = {.lex_state = 57, .external_lex_state = 2}, + [1014] = {.lex_state = 57, .external_lex_state = 2}, + [1015] = {.lex_state = 57, .external_lex_state = 2}, + [1016] = {.lex_state = 57, .external_lex_state = 2}, + [1017] = {.lex_state = 57, .external_lex_state = 2}, + [1018] = {.lex_state = 57, .external_lex_state = 2}, + [1019] = {.lex_state = 57, .external_lex_state = 2}, + [1020] = {.lex_state = 57, .external_lex_state = 2}, + [1021] = {.lex_state = 57, .external_lex_state = 2}, + [1022] = {.lex_state = 57, .external_lex_state = 2}, + [1023] = {.lex_state = 57, .external_lex_state = 2}, + [1024] = {.lex_state = 57, .external_lex_state = 2}, + [1025] = {.lex_state = 57, .external_lex_state = 2}, + [1026] = {.lex_state = 57, .external_lex_state = 2}, + [1027] = {.lex_state = 57, .external_lex_state = 2}, + [1028] = {.lex_state = 57, .external_lex_state = 2}, + [1029] = {.lex_state = 57, .external_lex_state = 2}, + [1030] = {.lex_state = 57, .external_lex_state = 2}, + [1031] = {.lex_state = 57, .external_lex_state = 2}, + [1032] = {.lex_state = 35, .external_lex_state = 6}, + [1033] = {.lex_state = 35, .external_lex_state = 10}, + [1034] = {.lex_state = 35, .external_lex_state = 4}, + [1035] = {.lex_state = 35, .external_lex_state = 6}, + [1036] = {.lex_state = 35, .external_lex_state = 9}, + [1037] = {.lex_state = 35, .external_lex_state = 6}, + [1038] = {.lex_state = 35, .external_lex_state = 10}, + [1039] = {.lex_state = 35, .external_lex_state = 4}, + [1040] = {.lex_state = 35, .external_lex_state = 6}, + [1041] = {.lex_state = 35, .external_lex_state = 6}, + [1042] = {.lex_state = 35, .external_lex_state = 6}, + [1043] = {.lex_state = 35, .external_lex_state = 4}, + [1044] = {.lex_state = 35, .external_lex_state = 10}, + [1045] = {.lex_state = 35, .external_lex_state = 10}, + [1046] = {.lex_state = 35, .external_lex_state = 9}, + [1047] = {.lex_state = 35, .external_lex_state = 2}, + [1048] = {.lex_state = 35, .external_lex_state = 11}, + [1049] = {.lex_state = 35, .external_lex_state = 9}, + [1050] = {.lex_state = 35, .external_lex_state = 10}, + [1051] = {.lex_state = 35, .external_lex_state = 9}, + [1052] = {.lex_state = 35, .external_lex_state = 10}, + [1053] = {.lex_state = 35, .external_lex_state = 10}, + [1054] = {.lex_state = 35, .external_lex_state = 9}, + [1055] = {.lex_state = 35, .external_lex_state = 9}, + [1056] = {.lex_state = 35, .external_lex_state = 10}, + [1057] = {.lex_state = 35, .external_lex_state = 10}, + [1058] = {.lex_state = 35, .external_lex_state = 8}, + [1059] = {.lex_state = 35, .external_lex_state = 12}, + [1060] = {.lex_state = 35, .external_lex_state = 10}, + [1061] = {.lex_state = 35, .external_lex_state = 10}, + [1062] = {.lex_state = 35, .external_lex_state = 10}, + [1063] = {.lex_state = 35, .external_lex_state = 12}, + [1064] = {.lex_state = 35, .external_lex_state = 9}, + [1065] = {.lex_state = 35, .external_lex_state = 10}, + [1066] = {.lex_state = 35, .external_lex_state = 10}, + [1067] = {.lex_state = 35, .external_lex_state = 9}, + [1068] = {.lex_state = 35, .external_lex_state = 9}, + [1069] = {.lex_state = 35, .external_lex_state = 10}, + [1070] = {.lex_state = 35, .external_lex_state = 10}, + [1071] = {.lex_state = 35, .external_lex_state = 2}, + [1072] = {.lex_state = 35, .external_lex_state = 10}, + [1073] = {.lex_state = 35, .external_lex_state = 8}, + [1074] = {.lex_state = 35, .external_lex_state = 10}, + [1075] = {.lex_state = 35, .external_lex_state = 10}, + [1076] = {.lex_state = 35, .external_lex_state = 10}, + [1077] = {.lex_state = 35, .external_lex_state = 9}, + [1078] = {.lex_state = 35, .external_lex_state = 10}, + [1079] = {.lex_state = 35, .external_lex_state = 11}, + [1080] = {.lex_state = 35, .external_lex_state = 10}, + [1081] = {.lex_state = 35, .external_lex_state = 10}, + [1082] = {.lex_state = 35, .external_lex_state = 10}, + [1083] = {.lex_state = 35, .external_lex_state = 10}, + [1084] = {.lex_state = 35, .external_lex_state = 10}, + [1085] = {.lex_state = 35, .external_lex_state = 10}, + [1086] = {.lex_state = 35, .external_lex_state = 10}, + [1087] = {.lex_state = 35, .external_lex_state = 7}, + [1088] = {.lex_state = 35, .external_lex_state = 10}, + [1089] = {.lex_state = 35, .external_lex_state = 10}, + [1090] = {.lex_state = 35, .external_lex_state = 7}, + [1091] = {.lex_state = 35, .external_lex_state = 10}, + [1092] = {.lex_state = 35, .external_lex_state = 10}, + [1093] = {.lex_state = 35, .external_lex_state = 9}, + [1094] = {.lex_state = 35, .external_lex_state = 9}, + [1095] = {.lex_state = 35, .external_lex_state = 7}, + [1096] = {.lex_state = 35, .external_lex_state = 9}, + [1097] = {.lex_state = 35, .external_lex_state = 10}, + [1098] = {.lex_state = 35, .external_lex_state = 13}, + [1099] = {.lex_state = 35, .external_lex_state = 8}, + [1100] = {.lex_state = 35, .external_lex_state = 2}, + [1101] = {.lex_state = 35, .external_lex_state = 13}, + [1102] = {.lex_state = 35, .external_lex_state = 12}, + [1103] = {.lex_state = 35, .external_lex_state = 12}, + [1104] = {.lex_state = 35, .external_lex_state = 13}, + [1105] = {.lex_state = 35, .external_lex_state = 8}, + [1106] = {.lex_state = 41, .external_lex_state = 13}, + [1107] = {.lex_state = 35, .external_lex_state = 12}, + [1108] = {.lex_state = 35, .external_lex_state = 6}, + [1109] = {.lex_state = 35, .external_lex_state = 11}, + [1110] = {.lex_state = 35, .external_lex_state = 12}, + [1111] = {.lex_state = 35, .external_lex_state = 9}, + [1112] = {.lex_state = 35, .external_lex_state = 9}, + [1113] = {.lex_state = 35, .external_lex_state = 12}, + [1114] = {.lex_state = 35, .external_lex_state = 12}, + [1115] = {.lex_state = 35, .external_lex_state = 12}, + [1116] = {.lex_state = 35, .external_lex_state = 12}, + [1117] = {.lex_state = 35, .external_lex_state = 11}, + [1118] = {.lex_state = 35, .external_lex_state = 11}, + [1119] = {.lex_state = 35, .external_lex_state = 11}, + [1120] = {.lex_state = 35, .external_lex_state = 12}, + [1121] = {.lex_state = 35, .external_lex_state = 12}, + [1122] = {.lex_state = 35, .external_lex_state = 11}, + [1123] = {.lex_state = 35, .external_lex_state = 11}, + [1124] = {.lex_state = 41, .external_lex_state = 10}, + [1125] = {.lex_state = 41, .external_lex_state = 10}, + [1126] = {.lex_state = 35, .external_lex_state = 12}, + [1127] = {.lex_state = 35, .external_lex_state = 11}, + [1128] = {.lex_state = 35, .external_lex_state = 11}, + [1129] = {.lex_state = 35, .external_lex_state = 4}, + [1130] = {.lex_state = 35, .external_lex_state = 13}, + [1131] = {.lex_state = 35, .external_lex_state = 11}, + [1132] = {.lex_state = 35, .external_lex_state = 8}, + [1133] = {.lex_state = 35, .external_lex_state = 13}, + [1134] = {.lex_state = 35, .external_lex_state = 13}, + [1135] = {.lex_state = 35, .external_lex_state = 13}, + [1136] = {.lex_state = 35, .external_lex_state = 13}, + [1137] = {.lex_state = 35, .external_lex_state = 8}, + [1138] = {.lex_state = 35, .external_lex_state = 13}, + [1139] = {.lex_state = 35, .external_lex_state = 10}, + [1140] = {.lex_state = 35, .external_lex_state = 13}, + [1141] = {.lex_state = 35, .external_lex_state = 13}, + [1142] = {.lex_state = 41, .external_lex_state = 9}, + [1143] = {.lex_state = 41, .external_lex_state = 9}, + [1144] = {.lex_state = 35, .external_lex_state = 11}, + [1145] = {.lex_state = 35, .external_lex_state = 10}, + [1146] = {.lex_state = 35, .external_lex_state = 10}, + [1147] = {.lex_state = 41, .external_lex_state = 10}, + [1148] = {.lex_state = 35, .external_lex_state = 7}, + [1149] = {.lex_state = 35, .external_lex_state = 13}, + [1150] = {.lex_state = 35, .external_lex_state = 13}, + [1151] = {.lex_state = 41, .external_lex_state = 13}, + [1152] = {.lex_state = 35, .external_lex_state = 13}, + [1153] = {.lex_state = 35, .external_lex_state = 12}, + [1154] = {.lex_state = 35, .external_lex_state = 13}, + [1155] = {.lex_state = 35, .external_lex_state = 11}, + [1156] = {.lex_state = 35, .external_lex_state = 4}, + [1157] = {.lex_state = 35, .external_lex_state = 7}, + [1158] = {.lex_state = 35, .external_lex_state = 6}, + [1159] = {.lex_state = 35, .external_lex_state = 12}, + [1160] = {.lex_state = 41, .external_lex_state = 10}, + [1161] = {.lex_state = 35, .external_lex_state = 9}, + [1162] = {.lex_state = 35, .external_lex_state = 6}, + [1163] = {.lex_state = 35, .external_lex_state = 6}, + [1164] = {.lex_state = 35, .external_lex_state = 7}, + [1165] = {.lex_state = 41, .external_lex_state = 10}, + [1166] = {.lex_state = 41, .external_lex_state = 10}, + [1167] = {.lex_state = 41, .external_lex_state = 10}, + [1168] = {.lex_state = 35, .external_lex_state = 10}, + [1169] = {.lex_state = 41, .external_lex_state = 10}, + [1170] = {.lex_state = 35, .external_lex_state = 13}, + [1171] = {.lex_state = 35, .external_lex_state = 9}, + [1172] = {.lex_state = 35, .external_lex_state = 9}, + [1173] = {.lex_state = 35, .external_lex_state = 9}, + [1174] = {.lex_state = 41, .external_lex_state = 11}, + [1175] = {.lex_state = 41, .external_lex_state = 11}, + [1176] = {.lex_state = 41, .external_lex_state = 13}, + [1177] = {.lex_state = 41, .external_lex_state = 13}, + [1178] = {.lex_state = 35, .external_lex_state = 9}, + [1179] = {.lex_state = 35, .external_lex_state = 9}, + [1180] = {.lex_state = 35, .external_lex_state = 9}, + [1181] = {.lex_state = 35, .external_lex_state = 10}, + [1182] = {.lex_state = 35, .external_lex_state = 13}, + [1183] = {.lex_state = 35, .external_lex_state = 10}, + [1184] = {.lex_state = 35, .external_lex_state = 13}, + [1185] = {.lex_state = 35, .external_lex_state = 10}, + [1186] = {.lex_state = 35, .external_lex_state = 10}, + [1187] = {.lex_state = 35, .external_lex_state = 13}, + [1188] = {.lex_state = 35, .external_lex_state = 13}, + [1189] = {.lex_state = 35, .external_lex_state = 13}, + [1190] = {.lex_state = 35, .external_lex_state = 13}, + [1191] = {.lex_state = 35, .external_lex_state = 13}, + [1192] = {.lex_state = 35, .external_lex_state = 13}, + [1193] = {.lex_state = 35, .external_lex_state = 10}, + [1194] = {.lex_state = 35, .external_lex_state = 13}, + [1195] = {.lex_state = 35, .external_lex_state = 10}, + [1196] = {.lex_state = 35, .external_lex_state = 10}, + [1197] = {.lex_state = 35, .external_lex_state = 10}, + [1198] = {.lex_state = 35, .external_lex_state = 10}, + [1199] = {.lex_state = 35, .external_lex_state = 10}, + [1200] = {.lex_state = 35, .external_lex_state = 13}, + [1201] = {.lex_state = 35, .external_lex_state = 13}, + [1202] = {.lex_state = 35, .external_lex_state = 13}, + [1203] = {.lex_state = 35, .external_lex_state = 9}, + [1204] = {.lex_state = 35, .external_lex_state = 9}, + [1205] = {.lex_state = 35, .external_lex_state = 10}, + [1206] = {.lex_state = 35, .external_lex_state = 10}, + [1207] = {.lex_state = 35, .external_lex_state = 13}, + [1208] = {.lex_state = 35, .external_lex_state = 13}, + [1209] = {.lex_state = 35, .external_lex_state = 9}, + [1210] = {.lex_state = 35, .external_lex_state = 10}, + [1211] = {.lex_state = 35, .external_lex_state = 10}, + [1212] = {.lex_state = 35, .external_lex_state = 10}, + [1213] = {.lex_state = 35, .external_lex_state = 9}, + [1214] = {.lex_state = 35, .external_lex_state = 13}, + [1215] = {.lex_state = 35, .external_lex_state = 10}, + [1216] = {.lex_state = 35, .external_lex_state = 10}, + [1217] = {.lex_state = 35, .external_lex_state = 10}, + [1218] = {.lex_state = 35, .external_lex_state = 10}, + [1219] = {.lex_state = 35, .external_lex_state = 10}, + [1220] = {.lex_state = 35, .external_lex_state = 10}, + [1221] = {.lex_state = 35, .external_lex_state = 10}, + [1222] = {.lex_state = 35, .external_lex_state = 10}, + [1223] = {.lex_state = 35, .external_lex_state = 10}, + [1224] = {.lex_state = 35, .external_lex_state = 10}, + [1225] = {.lex_state = 35, .external_lex_state = 10}, + [1226] = {.lex_state = 35, .external_lex_state = 10}, + [1227] = {.lex_state = 35, .external_lex_state = 10}, + [1228] = {.lex_state = 35, .external_lex_state = 10}, + [1229] = {.lex_state = 35, .external_lex_state = 9}, + [1230] = {.lex_state = 35, .external_lex_state = 9}, + [1231] = {.lex_state = 35, .external_lex_state = 9}, + [1232] = {.lex_state = 35, .external_lex_state = 10}, + [1233] = {.lex_state = 35, .external_lex_state = 10}, + [1234] = {.lex_state = 35, .external_lex_state = 12}, + [1235] = {.lex_state = 35, .external_lex_state = 10}, + [1236] = {.lex_state = 35, .external_lex_state = 10}, + [1237] = {.lex_state = 35, .external_lex_state = 9}, + [1238] = {.lex_state = 35, .external_lex_state = 9}, + [1239] = {.lex_state = 35, .external_lex_state = 12}, + [1240] = {.lex_state = 41, .external_lex_state = 12}, + [1241] = {.lex_state = 35, .external_lex_state = 10}, + [1242] = {.lex_state = 35, .external_lex_state = 13}, + [1243] = {.lex_state = 35, .external_lex_state = 13}, + [1244] = {.lex_state = 35, .external_lex_state = 7}, + [1245] = {.lex_state = 35, .external_lex_state = 11}, + [1246] = {.lex_state = 35, .external_lex_state = 10}, + [1247] = {.lex_state = 35, .external_lex_state = 12}, + [1248] = {.lex_state = 35, .external_lex_state = 10}, + [1249] = {.lex_state = 35, .external_lex_state = 10}, + [1250] = {.lex_state = 41, .external_lex_state = 13}, + [1251] = {.lex_state = 35, .external_lex_state = 12}, + [1252] = {.lex_state = 35, .external_lex_state = 10}, + [1253] = {.lex_state = 35, .external_lex_state = 10}, + [1254] = {.lex_state = 35, .external_lex_state = 10}, + [1255] = {.lex_state = 35, .external_lex_state = 10}, + [1256] = {.lex_state = 35, .external_lex_state = 10}, + [1257] = {.lex_state = 35, .external_lex_state = 10}, + [1258] = {.lex_state = 35, .external_lex_state = 9}, + [1259] = {.lex_state = 35, .external_lex_state = 9}, + [1260] = {.lex_state = 35, .external_lex_state = 12}, + [1261] = {.lex_state = 35, .external_lex_state = 10}, + [1262] = {.lex_state = 35, .external_lex_state = 12}, + [1263] = {.lex_state = 35, .external_lex_state = 12}, + [1264] = {.lex_state = 35, .external_lex_state = 9}, + [1265] = {.lex_state = 35, .external_lex_state = 10}, + [1266] = {.lex_state = 35, .external_lex_state = 9}, + [1267] = {.lex_state = 35, .external_lex_state = 9}, + [1268] = {.lex_state = 41, .external_lex_state = 13}, + [1269] = {.lex_state = 41, .external_lex_state = 13}, + [1270] = {.lex_state = 35, .external_lex_state = 9}, + [1271] = {.lex_state = 35, .external_lex_state = 9}, + [1272] = {.lex_state = 35, .external_lex_state = 9}, + [1273] = {.lex_state = 35, .external_lex_state = 13}, + [1274] = {.lex_state = 35, .external_lex_state = 12}, + [1275] = {.lex_state = 35, .external_lex_state = 12}, + [1276] = {.lex_state = 35, .external_lex_state = 10}, + [1277] = {.lex_state = 35, .external_lex_state = 10}, + [1278] = {.lex_state = 35, .external_lex_state = 10}, + [1279] = {.lex_state = 35, .external_lex_state = 10}, + [1280] = {.lex_state = 35, .external_lex_state = 10}, + [1281] = {.lex_state = 35, .external_lex_state = 12}, + [1282] = {.lex_state = 35, .external_lex_state = 10}, + [1283] = {.lex_state = 35, .external_lex_state = 12}, + [1284] = {.lex_state = 35, .external_lex_state = 8}, + [1285] = {.lex_state = 35, .external_lex_state = 10}, + [1286] = {.lex_state = 35, .external_lex_state = 10}, + [1287] = {.lex_state = 41, .external_lex_state = 12}, + [1288] = {.lex_state = 35, .external_lex_state = 9}, + [1289] = {.lex_state = 35, .external_lex_state = 10}, + [1290] = {.lex_state = 35, .external_lex_state = 10}, + [1291] = {.lex_state = 35, .external_lex_state = 9}, + [1292] = {.lex_state = 35, .external_lex_state = 12}, + [1293] = {.lex_state = 41, .external_lex_state = 12}, + [1294] = {.lex_state = 41, .external_lex_state = 12}, + [1295] = {.lex_state = 35, .external_lex_state = 10}, + [1296] = {.lex_state = 35, .external_lex_state = 10}, + [1297] = {.lex_state = 35, .external_lex_state = 10}, + [1298] = {.lex_state = 35, .external_lex_state = 12}, + [1299] = {.lex_state = 35, .external_lex_state = 9}, + [1300] = {.lex_state = 35, .external_lex_state = 9}, + [1301] = {.lex_state = 35, .external_lex_state = 10}, + [1302] = {.lex_state = 35, .external_lex_state = 10}, + [1303] = {.lex_state = 35, .external_lex_state = 10}, + [1304] = {.lex_state = 35, .external_lex_state = 9}, + [1305] = {.lex_state = 35, .external_lex_state = 9}, + [1306] = {.lex_state = 35, .external_lex_state = 10}, + [1307] = {.lex_state = 35, .external_lex_state = 9}, + [1308] = {.lex_state = 35, .external_lex_state = 13}, + [1309] = {.lex_state = 35, .external_lex_state = 13}, + [1310] = {.lex_state = 35, .external_lex_state = 9}, + [1311] = {.lex_state = 35, .external_lex_state = 9}, + [1312] = {.lex_state = 35, .external_lex_state = 10}, + [1313] = {.lex_state = 35, .external_lex_state = 11}, + [1314] = {.lex_state = 41, .external_lex_state = 13}, + [1315] = {.lex_state = 35, .external_lex_state = 12}, + [1316] = {.lex_state = 35, .external_lex_state = 10}, + [1317] = {.lex_state = 35, .external_lex_state = 10}, + [1318] = {.lex_state = 35, .external_lex_state = 10}, + [1319] = {.lex_state = 35, .external_lex_state = 10}, + [1320] = {.lex_state = 35, .external_lex_state = 8}, + [1321] = {.lex_state = 35, .external_lex_state = 10}, + [1322] = {.lex_state = 35, .external_lex_state = 2}, + [1323] = {.lex_state = 35, .external_lex_state = 10}, + [1324] = {.lex_state = 35, .external_lex_state = 10}, + [1325] = {.lex_state = 35, .external_lex_state = 10}, + [1326] = {.lex_state = 35, .external_lex_state = 10}, + [1327] = {.lex_state = 35, .external_lex_state = 10}, + [1328] = {.lex_state = 35, .external_lex_state = 10}, + [1329] = {.lex_state = 35, .external_lex_state = 9}, + [1330] = {.lex_state = 35, .external_lex_state = 9}, + [1331] = {.lex_state = 35, .external_lex_state = 10}, + [1332] = {.lex_state = 35, .external_lex_state = 9}, + [1333] = {.lex_state = 35, .external_lex_state = 9}, + [1334] = {.lex_state = 35, .external_lex_state = 10}, + [1335] = {.lex_state = 35, .external_lex_state = 10}, + [1336] = {.lex_state = 35, .external_lex_state = 9}, + [1337] = {.lex_state = 35, .external_lex_state = 10}, + [1338] = {.lex_state = 35, .external_lex_state = 10}, + [1339] = {.lex_state = 35, .external_lex_state = 10}, + [1340] = {.lex_state = 35, .external_lex_state = 10}, + [1341] = {.lex_state = 35, .external_lex_state = 10}, + [1342] = {.lex_state = 35, .external_lex_state = 10}, + [1343] = {.lex_state = 35, .external_lex_state = 10}, + [1344] = {.lex_state = 35, .external_lex_state = 9}, + [1345] = {.lex_state = 35, .external_lex_state = 10}, + [1346] = {.lex_state = 35, .external_lex_state = 10}, + [1347] = {.lex_state = 35, .external_lex_state = 9}, + [1348] = {.lex_state = 35, .external_lex_state = 9}, + [1349] = {.lex_state = 35, .external_lex_state = 9}, + [1350] = {.lex_state = 35, .external_lex_state = 9}, + [1351] = {.lex_state = 41, .external_lex_state = 12}, + [1352] = {.lex_state = 35, .external_lex_state = 9}, + [1353] = {.lex_state = 35, .external_lex_state = 2}, + [1354] = {.lex_state = 35, .external_lex_state = 10}, + [1355] = {.lex_state = 35, .external_lex_state = 11}, + [1356] = {.lex_state = 41, .external_lex_state = 12}, + [1357] = {.lex_state = 35, .external_lex_state = 9}, + [1358] = {.lex_state = 35, .external_lex_state = 7}, + [1359] = {.lex_state = 35, .external_lex_state = 12}, + [1360] = {.lex_state = 35, .external_lex_state = 11}, + [1361] = {.lex_state = 35, .external_lex_state = 13}, + [1362] = {.lex_state = 35, .external_lex_state = 12}, + [1363] = {.lex_state = 35, .external_lex_state = 13}, + [1364] = {.lex_state = 35, .external_lex_state = 13}, + [1365] = {.lex_state = 35, .external_lex_state = 13}, + [1366] = {.lex_state = 35, .external_lex_state = 11}, + [1367] = {.lex_state = 35, .external_lex_state = 13}, + [1368] = {.lex_state = 35, .external_lex_state = 13}, + [1369] = {.lex_state = 35, .external_lex_state = 13}, + [1370] = {.lex_state = 35, .external_lex_state = 13}, + [1371] = {.lex_state = 35, .external_lex_state = 13}, + [1372] = {.lex_state = 35, .external_lex_state = 13}, + [1373] = {.lex_state = 35, .external_lex_state = 13}, + [1374] = {.lex_state = 41, .external_lex_state = 13}, + [1375] = {.lex_state = 41, .external_lex_state = 13}, + [1376] = {.lex_state = 35, .external_lex_state = 13}, + [1377] = {.lex_state = 35, .external_lex_state = 11}, + [1378] = {.lex_state = 35, .external_lex_state = 11}, + [1379] = {.lex_state = 35, .external_lex_state = 13}, + [1380] = {.lex_state = 35, .external_lex_state = 13}, + [1381] = {.lex_state = 35, .external_lex_state = 13}, + [1382] = {.lex_state = 35, .external_lex_state = 12}, + [1383] = {.lex_state = 35, .external_lex_state = 13}, + [1384] = {.lex_state = 35, .external_lex_state = 12}, + [1385] = {.lex_state = 35, .external_lex_state = 13}, + [1386] = {.lex_state = 35, .external_lex_state = 12}, + [1387] = {.lex_state = 35, .external_lex_state = 12}, + [1388] = {.lex_state = 35, .external_lex_state = 12}, + [1389] = {.lex_state = 35, .external_lex_state = 12}, + [1390] = {.lex_state = 35, .external_lex_state = 12}, + [1391] = {.lex_state = 35, .external_lex_state = 13}, + [1392] = {.lex_state = 35, .external_lex_state = 13}, + [1393] = {.lex_state = 35, .external_lex_state = 13}, + [1394] = {.lex_state = 35, .external_lex_state = 13}, + [1395] = {.lex_state = 35, .external_lex_state = 13}, + [1396] = {.lex_state = 35, .external_lex_state = 12}, + [1397] = {.lex_state = 35, .external_lex_state = 12}, + [1398] = {.lex_state = 35, .external_lex_state = 11}, + [1399] = {.lex_state = 35, .external_lex_state = 13}, + [1400] = {.lex_state = 35, .external_lex_state = 12}, + [1401] = {.lex_state = 34, .external_lex_state = 9}, + [1402] = {.lex_state = 35, .external_lex_state = 12}, + [1403] = {.lex_state = 35, .external_lex_state = 12}, + [1404] = {.lex_state = 41, .external_lex_state = 13}, + [1405] = {.lex_state = 41, .external_lex_state = 13}, + [1406] = {.lex_state = 35, .external_lex_state = 12}, + [1407] = {.lex_state = 35, .external_lex_state = 13}, + [1408] = {.lex_state = 35, .external_lex_state = 11}, + [1409] = {.lex_state = 35, .external_lex_state = 12}, + [1410] = {.lex_state = 35, .external_lex_state = 12}, + [1411] = {.lex_state = 35, .external_lex_state = 11}, + [1412] = {.lex_state = 35, .external_lex_state = 11}, + [1413] = {.lex_state = 35, .external_lex_state = 13}, + [1414] = {.lex_state = 35, .external_lex_state = 13}, + [1415] = {.lex_state = 35, .external_lex_state = 11}, + [1416] = {.lex_state = 35, .external_lex_state = 12}, + [1417] = {.lex_state = 35, .external_lex_state = 12}, + [1418] = {.lex_state = 35, .external_lex_state = 11}, + [1419] = {.lex_state = 35, .external_lex_state = 11}, + [1420] = {.lex_state = 35, .external_lex_state = 13}, + [1421] = {.lex_state = 35, .external_lex_state = 12}, + [1422] = {.lex_state = 35, .external_lex_state = 12}, + [1423] = {.lex_state = 35, .external_lex_state = 11}, + [1424] = {.lex_state = 35, .external_lex_state = 12}, + [1425] = {.lex_state = 35, .external_lex_state = 11}, + [1426] = {.lex_state = 35, .external_lex_state = 11}, + [1427] = {.lex_state = 35, .external_lex_state = 12}, + [1428] = {.lex_state = 35, .external_lex_state = 12}, + [1429] = {.lex_state = 35, .external_lex_state = 11}, + [1430] = {.lex_state = 35, .external_lex_state = 11}, + [1431] = {.lex_state = 35, .external_lex_state = 13}, + [1432] = {.lex_state = 35, .external_lex_state = 11}, + [1433] = {.lex_state = 35, .external_lex_state = 12}, + [1434] = {.lex_state = 35, .external_lex_state = 12}, + [1435] = {.lex_state = 35, .external_lex_state = 12}, + [1436] = {.lex_state = 35, .external_lex_state = 13}, + [1437] = {.lex_state = 35, .external_lex_state = 13}, + [1438] = {.lex_state = 35, .external_lex_state = 12}, + [1439] = {.lex_state = 35, .external_lex_state = 12}, + [1440] = {.lex_state = 35, .external_lex_state = 13}, + [1441] = {.lex_state = 35, .external_lex_state = 13}, + [1442] = {.lex_state = 35, .external_lex_state = 13}, + [1443] = {.lex_state = 35, .external_lex_state = 13}, + [1444] = {.lex_state = 35, .external_lex_state = 13}, + [1445] = {.lex_state = 35, .external_lex_state = 12}, + [1446] = {.lex_state = 35, .external_lex_state = 13}, + [1447] = {.lex_state = 35, .external_lex_state = 12}, + [1448] = {.lex_state = 35, .external_lex_state = 12}, + [1449] = {.lex_state = 35, .external_lex_state = 11}, + [1450] = {.lex_state = 35, .external_lex_state = 13}, + [1451] = {.lex_state = 35, .external_lex_state = 13}, + [1452] = {.lex_state = 35, .external_lex_state = 12}, + [1453] = {.lex_state = 35, .external_lex_state = 13}, + [1454] = {.lex_state = 35, .external_lex_state = 13}, + [1455] = {.lex_state = 35, .external_lex_state = 11}, + [1456] = {.lex_state = 35, .external_lex_state = 11}, + [1457] = {.lex_state = 35, .external_lex_state = 11}, + [1458] = {.lex_state = 35, .external_lex_state = 11}, + [1459] = {.lex_state = 35, .external_lex_state = 11}, + [1460] = {.lex_state = 35, .external_lex_state = 11}, + [1461] = {.lex_state = 35, .external_lex_state = 12}, + [1462] = {.lex_state = 35, .external_lex_state = 11}, + [1463] = {.lex_state = 35, .external_lex_state = 12}, + [1464] = {.lex_state = 35, .external_lex_state = 11}, + [1465] = {.lex_state = 35, .external_lex_state = 11}, + [1466] = {.lex_state = 35, .external_lex_state = 12}, + [1467] = {.lex_state = 35, .external_lex_state = 13}, + [1468] = {.lex_state = 35, .external_lex_state = 12}, + [1469] = {.lex_state = 35, .external_lex_state = 11}, + [1470] = {.lex_state = 35, .external_lex_state = 12}, + [1471] = {.lex_state = 34, .external_lex_state = 9}, + [1472] = {.lex_state = 35, .external_lex_state = 13}, + [1473] = {.lex_state = 35, .external_lex_state = 11}, + [1474] = {.lex_state = 35, .external_lex_state = 12}, + [1475] = {.lex_state = 34, .external_lex_state = 9}, + [1476] = {.lex_state = 35, .external_lex_state = 12}, + [1477] = {.lex_state = 34, .external_lex_state = 9}, + [1478] = {.lex_state = 34, .external_lex_state = 9}, + [1479] = {.lex_state = 35, .external_lex_state = 8}, + [1480] = {.lex_state = 35, .external_lex_state = 11}, + [1481] = {.lex_state = 35, .external_lex_state = 12}, + [1482] = {.lex_state = 35, .external_lex_state = 12}, + [1483] = {.lex_state = 35, .external_lex_state = 8}, + [1484] = {.lex_state = 35, .external_lex_state = 11}, + [1485] = {.lex_state = 35, .external_lex_state = 11}, + [1486] = {.lex_state = 35, .external_lex_state = 7}, + [1487] = {.lex_state = 35, .external_lex_state = 11}, + [1488] = {.lex_state = 35, .external_lex_state = 11}, + [1489] = {.lex_state = 35, .external_lex_state = 11}, + [1490] = {.lex_state = 35, .external_lex_state = 11}, + [1491] = {.lex_state = 35, .external_lex_state = 12}, + [1492] = {.lex_state = 35, .external_lex_state = 11}, + [1493] = {.lex_state = 35, .external_lex_state = 13}, + [1494] = {.lex_state = 35, .external_lex_state = 11}, + [1495] = {.lex_state = 35, .external_lex_state = 11}, + [1496] = {.lex_state = 35, .external_lex_state = 11}, + [1497] = {.lex_state = 41, .external_lex_state = 12}, + [1498] = {.lex_state = 41, .external_lex_state = 12}, + [1499] = {.lex_state = 35, .external_lex_state = 12}, + [1500] = {.lex_state = 35, .external_lex_state = 12}, + [1501] = {.lex_state = 35, .external_lex_state = 12}, + [1502] = {.lex_state = 35, .external_lex_state = 12}, + [1503] = {.lex_state = 35, .external_lex_state = 11}, + [1504] = {.lex_state = 35, .external_lex_state = 12}, + [1505] = {.lex_state = 35, .external_lex_state = 12}, + [1506] = {.lex_state = 35, .external_lex_state = 12}, + [1507] = {.lex_state = 35, .external_lex_state = 12}, + [1508] = {.lex_state = 35, .external_lex_state = 13}, + [1509] = {.lex_state = 35, .external_lex_state = 11}, + [1510] = {.lex_state = 35, .external_lex_state = 11}, + [1511] = {.lex_state = 35, .external_lex_state = 11}, + [1512] = {.lex_state = 35, .external_lex_state = 7}, + [1513] = {.lex_state = 35, .external_lex_state = 13}, + [1514] = {.lex_state = 35, .external_lex_state = 13}, + [1515] = {.lex_state = 41, .external_lex_state = 12}, + [1516] = {.lex_state = 35, .external_lex_state = 13}, + [1517] = {.lex_state = 35, .external_lex_state = 13}, + [1518] = {.lex_state = 35, .external_lex_state = 13}, + [1519] = {.lex_state = 35, .external_lex_state = 12}, + [1520] = {.lex_state = 35, .external_lex_state = 13}, + [1521] = {.lex_state = 35, .external_lex_state = 13}, + [1522] = {.lex_state = 35, .external_lex_state = 13}, + [1523] = {.lex_state = 35, .external_lex_state = 12}, + [1524] = {.lex_state = 35, .external_lex_state = 12}, + [1525] = {.lex_state = 41, .external_lex_state = 10}, + [1526] = {.lex_state = 35, .external_lex_state = 13}, + [1527] = {.lex_state = 35, .external_lex_state = 13}, + [1528] = {.lex_state = 35, .external_lex_state = 12}, + [1529] = {.lex_state = 35, .external_lex_state = 12}, + [1530] = {.lex_state = 35, .external_lex_state = 13}, + [1531] = {.lex_state = 41, .external_lex_state = 10}, + [1532] = {.lex_state = 35, .external_lex_state = 12}, + [1533] = {.lex_state = 35, .external_lex_state = 13}, + [1534] = {.lex_state = 35, .external_lex_state = 13}, + [1535] = {.lex_state = 35, .external_lex_state = 12}, + [1536] = {.lex_state = 35, .external_lex_state = 12}, + [1537] = {.lex_state = 35, .external_lex_state = 12}, + [1538] = {.lex_state = 35, .external_lex_state = 13}, + [1539] = {.lex_state = 35, .external_lex_state = 12}, + [1540] = {.lex_state = 35, .external_lex_state = 12}, + [1541] = {.lex_state = 35, .external_lex_state = 13}, + [1542] = {.lex_state = 35, .external_lex_state = 13}, + [1543] = {.lex_state = 35, .external_lex_state = 12}, + [1544] = {.lex_state = 35, .external_lex_state = 12}, + [1545] = {.lex_state = 35, .external_lex_state = 12}, + [1546] = {.lex_state = 35, .external_lex_state = 12}, + [1547] = {.lex_state = 35, .external_lex_state = 12}, + [1548] = {.lex_state = 35, .external_lex_state = 12}, + [1549] = {.lex_state = 35, .external_lex_state = 13}, + [1550] = {.lex_state = 35, .external_lex_state = 13}, + [1551] = {.lex_state = 35, .external_lex_state = 12}, + [1552] = {.lex_state = 35, .external_lex_state = 13}, + [1553] = {.lex_state = 35, .external_lex_state = 12}, + [1554] = {.lex_state = 35, .external_lex_state = 13}, + [1555] = {.lex_state = 35, .external_lex_state = 12}, + [1556] = {.lex_state = 35, .external_lex_state = 13}, + [1557] = {.lex_state = 35, .external_lex_state = 13}, + [1558] = {.lex_state = 35, .external_lex_state = 13}, + [1559] = {.lex_state = 35, .external_lex_state = 13}, + [1560] = {.lex_state = 35, .external_lex_state = 13}, + [1561] = {.lex_state = 35, .external_lex_state = 13}, + [1562] = {.lex_state = 35, .external_lex_state = 12}, + [1563] = {.lex_state = 35, .external_lex_state = 13}, + [1564] = {.lex_state = 35, .external_lex_state = 13}, + [1565] = {.lex_state = 35, .external_lex_state = 13}, + [1566] = {.lex_state = 35, .external_lex_state = 12}, + [1567] = {.lex_state = 35, .external_lex_state = 12}, + [1568] = {.lex_state = 35, .external_lex_state = 12}, + [1569] = {.lex_state = 35, .external_lex_state = 13}, + [1570] = {.lex_state = 35, .external_lex_state = 13}, + [1571] = {.lex_state = 35, .external_lex_state = 13}, + [1572] = {.lex_state = 35, .external_lex_state = 13}, + [1573] = {.lex_state = 35, .external_lex_state = 12}, + [1574] = {.lex_state = 35, .external_lex_state = 13}, + [1575] = {.lex_state = 41, .external_lex_state = 13}, + [1576] = {.lex_state = 35, .external_lex_state = 13}, + [1577] = {.lex_state = 35, .external_lex_state = 13}, + [1578] = {.lex_state = 41, .external_lex_state = 13}, + [1579] = {.lex_state = 35, .external_lex_state = 12}, + [1580] = {.lex_state = 35, .external_lex_state = 12}, + [1581] = {.lex_state = 35, .external_lex_state = 12}, + [1582] = {.lex_state = 35, .external_lex_state = 12}, + [1583] = {.lex_state = 35, .external_lex_state = 13}, + [1584] = {.lex_state = 35, .external_lex_state = 12}, + [1585] = {.lex_state = 35, .external_lex_state = 13}, + [1586] = {.lex_state = 35, .external_lex_state = 12}, + [1587] = {.lex_state = 35, .external_lex_state = 12}, + [1588] = {.lex_state = 35, .external_lex_state = 12}, + [1589] = {.lex_state = 35, .external_lex_state = 12}, + [1590] = {.lex_state = 35, .external_lex_state = 12}, + [1591] = {.lex_state = 35, .external_lex_state = 12}, + [1592] = {.lex_state = 35, .external_lex_state = 12}, + [1593] = {.lex_state = 35, .external_lex_state = 12}, + [1594] = {.lex_state = 35, .external_lex_state = 12}, + [1595] = {.lex_state = 35, .external_lex_state = 12}, + [1596] = {.lex_state = 35, .external_lex_state = 12}, + [1597] = {.lex_state = 35, .external_lex_state = 12}, + [1598] = {.lex_state = 35, .external_lex_state = 12}, + [1599] = {.lex_state = 35, .external_lex_state = 13}, + [1600] = {.lex_state = 35, .external_lex_state = 13}, + [1601] = {.lex_state = 35, .external_lex_state = 12}, + [1602] = {.lex_state = 35, .external_lex_state = 13}, + [1603] = {.lex_state = 35, .external_lex_state = 13}, + [1604] = {.lex_state = 35, .external_lex_state = 13}, + [1605] = {.lex_state = 41, .external_lex_state = 12}, + [1606] = {.lex_state = 35, .external_lex_state = 13}, + [1607] = {.lex_state = 35, .external_lex_state = 13}, + [1608] = {.lex_state = 34, .external_lex_state = 11}, + [1609] = {.lex_state = 35, .external_lex_state = 10}, + [1610] = {.lex_state = 34, .external_lex_state = 11}, + [1611] = {.lex_state = 35, .external_lex_state = 12}, + [1612] = {.lex_state = 34, .external_lex_state = 11}, + [1613] = {.lex_state = 34, .external_lex_state = 11}, + [1614] = {.lex_state = 34, .external_lex_state = 11}, + [1615] = {.lex_state = 34, .external_lex_state = 11}, + [1616] = {.lex_state = 34, .external_lex_state = 11}, + [1617] = {.lex_state = 34, .external_lex_state = 11}, + [1618] = {.lex_state = 34, .external_lex_state = 11}, + [1619] = {.lex_state = 34, .external_lex_state = 11}, + [1620] = {.lex_state = 34, .external_lex_state = 11}, + [1621] = {.lex_state = 34, .external_lex_state = 11}, + [1622] = {.lex_state = 34, .external_lex_state = 11}, + [1623] = {.lex_state = 34, .external_lex_state = 11}, + [1624] = {.lex_state = 35, .external_lex_state = 11}, + [1625] = {.lex_state = 35, .external_lex_state = 11}, + [1626] = {.lex_state = 35, .external_lex_state = 11}, + [1627] = {.lex_state = 35, .external_lex_state = 11}, + [1628] = {.lex_state = 35, .external_lex_state = 11}, + [1629] = {.lex_state = 35, .external_lex_state = 11}, + [1630] = {.lex_state = 35, .external_lex_state = 10}, + [1631] = {.lex_state = 35, .external_lex_state = 10}, + [1632] = {.lex_state = 35, .external_lex_state = 10}, + [1633] = {.lex_state = 35, .external_lex_state = 10}, + [1634] = {.lex_state = 35, .external_lex_state = 10}, + [1635] = {.lex_state = 57, .external_lex_state = 9}, + [1636] = {.lex_state = 57, .external_lex_state = 10}, + [1637] = {.lex_state = 57, .external_lex_state = 10}, + [1638] = {.lex_state = 35, .external_lex_state = 11}, + [1639] = {.lex_state = 35, .external_lex_state = 13}, + [1640] = {.lex_state = 39, .external_lex_state = 9}, + [1641] = {.lex_state = 35, .external_lex_state = 13}, + [1642] = {.lex_state = 35, .external_lex_state = 13}, + [1643] = {.lex_state = 57, .external_lex_state = 12}, + [1644] = {.lex_state = 35, .external_lex_state = 13}, + [1645] = {.lex_state = 57, .external_lex_state = 13}, + [1646] = {.lex_state = 39, .external_lex_state = 9}, + [1647] = {.lex_state = 35, .external_lex_state = 11}, + [1648] = {.lex_state = 35, .external_lex_state = 11}, + [1649] = {.lex_state = 35, .external_lex_state = 11}, + [1650] = {.lex_state = 35, .external_lex_state = 11}, + [1651] = {.lex_state = 35, .external_lex_state = 12}, + [1652] = {.lex_state = 35, .external_lex_state = 11}, + [1653] = {.lex_state = 35, .external_lex_state = 11}, + [1654] = {.lex_state = 35, .external_lex_state = 11}, + [1655] = {.lex_state = 35, .external_lex_state = 11}, + [1656] = {.lex_state = 57, .external_lex_state = 13}, + [1657] = {.lex_state = 35, .external_lex_state = 11}, + [1658] = {.lex_state = 35, .external_lex_state = 11}, + [1659] = {.lex_state = 35, .external_lex_state = 11}, + [1660] = {.lex_state = 35, .external_lex_state = 11}, + [1661] = {.lex_state = 35, .external_lex_state = 11}, + [1662] = {.lex_state = 35, .external_lex_state = 11}, + [1663] = {.lex_state = 35, .external_lex_state = 11}, + [1664] = {.lex_state = 35, .external_lex_state = 11}, + [1665] = {.lex_state = 35, .external_lex_state = 11}, + [1666] = {.lex_state = 39, .external_lex_state = 9}, + [1667] = {.lex_state = 35, .external_lex_state = 11}, + [1668] = {.lex_state = 35, .external_lex_state = 11}, + [1669] = {.lex_state = 35, .external_lex_state = 11}, + [1670] = {.lex_state = 35, .external_lex_state = 12}, + [1671] = {.lex_state = 39, .external_lex_state = 9}, + [1672] = {.lex_state = 35, .external_lex_state = 11}, + [1673] = {.lex_state = 35, .external_lex_state = 13}, + [1674] = {.lex_state = 35, .external_lex_state = 11}, + [1675] = {.lex_state = 35, .external_lex_state = 13}, + [1676] = {.lex_state = 35, .external_lex_state = 12}, + [1677] = {.lex_state = 35, .external_lex_state = 11}, + [1678] = {.lex_state = 35, .external_lex_state = 12}, + [1679] = {.lex_state = 35, .external_lex_state = 12}, + [1680] = {.lex_state = 35, .external_lex_state = 13}, + [1681] = {.lex_state = 39, .external_lex_state = 9}, + [1682] = {.lex_state = 35, .external_lex_state = 11}, + [1683] = {.lex_state = 35, .external_lex_state = 13}, + [1684] = {.lex_state = 35, .external_lex_state = 11}, + [1685] = {.lex_state = 35, .external_lex_state = 13}, + [1686] = {.lex_state = 35, .external_lex_state = 11}, + [1687] = {.lex_state = 35, .external_lex_state = 11}, + [1688] = {.lex_state = 39, .external_lex_state = 9}, + [1689] = {.lex_state = 57, .external_lex_state = 12}, + [1690] = {.lex_state = 31, .external_lex_state = 11}, + [1691] = {.lex_state = 31, .external_lex_state = 11}, + [1692] = {.lex_state = 39, .external_lex_state = 11}, + [1693] = {.lex_state = 39, .external_lex_state = 11}, + [1694] = {.lex_state = 31, .external_lex_state = 11}, + [1695] = {.lex_state = 39, .external_lex_state = 11}, + [1696] = {.lex_state = 31, .external_lex_state = 11}, + [1697] = {.lex_state = 31, .external_lex_state = 11}, + [1698] = {.lex_state = 31, .external_lex_state = 11}, + [1699] = {.lex_state = 31, .external_lex_state = 11}, + [1700] = {.lex_state = 31, .external_lex_state = 11}, + [1701] = {.lex_state = 31, .external_lex_state = 11}, + [1702] = {.lex_state = 31, .external_lex_state = 11}, + [1703] = {.lex_state = 31, .external_lex_state = 11}, + [1704] = {.lex_state = 31, .external_lex_state = 11}, + [1705] = {.lex_state = 31, .external_lex_state = 11}, + [1706] = {.lex_state = 31, .external_lex_state = 11}, + [1707] = {.lex_state = 39, .external_lex_state = 11}, + [1708] = {.lex_state = 39, .external_lex_state = 11}, + [1709] = {.lex_state = 31, .external_lex_state = 11}, + [1710] = {.lex_state = 31, .external_lex_state = 11}, + [1711] = {.lex_state = 31, .external_lex_state = 11}, + [1712] = {.lex_state = 39, .external_lex_state = 11}, + [1713] = {.lex_state = 31, .external_lex_state = 11}, + [1714] = {.lex_state = 39, .external_lex_state = 9}, + [1715] = {.lex_state = 31, .external_lex_state = 11}, + [1716] = {.lex_state = 39, .external_lex_state = 11}, + [1717] = {.lex_state = 39, .external_lex_state = 11}, + [1718] = {.lex_state = 31, .external_lex_state = 13}, + [1719] = {.lex_state = 31, .external_lex_state = 11}, + [1720] = {.lex_state = 31, .external_lex_state = 13}, + [1721] = {.lex_state = 31, .external_lex_state = 11}, + [1722] = {.lex_state = 39, .external_lex_state = 11}, + [1723] = {.lex_state = 31, .external_lex_state = 13}, + [1724] = {.lex_state = 31, .external_lex_state = 11}, + [1725] = {.lex_state = 31, .external_lex_state = 11}, + [1726] = {.lex_state = 57, .external_lex_state = 10}, + [1727] = {.lex_state = 57, .external_lex_state = 10}, + [1728] = {.lex_state = 57, .external_lex_state = 10}, + [1729] = {.lex_state = 57, .external_lex_state = 10}, + [1730] = {.lex_state = 57, .external_lex_state = 10}, + [1731] = {.lex_state = 57, .external_lex_state = 10}, + [1732] = {.lex_state = 57, .external_lex_state = 10}, + [1733] = {.lex_state = 57, .external_lex_state = 10}, + [1734] = {.lex_state = 57, .external_lex_state = 13}, + [1735] = {.lex_state = 57, .external_lex_state = 13}, + [1736] = {.lex_state = 57, .external_lex_state = 13}, + [1737] = {.lex_state = 57, .external_lex_state = 13}, + [1738] = {.lex_state = 57, .external_lex_state = 13}, + [1739] = {.lex_state = 57, .external_lex_state = 12}, + [1740] = {.lex_state = 57, .external_lex_state = 12}, + [1741] = {.lex_state = 57, .external_lex_state = 13}, + [1742] = {.lex_state = 57, .external_lex_state = 13}, + [1743] = {.lex_state = 57, .external_lex_state = 12}, + [1744] = {.lex_state = 57, .external_lex_state = 12}, + [1745] = {.lex_state = 57, .external_lex_state = 13}, + [1746] = {.lex_state = 57, .external_lex_state = 13}, + [1747] = {.lex_state = 57, .external_lex_state = 12}, + [1748] = {.lex_state = 57, .external_lex_state = 13}, + [1749] = {.lex_state = 57, .external_lex_state = 13}, + [1750] = {.lex_state = 57, .external_lex_state = 12}, + [1751] = {.lex_state = 57, .external_lex_state = 13}, + [1752] = {.lex_state = 57, .external_lex_state = 13}, + [1753] = {.lex_state = 57, .external_lex_state = 12}, + [1754] = {.lex_state = 57, .external_lex_state = 13}, + [1755] = {.lex_state = 57, .external_lex_state = 13}, + [1756] = {.lex_state = 57, .external_lex_state = 13}, + [1757] = {.lex_state = 57, .external_lex_state = 13}, + [1758] = {.lex_state = 57, .external_lex_state = 12}, + [1759] = {.lex_state = 36, .external_lex_state = 14}, + [1760] = {.lex_state = 36, .external_lex_state = 14}, + [1761] = {.lex_state = 36, .external_lex_state = 14}, + [1762] = {.lex_state = 36, .external_lex_state = 14}, + [1763] = {.lex_state = 36, .external_lex_state = 14}, + [1764] = {.lex_state = 36, .external_lex_state = 14}, + [1765] = {.lex_state = 36, .external_lex_state = 14}, + [1766] = {.lex_state = 36, .external_lex_state = 14}, + [1767] = {.lex_state = 36, .external_lex_state = 14}, + [1768] = {.lex_state = 57, .external_lex_state = 10}, + [1769] = {.lex_state = 36, .external_lex_state = 14}, + [1770] = {.lex_state = 36, .external_lex_state = 14}, + [1771] = {.lex_state = 36, .external_lex_state = 14}, + [1772] = {.lex_state = 36, .external_lex_state = 14}, + [1773] = {.lex_state = 36, .external_lex_state = 14}, + [1774] = {.lex_state = 36, .external_lex_state = 14}, + [1775] = {.lex_state = 36, .external_lex_state = 14}, + [1776] = {.lex_state = 57, .external_lex_state = 10}, + [1777] = {.lex_state = 36, .external_lex_state = 14}, + [1778] = {.lex_state = 36, .external_lex_state = 14}, + [1779] = {.lex_state = 36, .external_lex_state = 14}, + [1780] = {.lex_state = 57, .external_lex_state = 10}, + [1781] = {.lex_state = 57, .external_lex_state = 10}, + [1782] = {.lex_state = 57, .external_lex_state = 10}, + [1783] = {.lex_state = 57, .external_lex_state = 10}, + [1784] = {.lex_state = 57, .external_lex_state = 9}, + [1785] = {.lex_state = 57, .external_lex_state = 10}, + [1786] = {.lex_state = 57, .external_lex_state = 9}, + [1787] = {.lex_state = 57, .external_lex_state = 9}, + [1788] = {.lex_state = 57, .external_lex_state = 10}, + [1789] = {.lex_state = 57, .external_lex_state = 10}, + [1790] = {.lex_state = 57, .external_lex_state = 10}, + [1791] = {.lex_state = 57, .external_lex_state = 10}, + [1792] = {.lex_state = 57, .external_lex_state = 10}, + [1793] = {.lex_state = 57, .external_lex_state = 10}, + [1794] = {.lex_state = 57, .external_lex_state = 9}, + [1795] = {.lex_state = 57, .external_lex_state = 10}, + [1796] = {.lex_state = 57, .external_lex_state = 9}, + [1797] = {.lex_state = 57, .external_lex_state = 10}, + [1798] = {.lex_state = 57, .external_lex_state = 9}, + [1799] = {.lex_state = 57, .external_lex_state = 9}, + [1800] = {.lex_state = 57, .external_lex_state = 10}, + [1801] = {.lex_state = 57, .external_lex_state = 12}, + [1802] = {.lex_state = 38, .external_lex_state = 11}, + [1803] = {.lex_state = 57, .external_lex_state = 12}, + [1804] = {.lex_state = 57, .external_lex_state = 12}, + [1805] = {.lex_state = 57, .external_lex_state = 12}, + [1806] = {.lex_state = 57, .external_lex_state = 12}, + [1807] = {.lex_state = 57, .external_lex_state = 11}, + [1808] = {.lex_state = 38, .external_lex_state = 11}, + [1809] = {.lex_state = 57, .external_lex_state = 13}, + [1810] = {.lex_state = 57, .external_lex_state = 10}, + [1811] = {.lex_state = 57, .external_lex_state = 13}, + [1812] = {.lex_state = 57, .external_lex_state = 13}, + [1813] = {.lex_state = 57, .external_lex_state = 12}, + [1814] = {.lex_state = 57, .external_lex_state = 13}, + [1815] = {.lex_state = 57, .external_lex_state = 13}, + [1816] = {.lex_state = 57, .external_lex_state = 9}, + [1817] = {.lex_state = 57, .external_lex_state = 12}, + [1818] = {.lex_state = 57, .external_lex_state = 9}, + [1819] = {.lex_state = 57, .external_lex_state = 13}, + [1820] = {.lex_state = 57, .external_lex_state = 10}, + [1821] = {.lex_state = 57, .external_lex_state = 12}, + [1822] = {.lex_state = 57, .external_lex_state = 11}, + [1823] = {.lex_state = 57, .external_lex_state = 9}, + [1824] = {.lex_state = 57, .external_lex_state = 9}, + [1825] = {.lex_state = 57, .external_lex_state = 12}, + [1826] = {.lex_state = 57, .external_lex_state = 9}, + [1827] = {.lex_state = 57, .external_lex_state = 9}, + [1828] = {.lex_state = 57, .external_lex_state = 12}, + [1829] = {.lex_state = 57, .external_lex_state = 12}, + [1830] = {.lex_state = 57, .external_lex_state = 12}, + [1831] = {.lex_state = 57, .external_lex_state = 12}, + [1832] = {.lex_state = 57, .external_lex_state = 9}, + [1833] = {.lex_state = 57, .external_lex_state = 13}, + [1834] = {.lex_state = 57, .external_lex_state = 13}, + [1835] = {.lex_state = 57, .external_lex_state = 11}, + [1836] = {.lex_state = 57, .external_lex_state = 12}, + [1837] = {.lex_state = 57, .external_lex_state = 9}, + [1838] = {.lex_state = 57, .external_lex_state = 10}, + [1839] = {.lex_state = 57, .external_lex_state = 13}, + [1840] = {.lex_state = 57, .external_lex_state = 12}, + [1841] = {.lex_state = 57, .external_lex_state = 12}, + [1842] = {.lex_state = 57, .external_lex_state = 9}, + [1843] = {.lex_state = 57, .external_lex_state = 12}, + [1844] = {.lex_state = 57, .external_lex_state = 12}, + [1845] = {.lex_state = 38, .external_lex_state = 11}, + [1846] = {.lex_state = 38, .external_lex_state = 11}, + [1847] = {.lex_state = 57, .external_lex_state = 11}, + [1848] = {.lex_state = 57, .external_lex_state = 10}, + [1849] = {.lex_state = 57, .external_lex_state = 12}, + [1850] = {.lex_state = 57, .external_lex_state = 13}, + [1851] = {.lex_state = 57, .external_lex_state = 12}, + [1852] = {.lex_state = 57, .external_lex_state = 9}, + [1853] = {.lex_state = 57, .external_lex_state = 10}, + [1854] = {.lex_state = 57, .external_lex_state = 9}, + [1855] = {.lex_state = 57, .external_lex_state = 12}, + [1856] = {.lex_state = 57, .external_lex_state = 12}, + [1857] = {.lex_state = 57, .external_lex_state = 10}, + [1858] = {.lex_state = 57, .external_lex_state = 11}, + [1859] = {.lex_state = 57, .external_lex_state = 12}, + [1860] = {.lex_state = 57, .external_lex_state = 13}, + [1861] = {.lex_state = 57, .external_lex_state = 11}, + [1862] = {.lex_state = 57, .external_lex_state = 10}, + [1863] = {.lex_state = 57, .external_lex_state = 13}, + [1864] = {.lex_state = 36, .external_lex_state = 14}, + [1865] = {.lex_state = 57, .external_lex_state = 13}, + [1866] = {.lex_state = 57, .external_lex_state = 9}, + [1867] = {.lex_state = 57, .external_lex_state = 13}, + [1868] = {.lex_state = 57, .external_lex_state = 10}, + [1869] = {.lex_state = 57, .external_lex_state = 13}, + [1870] = {.lex_state = 33, .external_lex_state = 11}, + [1871] = {.lex_state = 57, .external_lex_state = 13}, + [1872] = {.lex_state = 57, .external_lex_state = 12}, + [1873] = {.lex_state = 57, .external_lex_state = 12}, + [1874] = {.lex_state = 57, .external_lex_state = 11}, + [1875] = {.lex_state = 57, .external_lex_state = 10}, + [1876] = {.lex_state = 57, .external_lex_state = 11}, + [1877] = {.lex_state = 57, .external_lex_state = 12}, + [1878] = {.lex_state = 57, .external_lex_state = 12}, + [1879] = {.lex_state = 57, .external_lex_state = 13}, + [1880] = {.lex_state = 57, .external_lex_state = 10}, + [1881] = {.lex_state = 57, .external_lex_state = 11}, + [1882] = {.lex_state = 57, .external_lex_state = 11}, + [1883] = {.lex_state = 57, .external_lex_state = 11}, + [1884] = {.lex_state = 57, .external_lex_state = 12}, + [1885] = {.lex_state = 57, .external_lex_state = 13}, + [1886] = {.lex_state = 57, .external_lex_state = 10}, + [1887] = {.lex_state = 57, .external_lex_state = 13}, + [1888] = {.lex_state = 57, .external_lex_state = 11}, + [1889] = {.lex_state = 36, .external_lex_state = 14}, + [1890] = {.lex_state = 57, .external_lex_state = 13}, + [1891] = {.lex_state = 57, .external_lex_state = 12}, + [1892] = {.lex_state = 57, .external_lex_state = 10}, + [1893] = {.lex_state = 57, .external_lex_state = 13}, + [1894] = {.lex_state = 57, .external_lex_state = 13}, + [1895] = {.lex_state = 57, .external_lex_state = 12}, + [1896] = {.lex_state = 57, .external_lex_state = 12}, + [1897] = {.lex_state = 57, .external_lex_state = 10}, + [1898] = {.lex_state = 57, .external_lex_state = 12}, + [1899] = {.lex_state = 57, .external_lex_state = 10}, + [1900] = {.lex_state = 57, .external_lex_state = 12}, + [1901] = {.lex_state = 57, .external_lex_state = 10}, + [1902] = {.lex_state = 57, .external_lex_state = 10}, + [1903] = {.lex_state = 57, .external_lex_state = 12}, + [1904] = {.lex_state = 57, .external_lex_state = 11}, + [1905] = {.lex_state = 36, .external_lex_state = 14}, + [1906] = {.lex_state = 57, .external_lex_state = 12}, + [1907] = {.lex_state = 57, .external_lex_state = 13}, + [1908] = {.lex_state = 57, .external_lex_state = 9}, + [1909] = {.lex_state = 57, .external_lex_state = 12}, + [1910] = {.lex_state = 57, .external_lex_state = 11}, + [1911] = {.lex_state = 57, .external_lex_state = 12}, + [1912] = {.lex_state = 57, .external_lex_state = 13}, + [1913] = {.lex_state = 57, .external_lex_state = 11}, + [1914] = {.lex_state = 57, .external_lex_state = 10}, + [1915] = {.lex_state = 57, .external_lex_state = 13}, + [1916] = {.lex_state = 33, .external_lex_state = 9}, + [1917] = {.lex_state = 57, .external_lex_state = 9}, + [1918] = {.lex_state = 57, .external_lex_state = 11}, + [1919] = {.lex_state = 57, .external_lex_state = 10}, + [1920] = {.lex_state = 57, .external_lex_state = 12}, + [1921] = {.lex_state = 57, .external_lex_state = 13}, + [1922] = {.lex_state = 57, .external_lex_state = 12}, + [1923] = {.lex_state = 57, .external_lex_state = 13}, + [1924] = {.lex_state = 57, .external_lex_state = 10}, + [1925] = {.lex_state = 57, .external_lex_state = 10}, + [1926] = {.lex_state = 57, .external_lex_state = 10}, + [1927] = {.lex_state = 57, .external_lex_state = 13}, + [1928] = {.lex_state = 57, .external_lex_state = 13}, + [1929] = {.lex_state = 57, .external_lex_state = 12}, + [1930] = {.lex_state = 57, .external_lex_state = 10}, + [1931] = {.lex_state = 57, .external_lex_state = 13}, + [1932] = {.lex_state = 57, .external_lex_state = 12}, + [1933] = {.lex_state = 57, .external_lex_state = 12}, + [1934] = {.lex_state = 57, .external_lex_state = 11}, + [1935] = {.lex_state = 36, .external_lex_state = 14}, + [1936] = {.lex_state = 57, .external_lex_state = 11}, + [1937] = {.lex_state = 57, .external_lex_state = 10}, + [1938] = {.lex_state = 57, .external_lex_state = 11}, + [1939] = {.lex_state = 57, .external_lex_state = 10}, + [1940] = {.lex_state = 57, .external_lex_state = 10}, + [1941] = {.lex_state = 33, .external_lex_state = 9}, + [1942] = {.lex_state = 57, .external_lex_state = 13}, + [1943] = {.lex_state = 57, .external_lex_state = 13}, + [1944] = {.lex_state = 57, .external_lex_state = 10}, + [1945] = {.lex_state = 57, .external_lex_state = 13}, + [1946] = {.lex_state = 57, .external_lex_state = 13}, + [1947] = {.lex_state = 57, .external_lex_state = 13}, + [1948] = {.lex_state = 57, .external_lex_state = 11}, + [1949] = {.lex_state = 57, .external_lex_state = 9}, + [1950] = {.lex_state = 57, .external_lex_state = 12}, + [1951] = {.lex_state = 57, .external_lex_state = 13}, + [1952] = {.lex_state = 57, .external_lex_state = 10}, + [1953] = {.lex_state = 57, .external_lex_state = 11}, + [1954] = {.lex_state = 57, .external_lex_state = 12}, + [1955] = {.lex_state = 36, .external_lex_state = 14}, + [1956] = {.lex_state = 36, .external_lex_state = 14}, + [1957] = {.lex_state = 57, .external_lex_state = 11}, + [1958] = {.lex_state = 33, .external_lex_state = 9}, + [1959] = {.lex_state = 57, .external_lex_state = 13}, + [1960] = {.lex_state = 57, .external_lex_state = 10}, + [1961] = {.lex_state = 57, .external_lex_state = 11}, + [1962] = {.lex_state = 57, .external_lex_state = 12}, + [1963] = {.lex_state = 57, .external_lex_state = 13}, + [1964] = {.lex_state = 36, .external_lex_state = 14}, + [1965] = {.lex_state = 36, .external_lex_state = 14}, + [1966] = {.lex_state = 36, .external_lex_state = 14}, + [1967] = {.lex_state = 57, .external_lex_state = 10}, + [1968] = {.lex_state = 36, .external_lex_state = 14}, + [1969] = {.lex_state = 57, .external_lex_state = 12}, + [1970] = {.lex_state = 57, .external_lex_state = 9}, + [1971] = {.lex_state = 57, .external_lex_state = 13}, + [1972] = {.lex_state = 3, .external_lex_state = 10}, + [1973] = {.lex_state = 57, .external_lex_state = 11}, + [1974] = {.lex_state = 57, .external_lex_state = 11}, + [1975] = {.lex_state = 57, .external_lex_state = 10}, + [1976] = {.lex_state = 57, .external_lex_state = 11}, + [1977] = {.lex_state = 57, .external_lex_state = 11}, + [1978] = {.lex_state = 57, .external_lex_state = 11}, + [1979] = {.lex_state = 57, .external_lex_state = 11}, + [1980] = {.lex_state = 57, .external_lex_state = 10}, + [1981] = {.lex_state = 57, .external_lex_state = 11}, + [1982] = {.lex_state = 33, .external_lex_state = 13}, + [1983] = {.lex_state = 3, .external_lex_state = 10}, + [1984] = {.lex_state = 57, .external_lex_state = 11}, + [1985] = {.lex_state = 57, .external_lex_state = 11}, + [1986] = {.lex_state = 57, .external_lex_state = 11}, + [1987] = {.lex_state = 57, .external_lex_state = 12}, + [1988] = {.lex_state = 57, .external_lex_state = 11}, + [1989] = {.lex_state = 57, .external_lex_state = 10}, + [1990] = {.lex_state = 57, .external_lex_state = 9}, + [1991] = {.lex_state = 57, .external_lex_state = 11}, + [1992] = {.lex_state = 57, .external_lex_state = 13}, + [1993] = {.lex_state = 33, .external_lex_state = 13}, + [1994] = {.lex_state = 57, .external_lex_state = 11}, + [1995] = {.lex_state = 57, .external_lex_state = 11}, + [1996] = {.lex_state = 57, .external_lex_state = 11}, + [1997] = {.lex_state = 57, .external_lex_state = 11}, + [1998] = {.lex_state = 3, .external_lex_state = 10}, + [1999] = {.lex_state = 57, .external_lex_state = 11}, + [2000] = {.lex_state = 57, .external_lex_state = 11}, + [2001] = {.lex_state = 57, .external_lex_state = 10}, + [2002] = {.lex_state = 57, .external_lex_state = 13}, + [2003] = {.lex_state = 57, .external_lex_state = 11}, + [2004] = {.lex_state = 57, .external_lex_state = 10}, + [2005] = {.lex_state = 57, .external_lex_state = 10}, + [2006] = {.lex_state = 57, .external_lex_state = 11}, + [2007] = {.lex_state = 57, .external_lex_state = 11}, + [2008] = {.lex_state = 57, .external_lex_state = 10}, + [2009] = {.lex_state = 57, .external_lex_state = 11}, + [2010] = {.lex_state = 57, .external_lex_state = 11}, + [2011] = {.lex_state = 57, .external_lex_state = 11}, + [2012] = {.lex_state = 57, .external_lex_state = 11}, + [2013] = {.lex_state = 57, .external_lex_state = 9}, + [2014] = {.lex_state = 33, .external_lex_state = 13}, + [2015] = {.lex_state = 57, .external_lex_state = 10}, + [2016] = {.lex_state = 33, .external_lex_state = 9}, + [2017] = {.lex_state = 57, .external_lex_state = 10}, + [2018] = {.lex_state = 57, .external_lex_state = 11}, + [2019] = {.lex_state = 57, .external_lex_state = 10}, + [2020] = {.lex_state = 57, .external_lex_state = 11}, + [2021] = {.lex_state = 57, .external_lex_state = 11}, + [2022] = {.lex_state = 57, .external_lex_state = 9}, + [2023] = {.lex_state = 57, .external_lex_state = 11}, + [2024] = {.lex_state = 57, .external_lex_state = 11}, + [2025] = {.lex_state = 57, .external_lex_state = 12}, + [2026] = {.lex_state = 57, .external_lex_state = 9}, + [2027] = {.lex_state = 57, .external_lex_state = 11}, + [2028] = {.lex_state = 57, .external_lex_state = 11}, + [2029] = {.lex_state = 57, .external_lex_state = 9}, + [2030] = {.lex_state = 57, .external_lex_state = 9}, + [2031] = {.lex_state = 33, .external_lex_state = 13}, + [2032] = {.lex_state = 57, .external_lex_state = 9}, + [2033] = {.lex_state = 33, .external_lex_state = 11}, + [2034] = {.lex_state = 57, .external_lex_state = 9}, + [2035] = {.lex_state = 57, .external_lex_state = 9}, + [2036] = {.lex_state = 57, .external_lex_state = 9}, + [2037] = {.lex_state = 57, .external_lex_state = 9}, + [2038] = {.lex_state = 57, .external_lex_state = 11}, + [2039] = {.lex_state = 57, .external_lex_state = 9}, + [2040] = {.lex_state = 57, .external_lex_state = 9}, + [2041] = {.lex_state = 57, .external_lex_state = 9}, + [2042] = {.lex_state = 57, .external_lex_state = 13}, + [2043] = {.lex_state = 57, .external_lex_state = 9}, + [2044] = {.lex_state = 57, .external_lex_state = 13}, + [2045] = {.lex_state = 57, .external_lex_state = 11}, + [2046] = {.lex_state = 57, .external_lex_state = 9}, + [2047] = {.lex_state = 57, .external_lex_state = 9}, + [2048] = {.lex_state = 57, .external_lex_state = 11}, + [2049] = {.lex_state = 57, .external_lex_state = 9}, + [2050] = {.lex_state = 57, .external_lex_state = 9}, + [2051] = {.lex_state = 57, .external_lex_state = 9}, + [2052] = {.lex_state = 57, .external_lex_state = 9}, + [2053] = {.lex_state = 57, .external_lex_state = 9}, + [2054] = {.lex_state = 57, .external_lex_state = 9}, + [2055] = {.lex_state = 33, .external_lex_state = 11}, + [2056] = {.lex_state = 57, .external_lex_state = 13}, + [2057] = {.lex_state = 57, .external_lex_state = 11}, + [2058] = {.lex_state = 57, .external_lex_state = 10}, + [2059] = {.lex_state = 57, .external_lex_state = 13}, + [2060] = {.lex_state = 57, .external_lex_state = 11}, + [2061] = {.lex_state = 57, .external_lex_state = 13}, + [2062] = {.lex_state = 57, .external_lex_state = 10}, + [2063] = {.lex_state = 57, .external_lex_state = 11}, + [2064] = {.lex_state = 57, .external_lex_state = 11}, + [2065] = {.lex_state = 57, .external_lex_state = 13}, + [2066] = {.lex_state = 33, .external_lex_state = 11}, + [2067] = {.lex_state = 57, .external_lex_state = 11}, + [2068] = {.lex_state = 57, .external_lex_state = 11}, + [2069] = {.lex_state = 57, .external_lex_state = 11}, + [2070] = {.lex_state = 57, .external_lex_state = 11}, + [2071] = {.lex_state = 57, .external_lex_state = 13}, + [2072] = {.lex_state = 57, .external_lex_state = 13}, + [2073] = {.lex_state = 57, .external_lex_state = 13}, + [2074] = {.lex_state = 57, .external_lex_state = 13}, + [2075] = {.lex_state = 57, .external_lex_state = 12}, + [2076] = {.lex_state = 57, .external_lex_state = 13}, + [2077] = {.lex_state = 57, .external_lex_state = 12}, + [2078] = {.lex_state = 57, .external_lex_state = 10}, + [2079] = {.lex_state = 57, .external_lex_state = 13}, + [2080] = {.lex_state = 57, .external_lex_state = 9}, + [2081] = {.lex_state = 57, .external_lex_state = 12}, + [2082] = {.lex_state = 57, .external_lex_state = 13}, + [2083] = {.lex_state = 57, .external_lex_state = 10}, + [2084] = {.lex_state = 57, .external_lex_state = 9}, + [2085] = {.lex_state = 57, .external_lex_state = 13}, + [2086] = {.lex_state = 57, .external_lex_state = 13}, + [2087] = {.lex_state = 57, .external_lex_state = 13}, + [2088] = {.lex_state = 57, .external_lex_state = 12}, + [2089] = {.lex_state = 57, .external_lex_state = 13}, + [2090] = {.lex_state = 57, .external_lex_state = 12}, + [2091] = {.lex_state = 57, .external_lex_state = 9}, + [2092] = {.lex_state = 57, .external_lex_state = 12}, + [2093] = {.lex_state = 57, .external_lex_state = 13}, + [2094] = {.lex_state = 38, .external_lex_state = 11}, + [2095] = {.lex_state = 57, .external_lex_state = 10}, + [2096] = {.lex_state = 57, .external_lex_state = 9}, + [2097] = {.lex_state = 57, .external_lex_state = 13}, + [2098] = {.lex_state = 57, .external_lex_state = 12}, + [2099] = {.lex_state = 57, .external_lex_state = 9}, + [2100] = {.lex_state = 57, .external_lex_state = 13}, + [2101] = {.lex_state = 57, .external_lex_state = 10}, + [2102] = {.lex_state = 57, .external_lex_state = 10}, + [2103] = {.lex_state = 57, .external_lex_state = 9}, + [2104] = {.lex_state = 57, .external_lex_state = 11}, + [2105] = {.lex_state = 57, .external_lex_state = 12}, + [2106] = {.lex_state = 57, .external_lex_state = 10}, + [2107] = {.lex_state = 57, .external_lex_state = 11}, + [2108] = {.lex_state = 57, .external_lex_state = 11}, + [2109] = {.lex_state = 57, .external_lex_state = 13}, + [2110] = {.lex_state = 57, .external_lex_state = 13}, + [2111] = {.lex_state = 38, .external_lex_state = 11}, + [2112] = {.lex_state = 57, .external_lex_state = 13}, + [2113] = {.lex_state = 57, .external_lex_state = 13}, + [2114] = {.lex_state = 57, .external_lex_state = 13}, + [2115] = {.lex_state = 57, .external_lex_state = 11}, + [2116] = {.lex_state = 57, .external_lex_state = 12}, + [2117] = {.lex_state = 57, .external_lex_state = 13}, + [2118] = {.lex_state = 57, .external_lex_state = 13}, + [2119] = {.lex_state = 57, .external_lex_state = 13}, + [2120] = {.lex_state = 57, .external_lex_state = 11}, + [2121] = {.lex_state = 57, .external_lex_state = 11}, + [2122] = {.lex_state = 57, .external_lex_state = 13}, + [2123] = {.lex_state = 57, .external_lex_state = 13}, + [2124] = {.lex_state = 57, .external_lex_state = 13}, + [2125] = {.lex_state = 57, .external_lex_state = 13}, + [2126] = {.lex_state = 57, .external_lex_state = 12}, + [2127] = {.lex_state = 57, .external_lex_state = 12}, + [2128] = {.lex_state = 57, .external_lex_state = 13}, + [2129] = {.lex_state = 57, .external_lex_state = 11}, + [2130] = {.lex_state = 57, .external_lex_state = 13}, + [2131] = {.lex_state = 57, .external_lex_state = 13}, + [2132] = {.lex_state = 57, .external_lex_state = 10}, + [2133] = {.lex_state = 57, .external_lex_state = 11}, + [2134] = {.lex_state = 57, .external_lex_state = 11}, + [2135] = {.lex_state = 57, .external_lex_state = 10}, + [2136] = {.lex_state = 57, .external_lex_state = 13}, + [2137] = {.lex_state = 57, .external_lex_state = 9}, + [2138] = {.lex_state = 57, .external_lex_state = 11}, + [2139] = {.lex_state = 57, .external_lex_state = 10}, + [2140] = {.lex_state = 57, .external_lex_state = 9}, + [2141] = {.lex_state = 57, .external_lex_state = 11}, + [2142] = {.lex_state = 57, .external_lex_state = 13}, + [2143] = {.lex_state = 57, .external_lex_state = 13}, + [2144] = {.lex_state = 57, .external_lex_state = 11}, + [2145] = {.lex_state = 57, .external_lex_state = 13}, + [2146] = {.lex_state = 57, .external_lex_state = 13}, + [2147] = {.lex_state = 57, .external_lex_state = 13}, + [2148] = {.lex_state = 57, .external_lex_state = 12}, + [2149] = {.lex_state = 57, .external_lex_state = 13}, + [2150] = {.lex_state = 57, .external_lex_state = 10}, + [2151] = {.lex_state = 3, .external_lex_state = 10}, + [2152] = {.lex_state = 57, .external_lex_state = 12}, + [2153] = {.lex_state = 57, .external_lex_state = 12}, + [2154] = {.lex_state = 57, .external_lex_state = 13}, + [2155] = {.lex_state = 57, .external_lex_state = 10}, + [2156] = {.lex_state = 57, .external_lex_state = 13}, + [2157] = {.lex_state = 57, .external_lex_state = 10}, + [2158] = {.lex_state = 57, .external_lex_state = 13}, + [2159] = {.lex_state = 57, .external_lex_state = 9}, + [2160] = {.lex_state = 57, .external_lex_state = 13}, + [2161] = {.lex_state = 57, .external_lex_state = 13}, + [2162] = {.lex_state = 57, .external_lex_state = 10}, + [2163] = {.lex_state = 57, .external_lex_state = 12}, + [2164] = {.lex_state = 57, .external_lex_state = 12}, + [2165] = {.lex_state = 33, .external_lex_state = 11}, + [2166] = {.lex_state = 57, .external_lex_state = 10}, + [2167] = {.lex_state = 57, .external_lex_state = 10}, + [2168] = {.lex_state = 57, .external_lex_state = 12}, + [2169] = {.lex_state = 57, .external_lex_state = 12}, + [2170] = {.lex_state = 57, .external_lex_state = 11}, + [2171] = {.lex_state = 57, .external_lex_state = 12}, + [2172] = {.lex_state = 57, .external_lex_state = 13}, + [2173] = {.lex_state = 57, .external_lex_state = 13}, + [2174] = {.lex_state = 57, .external_lex_state = 11}, + [2175] = {.lex_state = 57, .external_lex_state = 9}, + [2176] = {.lex_state = 57, .external_lex_state = 12}, + [2177] = {.lex_state = 57, .external_lex_state = 11}, + [2178] = {.lex_state = 57, .external_lex_state = 10}, + [2179] = {.lex_state = 57, .external_lex_state = 12}, + [2180] = {.lex_state = 57, .external_lex_state = 9}, + [2181] = {.lex_state = 57, .external_lex_state = 13}, + [2182] = {.lex_state = 57, .external_lex_state = 12}, + [2183] = {.lex_state = 57, .external_lex_state = 13}, + [2184] = {.lex_state = 57, .external_lex_state = 12}, + [2185] = {.lex_state = 57, .external_lex_state = 12}, + [2186] = {.lex_state = 57, .external_lex_state = 12}, + [2187] = {.lex_state = 57, .external_lex_state = 12}, + [2188] = {.lex_state = 57, .external_lex_state = 9}, + [2189] = {.lex_state = 57, .external_lex_state = 9}, + [2190] = {.lex_state = 57, .external_lex_state = 13}, + [2191] = {.lex_state = 57, .external_lex_state = 9}, + [2192] = {.lex_state = 57, .external_lex_state = 11}, + [2193] = {.lex_state = 57, .external_lex_state = 13}, + [2194] = {.lex_state = 57, .external_lex_state = 11}, + [2195] = {.lex_state = 57, .external_lex_state = 10}, + [2196] = {.lex_state = 38, .external_lex_state = 11}, + [2197] = {.lex_state = 38, .external_lex_state = 11}, + [2198] = {.lex_state = 57, .external_lex_state = 13}, + [2199] = {.lex_state = 57, .external_lex_state = 9}, + [2200] = {.lex_state = 57, .external_lex_state = 11}, + [2201] = {.lex_state = 57, .external_lex_state = 12}, + [2202] = {.lex_state = 57, .external_lex_state = 11}, + [2203] = {.lex_state = 38, .external_lex_state = 11}, + [2204] = {.lex_state = 57, .external_lex_state = 13}, + [2205] = {.lex_state = 57, .external_lex_state = 12}, + [2206] = {.lex_state = 57, .external_lex_state = 13}, + [2207] = {.lex_state = 57, .external_lex_state = 13}, + [2208] = {.lex_state = 57, .external_lex_state = 13}, + [2209] = {.lex_state = 57, .external_lex_state = 11}, + [2210] = {.lex_state = 57, .external_lex_state = 12}, + [2211] = {.lex_state = 57, .external_lex_state = 13}, + [2212] = {.lex_state = 57, .external_lex_state = 10}, + [2213] = {.lex_state = 3, .external_lex_state = 10}, + [2214] = {.lex_state = 57, .external_lex_state = 13}, + [2215] = {.lex_state = 33, .external_lex_state = 11}, + [2216] = {.lex_state = 57, .external_lex_state = 9}, + [2217] = {.lex_state = 57, .external_lex_state = 11}, + [2218] = {.lex_state = 57, .external_lex_state = 10}, + [2219] = {.lex_state = 57, .external_lex_state = 10}, + [2220] = {.lex_state = 57, .external_lex_state = 11}, + [2221] = {.lex_state = 57, .external_lex_state = 13}, + [2222] = {.lex_state = 3, .external_lex_state = 10}, + [2223] = {.lex_state = 57, .external_lex_state = 10}, + [2224] = {.lex_state = 57, .external_lex_state = 13}, + [2225] = {.lex_state = 57, .external_lex_state = 9}, + [2226] = {.lex_state = 57, .external_lex_state = 11}, + [2227] = {.lex_state = 3, .external_lex_state = 10}, + [2228] = {.lex_state = 57, .external_lex_state = 13}, + [2229] = {.lex_state = 57, .external_lex_state = 13}, + [2230] = {.lex_state = 57, .external_lex_state = 13}, + [2231] = {.lex_state = 57, .external_lex_state = 9}, + [2232] = {.lex_state = 3, .external_lex_state = 10}, + [2233] = {.lex_state = 57, .external_lex_state = 12}, + [2234] = {.lex_state = 57, .external_lex_state = 11}, + [2235] = {.lex_state = 57, .external_lex_state = 13}, + [2236] = {.lex_state = 57, .external_lex_state = 9}, + [2237] = {.lex_state = 57, .external_lex_state = 13}, + [2238] = {.lex_state = 57, .external_lex_state = 13}, + [2239] = {.lex_state = 57, .external_lex_state = 13}, + [2240] = {.lex_state = 57, .external_lex_state = 13}, + [2241] = {.lex_state = 57, .external_lex_state = 12}, + [2242] = {.lex_state = 57, .external_lex_state = 12}, + [2243] = {.lex_state = 57, .external_lex_state = 12}, + [2244] = {.lex_state = 57, .external_lex_state = 12}, + [2245] = {.lex_state = 57, .external_lex_state = 10}, + [2246] = {.lex_state = 57, .external_lex_state = 12}, + [2247] = {.lex_state = 57, .external_lex_state = 9}, + [2248] = {.lex_state = 57, .external_lex_state = 9}, + [2249] = {.lex_state = 57, .external_lex_state = 13}, + [2250] = {.lex_state = 3, .external_lex_state = 10}, + [2251] = {.lex_state = 57, .external_lex_state = 13}, + [2252] = {.lex_state = 3, .external_lex_state = 10}, + [2253] = {.lex_state = 3, .external_lex_state = 10}, + [2254] = {.lex_state = 57, .external_lex_state = 12}, + [2255] = {.lex_state = 57, .external_lex_state = 9}, + [2256] = {.lex_state = 57, .external_lex_state = 9}, + [2257] = {.lex_state = 57, .external_lex_state = 12}, + [2258] = {.lex_state = 57, .external_lex_state = 12}, + [2259] = {.lex_state = 57, .external_lex_state = 13}, + [2260] = {.lex_state = 57, .external_lex_state = 13}, + [2261] = {.lex_state = 57, .external_lex_state = 13}, + [2262] = {.lex_state = 57, .external_lex_state = 11}, + [2263] = {.lex_state = 3, .external_lex_state = 10}, + [2264] = {.lex_state = 57, .external_lex_state = 13}, + [2265] = {.lex_state = 57, .external_lex_state = 12}, + [2266] = {.lex_state = 57, .external_lex_state = 10}, + [2267] = {.lex_state = 57, .external_lex_state = 11}, + [2268] = {.lex_state = 57, .external_lex_state = 10}, + [2269] = {.lex_state = 57, .external_lex_state = 13}, + [2270] = {.lex_state = 57, .external_lex_state = 11}, + [2271] = {.lex_state = 57, .external_lex_state = 13}, + [2272] = {.lex_state = 57, .external_lex_state = 11}, + [2273] = {.lex_state = 57, .external_lex_state = 12}, + [2274] = {.lex_state = 57, .external_lex_state = 13}, + [2275] = {.lex_state = 57, .external_lex_state = 13}, + [2276] = {.lex_state = 38, .external_lex_state = 11}, + [2277] = {.lex_state = 57, .external_lex_state = 9}, + [2278] = {.lex_state = 57, .external_lex_state = 9}, + [2279] = {.lex_state = 57, .external_lex_state = 9}, + [2280] = {.lex_state = 57, .external_lex_state = 11}, + [2281] = {.lex_state = 57, .external_lex_state = 9}, + [2282] = {.lex_state = 57, .external_lex_state = 11}, + [2283] = {.lex_state = 57, .external_lex_state = 10}, + [2284] = {.lex_state = 57, .external_lex_state = 10}, + [2285] = {.lex_state = 57, .external_lex_state = 10}, + [2286] = {.lex_state = 57, .external_lex_state = 9}, + [2287] = {.lex_state = 57, .external_lex_state = 13}, + [2288] = {.lex_state = 57, .external_lex_state = 11}, + [2289] = {.lex_state = 57, .external_lex_state = 12}, + [2290] = {.lex_state = 57, .external_lex_state = 12}, + [2291] = {.lex_state = 57, .external_lex_state = 11}, + [2292] = {.lex_state = 57, .external_lex_state = 9}, + [2293] = {.lex_state = 57, .external_lex_state = 9}, + [2294] = {.lex_state = 57, .external_lex_state = 13}, + [2295] = {.lex_state = 57, .external_lex_state = 12}, + [2296] = {.lex_state = 57, .external_lex_state = 12}, + [2297] = {.lex_state = 57, .external_lex_state = 9}, + [2298] = {.lex_state = 38, .external_lex_state = 11}, + [2299] = {.lex_state = 57, .external_lex_state = 13}, + [2300] = {.lex_state = 57, .external_lex_state = 9}, + [2301] = {.lex_state = 57, .external_lex_state = 9}, + [2302] = {.lex_state = 57, .external_lex_state = 13}, + [2303] = {.lex_state = 57, .external_lex_state = 12}, + [2304] = {.lex_state = 57, .external_lex_state = 9}, + [2305] = {.lex_state = 38, .external_lex_state = 11}, + [2306] = {.lex_state = 57, .external_lex_state = 9}, + [2307] = {.lex_state = 57, .external_lex_state = 13}, + [2308] = {.lex_state = 38, .external_lex_state = 11}, + [2309] = {.lex_state = 57, .external_lex_state = 11}, + [2310] = {.lex_state = 57, .external_lex_state = 13}, + [2311] = {.lex_state = 57, .external_lex_state = 13}, + [2312] = {.lex_state = 57, .external_lex_state = 9}, + [2313] = {.lex_state = 38, .external_lex_state = 11}, + [2314] = {.lex_state = 57, .external_lex_state = 12}, + [2315] = {.lex_state = 38, .external_lex_state = 11}, + [2316] = {.lex_state = 57, .external_lex_state = 13}, + [2317] = {.lex_state = 57, .external_lex_state = 11}, + [2318] = {.lex_state = 57, .external_lex_state = 9}, + [2319] = {.lex_state = 57, .external_lex_state = 11}, + [2320] = {.lex_state = 57, .external_lex_state = 9}, + [2321] = {.lex_state = 57, .external_lex_state = 12}, + [2322] = {.lex_state = 57, .external_lex_state = 11}, + [2323] = {.lex_state = 57, .external_lex_state = 11}, + [2324] = {.lex_state = 57, .external_lex_state = 13}, + [2325] = {.lex_state = 57, .external_lex_state = 13}, + [2326] = {.lex_state = 57, .external_lex_state = 12}, + [2327] = {.lex_state = 57, .external_lex_state = 13}, + [2328] = {.lex_state = 57, .external_lex_state = 9}, + [2329] = {.lex_state = 57, .external_lex_state = 9}, + [2330] = {.lex_state = 57, .external_lex_state = 13}, + [2331] = {.lex_state = 33, .external_lex_state = 11}, + [2332] = {.lex_state = 57, .external_lex_state = 9}, + [2333] = {.lex_state = 57, .external_lex_state = 10}, + [2334] = {.lex_state = 57, .external_lex_state = 11}, + [2335] = {.lex_state = 57, .external_lex_state = 11}, + [2336] = {.lex_state = 57, .external_lex_state = 10}, + [2337] = {.lex_state = 57, .external_lex_state = 12}, + [2338] = {.lex_state = 57, .external_lex_state = 12}, + [2339] = {.lex_state = 57, .external_lex_state = 11}, + [2340] = {.lex_state = 57, .external_lex_state = 10}, + [2341] = {.lex_state = 57, .external_lex_state = 13}, + [2342] = {.lex_state = 57, .external_lex_state = 11}, + [2343] = {.lex_state = 57, .external_lex_state = 10}, + [2344] = {.lex_state = 57, .external_lex_state = 11}, + [2345] = {.lex_state = 57, .external_lex_state = 11}, + [2346] = {.lex_state = 57, .external_lex_state = 13}, + [2347] = {.lex_state = 57, .external_lex_state = 12}, + [2348] = {.lex_state = 57, .external_lex_state = 11}, + [2349] = {.lex_state = 57, .external_lex_state = 10}, + [2350] = {.lex_state = 57, .external_lex_state = 10}, + [2351] = {.lex_state = 57, .external_lex_state = 13}, + [2352] = {.lex_state = 57, .external_lex_state = 11}, + [2353] = {.lex_state = 57, .external_lex_state = 10}, + [2354] = {.lex_state = 57, .external_lex_state = 11}, + [2355] = {.lex_state = 57, .external_lex_state = 10}, + [2356] = {.lex_state = 57, .external_lex_state = 11}, + [2357] = {.lex_state = 57, .external_lex_state = 11}, + [2358] = {.lex_state = 57, .external_lex_state = 11}, + [2359] = {.lex_state = 57, .external_lex_state = 12}, + [2360] = {.lex_state = 57, .external_lex_state = 11}, + [2361] = {.lex_state = 57, .external_lex_state = 11}, + [2362] = {.lex_state = 57, .external_lex_state = 13}, + [2363] = {.lex_state = 30, .external_lex_state = 11}, + [2364] = {.lex_state = 57, .external_lex_state = 11}, + [2365] = {.lex_state = 57, .external_lex_state = 11}, + [2366] = {.lex_state = 30, .external_lex_state = 11}, + [2367] = {.lex_state = 57, .external_lex_state = 13}, + [2368] = {.lex_state = 57, .external_lex_state = 11}, + [2369] = {.lex_state = 57, .external_lex_state = 11}, + [2370] = {.lex_state = 57, .external_lex_state = 10}, + [2371] = {.lex_state = 57, .external_lex_state = 11}, + [2372] = {.lex_state = 57, .external_lex_state = 11}, + [2373] = {.lex_state = 57, .external_lex_state = 10}, + [2374] = {.lex_state = 57, .external_lex_state = 11}, + [2375] = {.lex_state = 57, .external_lex_state = 10}, + [2376] = {.lex_state = 30, .external_lex_state = 11}, + [2377] = {.lex_state = 57, .external_lex_state = 11}, + [2378] = {.lex_state = 57, .external_lex_state = 11}, + [2379] = {.lex_state = 30, .external_lex_state = 11}, + [2380] = {.lex_state = 57, .external_lex_state = 13}, + [2381] = {.lex_state = 57, .external_lex_state = 13}, + [2382] = {.lex_state = 57, .external_lex_state = 10}, + [2383] = {.lex_state = 57, .external_lex_state = 10}, + [2384] = {.lex_state = 57, .external_lex_state = 10}, + [2385] = {.lex_state = 30, .external_lex_state = 11}, + [2386] = {.lex_state = 57, .external_lex_state = 11}, + [2387] = {.lex_state = 57, .external_lex_state = 10}, + [2388] = {.lex_state = 57, .external_lex_state = 12}, + [2389] = {.lex_state = 57, .external_lex_state = 13}, + [2390] = {.lex_state = 30, .external_lex_state = 11}, + [2391] = {.lex_state = 57, .external_lex_state = 11}, + [2392] = {.lex_state = 57, .external_lex_state = 11}, + [2393] = {.lex_state = 57, .external_lex_state = 11}, + [2394] = {.lex_state = 57, .external_lex_state = 11}, + [2395] = {.lex_state = 30, .external_lex_state = 11}, + [2396] = {.lex_state = 57, .external_lex_state = 11}, + [2397] = {.lex_state = 57, .external_lex_state = 13}, + [2398] = {.lex_state = 57, .external_lex_state = 10}, + [2399] = {.lex_state = 57, .external_lex_state = 12}, + [2400] = {.lex_state = 30, .external_lex_state = 11}, + [2401] = {.lex_state = 57, .external_lex_state = 11}, + [2402] = {.lex_state = 57, .external_lex_state = 10}, + [2403] = {.lex_state = 57, .external_lex_state = 11}, + [2404] = {.lex_state = 57, .external_lex_state = 11}, + [2405] = {.lex_state = 30, .external_lex_state = 11}, + [2406] = {.lex_state = 30, .external_lex_state = 11}, + [2407] = {.lex_state = 57, .external_lex_state = 10}, + [2408] = {.lex_state = 57, .external_lex_state = 12}, + [2409] = {.lex_state = 57, .external_lex_state = 12}, + [2410] = {.lex_state = 57, .external_lex_state = 12}, + [2411] = {.lex_state = 30, .external_lex_state = 11}, + [2412] = {.lex_state = 57, .external_lex_state = 11}, + [2413] = {.lex_state = 57, .external_lex_state = 13}, + [2414] = {.lex_state = 57, .external_lex_state = 13}, + [2415] = {.lex_state = 30, .external_lex_state = 11}, + [2416] = {.lex_state = 57, .external_lex_state = 10}, + [2417] = {.lex_state = 57, .external_lex_state = 13}, + [2418] = {.lex_state = 57, .external_lex_state = 11}, + [2419] = {.lex_state = 57, .external_lex_state = 10}, + [2420] = {.lex_state = 30, .external_lex_state = 11}, + [2421] = {.lex_state = 57, .external_lex_state = 11}, + [2422] = {.lex_state = 57, .external_lex_state = 10}, + [2423] = {.lex_state = 57, .external_lex_state = 13}, + [2424] = {.lex_state = 57, .external_lex_state = 10}, + [2425] = {.lex_state = 57, .external_lex_state = 11}, + [2426] = {.lex_state = 57, .external_lex_state = 10}, + [2427] = {.lex_state = 57, .external_lex_state = 13}, + [2428] = {.lex_state = 57, .external_lex_state = 11}, + [2429] = {.lex_state = 57, .external_lex_state = 11}, + [2430] = {.lex_state = 57, .external_lex_state = 11}, + [2431] = {.lex_state = 57, .external_lex_state = 11}, + [2432] = {.lex_state = 57, .external_lex_state = 11}, + [2433] = {.lex_state = 57, .external_lex_state = 11}, + [2434] = {.lex_state = 57, .external_lex_state = 11}, + [2435] = {.lex_state = 57, .external_lex_state = 10}, + [2436] = {.lex_state = 57, .external_lex_state = 11}, + [2437] = {.lex_state = 57, .external_lex_state = 11}, + [2438] = {.lex_state = 57, .external_lex_state = 11}, + [2439] = {.lex_state = 57, .external_lex_state = 13}, + [2440] = {.lex_state = 57, .external_lex_state = 10}, + [2441] = {.lex_state = 57, .external_lex_state = 11}, + [2442] = {.lex_state = 57, .external_lex_state = 13}, + [2443] = {.lex_state = 57, .external_lex_state = 12}, + [2444] = {.lex_state = 57, .external_lex_state = 13}, + [2445] = {.lex_state = 57, .external_lex_state = 11}, + [2446] = {.lex_state = 57, .external_lex_state = 13}, + [2447] = {.lex_state = 57, .external_lex_state = 13}, + [2448] = {.lex_state = 57, .external_lex_state = 11}, + [2449] = {.lex_state = 57, .external_lex_state = 11}, + [2450] = {.lex_state = 57, .external_lex_state = 11}, + [2451] = {.lex_state = 57, .external_lex_state = 11}, + [2452] = {.lex_state = 57, .external_lex_state = 11}, + [2453] = {.lex_state = 57, .external_lex_state = 11}, + [2454] = {.lex_state = 57, .external_lex_state = 13}, + [2455] = {.lex_state = 57, .external_lex_state = 11}, + [2456] = {.lex_state = 57, .external_lex_state = 11}, + [2457] = {.lex_state = 57, .external_lex_state = 11}, + [2458] = {.lex_state = 57, .external_lex_state = 12}, + [2459] = {.lex_state = 57, .external_lex_state = 13}, + [2460] = {.lex_state = 57, .external_lex_state = 13}, + [2461] = {.lex_state = 57, .external_lex_state = 12}, + [2462] = {.lex_state = 57, .external_lex_state = 11}, + [2463] = {.lex_state = 57, .external_lex_state = 11}, + [2464] = {.lex_state = 57, .external_lex_state = 11}, + [2465] = {.lex_state = 57, .external_lex_state = 11}, + [2466] = {.lex_state = 57, .external_lex_state = 11}, + [2467] = {.lex_state = 57, .external_lex_state = 11}, + [2468] = {.lex_state = 57, .external_lex_state = 11}, + [2469] = {.lex_state = 57, .external_lex_state = 10}, + [2470] = {.lex_state = 57, .external_lex_state = 11}, + [2471] = {.lex_state = 57, .external_lex_state = 11}, + [2472] = {.lex_state = 57, .external_lex_state = 11}, + [2473] = {.lex_state = 57, .external_lex_state = 10}, + [2474] = {.lex_state = 57, .external_lex_state = 12}, + [2475] = {.lex_state = 57, .external_lex_state = 11}, + [2476] = {.lex_state = 57, .external_lex_state = 10}, + [2477] = {.lex_state = 57, .external_lex_state = 10}, + [2478] = {.lex_state = 57, .external_lex_state = 13}, + [2479] = {.lex_state = 57, .external_lex_state = 10}, + [2480] = {.lex_state = 57, .external_lex_state = 11}, + [2481] = {.lex_state = 57, .external_lex_state = 12}, + [2482] = {.lex_state = 57, .external_lex_state = 12}, + [2483] = {.lex_state = 57, .external_lex_state = 11}, + [2484] = {.lex_state = 57, .external_lex_state = 13}, + [2485] = {.lex_state = 57, .external_lex_state = 13}, + [2486] = {.lex_state = 57, .external_lex_state = 13}, + [2487] = {.lex_state = 57, .external_lex_state = 11}, + [2488] = {.lex_state = 57, .external_lex_state = 11}, + [2489] = {.lex_state = 30, .external_lex_state = 11}, + [2490] = {.lex_state = 57, .external_lex_state = 10}, + [2491] = {.lex_state = 57, .external_lex_state = 11}, + [2492] = {.lex_state = 57, .external_lex_state = 10}, + [2493] = {.lex_state = 57, .external_lex_state = 11}, + [2494] = {.lex_state = 57, .external_lex_state = 11}, + [2495] = {.lex_state = 57, .external_lex_state = 10}, + [2496] = {.lex_state = 57, .external_lex_state = 10}, + [2497] = {.lex_state = 57, .external_lex_state = 11}, + [2498] = {.lex_state = 57, .external_lex_state = 11}, + [2499] = {.lex_state = 57, .external_lex_state = 10}, + [2500] = {.lex_state = 57, .external_lex_state = 12}, + [2501] = {.lex_state = 57, .external_lex_state = 12}, + [2502] = {.lex_state = 57, .external_lex_state = 12}, + [2503] = {.lex_state = 57, .external_lex_state = 13}, + [2504] = {.lex_state = 30, .external_lex_state = 11}, + [2505] = {.lex_state = 57, .external_lex_state = 13}, + [2506] = {.lex_state = 57, .external_lex_state = 13}, + [2507] = {.lex_state = 57, .external_lex_state = 11}, + [2508] = {.lex_state = 57, .external_lex_state = 10}, + [2509] = {.lex_state = 57, .external_lex_state = 13}, + [2510] = {.lex_state = 57, .external_lex_state = 11}, + [2511] = {.lex_state = 57, .external_lex_state = 11}, + [2512] = {.lex_state = 57, .external_lex_state = 11}, + [2513] = {.lex_state = 57, .external_lex_state = 11}, + [2514] = {.lex_state = 57, .external_lex_state = 11}, + [2515] = {.lex_state = 57, .external_lex_state = 10}, + [2516] = {.lex_state = 57, .external_lex_state = 11}, + [2517] = {.lex_state = 57, .external_lex_state = 12}, + [2518] = {.lex_state = 57, .external_lex_state = 13}, + [2519] = {.lex_state = 57, .external_lex_state = 11}, + [2520] = {.lex_state = 57, .external_lex_state = 10}, + [2521] = {.lex_state = 57, .external_lex_state = 11}, + [2522] = {.lex_state = 57, .external_lex_state = 10}, + [2523] = {.lex_state = 57, .external_lex_state = 11}, + [2524] = {.lex_state = 57, .external_lex_state = 11}, + [2525] = {.lex_state = 57, .external_lex_state = 11}, + [2526] = {.lex_state = 30, .external_lex_state = 11}, + [2527] = {.lex_state = 57, .external_lex_state = 11}, + [2528] = {.lex_state = 57, .external_lex_state = 11}, + [2529] = {.lex_state = 57, .external_lex_state = 10}, + [2530] = {.lex_state = 57, .external_lex_state = 11}, + [2531] = {.lex_state = 57, .external_lex_state = 12}, + [2532] = {.lex_state = 57, .external_lex_state = 10}, + [2533] = {.lex_state = 57, .external_lex_state = 11}, + [2534] = {.lex_state = 57, .external_lex_state = 11}, + [2535] = {.lex_state = 57, .external_lex_state = 11}, + [2536] = {.lex_state = 57, .external_lex_state = 13}, + [2537] = {.lex_state = 57, .external_lex_state = 11}, + [2538] = {.lex_state = 57, .external_lex_state = 11}, + [2539] = {.lex_state = 57, .external_lex_state = 11}, + [2540] = {.lex_state = 57, .external_lex_state = 11}, + [2541] = {.lex_state = 57, .external_lex_state = 11}, + [2542] = {.lex_state = 57, .external_lex_state = 11}, + [2543] = {.lex_state = 57, .external_lex_state = 11}, + [2544] = {.lex_state = 57, .external_lex_state = 12}, }; enum { ts_external_token__newline = 0, ts_external_token__indent = 1, ts_external_token__dedent = 2, - ts_external_token__string_start = 3, + ts_external_token_string_start = 3, ts_external_token__string_content = 4, - ts_external_token__string_end = 5, + ts_external_token_string_end = 5, ts_external_token_comment = 6, ts_external_token_RBRACK = 7, ts_external_token_RPAREN = 8, @@ -11267,9 +12127,9 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline] = sym__newline, [ts_external_token__indent] = sym__indent, [ts_external_token__dedent] = sym__dedent, - [ts_external_token__string_start] = sym__string_start, + [ts_external_token_string_start] = sym_string_start, [ts_external_token__string_content] = sym__string_content, - [ts_external_token__string_end] = sym__string_end, + [ts_external_token_string_end] = sym_string_end, [ts_external_token_comment] = sym_comment, [ts_external_token_RBRACK] = anon_sym_RBRACK, [ts_external_token_RPAREN] = anon_sym_RPAREN, @@ -11281,46 +12141,46 @@ static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__newline] = true, [ts_external_token__indent] = true, [ts_external_token__dedent] = true, - [ts_external_token__string_start] = true, + [ts_external_token_string_start] = true, [ts_external_token__string_content] = true, - [ts_external_token__string_end] = true, + [ts_external_token_string_end] = true, [ts_external_token_comment] = true, [ts_external_token_RBRACK] = true, [ts_external_token_RPAREN] = true, [ts_external_token_RBRACE] = true, }, [2] = { - [ts_external_token__string_start] = true, + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, }, [3] = { [ts_external_token__dedent] = true, - [ts_external_token__string_start] = true, + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, }, [4] = { [ts_external_token__newline] = true, - [ts_external_token__string_start] = true, + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, }, [5] = { [ts_external_token__newline] = true, [ts_external_token__indent] = true, - [ts_external_token__string_start] = true, + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, }, [6] = { - [ts_external_token__string_start] = true, + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_RBRACE] = true, }, [7] = { - [ts_external_token__string_start] = true, + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_RPAREN] = true, }, [8] = { - [ts_external_token__string_start] = true, + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_RBRACK] = true, }, @@ -11330,22 +12190,22 @@ static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { }, [10] = { [ts_external_token_comment] = true, + [ts_external_token_RBRACE] = true, }, [11] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACE] = true, }, [12] = { [ts_external_token_comment] = true, - [ts_external_token_RPAREN] = true, + [ts_external_token_RBRACK] = true, }, [13] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_RPAREN] = true, }, [14] = { [ts_external_token__string_content] = true, - [ts_external_token__string_end] = true, + [ts_external_token_string_end] = true, [ts_external_token_comment] = true, }, }; @@ -11439,7 +12299,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_LBRACE2] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [sym__not_escape_sequence] = ACTIONS(1), [sym_type_conversion] = ACTIONS(1), [sym_integer] = ACTIONS(1), [sym_float] = ACTIONS(1), @@ -11448,5136 +12309,4847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1), [sym_none] = ACTIONS(1), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(5), [sym__newline] = ACTIONS(1), [sym__indent] = ACTIONS(1), [sym__dedent] = ACTIONS(1), - [sym__string_start] = ACTIONS(1), + [sym_string_start] = ACTIONS(1), [sym__string_content] = ACTIONS(1), - [sym__string_end] = ACTIONS(1), + [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(2189), - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1494), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(33), - [anon_sym_match] = ACTIONS(35), - [anon_sym_async] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_with] = ACTIONS(45), - [anon_sym_def] = ACTIONS(47), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym_module] = STATE(2507), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1847), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1847), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_def] = ACTIONS(49), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(79), }, [2] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(616), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(758), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(97), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [3] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(759), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(787), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [4] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(736), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(869), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [5] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(811), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(800), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [6] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(737), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(718), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(103), + [sym_string_start] = ACTIONS(79), }, [7] = { - [sym__statement] = STATE(75), - [sym__simple_statements] = STATE(75), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(75), - [sym_match_statement] = STATE(75), - [sym_for_statement] = STATE(75), - [sym_while_statement] = STATE(75), - [sym_try_statement] = STATE(75), - [sym_with_statement] = STATE(75), - [sym_function_definition] = STATE(75), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(75), - [sym_decorated_definition] = STATE(75), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(606), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(75), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(762), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [8] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(686), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(693), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(105), + [sym_string_start] = ACTIONS(79), }, [9] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(464), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(803), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [10] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(605), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(808), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [11] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(735), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(771), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [12] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(681), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(812), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [13] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(732), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(822), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [14] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(678), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(827), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [15] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(731), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(692), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(79), }, [16] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(728), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(825), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [17] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(777), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(691), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(109), + [sym_string_start] = ACTIONS(79), }, [18] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(727), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(734), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(109), + [sym_string_start] = ACTIONS(79), }, [19] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(651), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(810), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [20] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(1510), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(799), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [21] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(799), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(817), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [22] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(703), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(788), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [23] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(704), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(786), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [24] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(724), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(670), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [25] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(719), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(784), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [26] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(798), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(862), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [27] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(794), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(755), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [28] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(667), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(819), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [29] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(708), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(778), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [30] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(709), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(699), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(103), + [sym_string_start] = ACTIONS(79), }, [31] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(810), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(774), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [32] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(745), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(700), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(105), + [sym_string_start] = ACTIONS(79), }, [33] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(636), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(792), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [34] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(714), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(756), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [35] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(713), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(874), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [36] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(759), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [37] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(592), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(883), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(97), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [38] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(609), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(1802), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(97), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(111), + [sym_string_start] = ACTIONS(79), }, [39] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(607), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(652), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [40] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(664), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(801), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [41] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(715), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(848), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [42] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(660), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(753), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [43] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(716), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(1808), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(111), + [sym_string_start] = ACTIONS(79), }, [44] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(767), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), - }, - [45] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(790), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), - }, - [46] = { - [sym__statement] = STATE(75), - [sym__simple_statements] = STATE(75), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(75), - [sym_match_statement] = STATE(75), - [sym_for_statement] = STATE(75), - [sym_while_statement] = STATE(75), - [sym_try_statement] = STATE(75), - [sym_with_statement] = STATE(75), - [sym_function_definition] = STATE(75), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(75), - [sym_decorated_definition] = STATE(75), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(602), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(75), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(77), - }, - [47] = { [sym__statement] = STATE(69), [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), [sym_if_statement] = STATE(69), [sym_match_statement] = STATE(69), [sym_for_statement] = STATE(69), @@ -16585,12069 +17157,13030 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(69), [sym_with_statement] = STATE(69), [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), [sym_class_definition] = STATE(69), [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(601), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(743), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(79), + }, + [45] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(744), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(109), + [sym_string_start] = ACTIONS(79), + }, + [46] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(873), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), + }, + [47] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(903), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [48] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(663), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(760), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [49] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(742), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(705), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(105), + [sym_string_start] = ACTIONS(79), }, [50] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(738), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(902), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [51] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(693), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(769), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [52] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(783), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(793), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [53] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(1514), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(876), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [54] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(753), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(849), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [55] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(597), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(838), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(99), + [sym_string_start] = ACTIONS(79), }, [56] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(661), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(775), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [57] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(694), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(889), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, [58] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(550), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(890), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [59] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(749), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(866), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(101), + [sym_string_start] = ACTIONS(79), }, [60] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(773), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(113), + [sym_string_start] = ACTIONS(79), }, [61] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(654), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1847), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1847), + [ts_builtin_sym_end] = ACTIONS(115), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_def] = ACTIONS(49), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(79), }, [62] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(670), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(117), + [sym_string_start] = ACTIONS(79), }, [63] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(702), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(119), + [sym_string_start] = ACTIONS(79), }, [64] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(792), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(121), + [sym_string_start] = ACTIONS(79), }, [65] = { - [sym__statement] = STATE(76), - [sym__simple_statements] = STATE(76), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(76), - [sym_match_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_with_statement] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(76), - [sym_decorated_definition] = STATE(76), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(795), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(76), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(123), + [sym_string_start] = ACTIONS(79), }, [66] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(782), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1847), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1847), + [ts_builtin_sym_end] = ACTIONS(125), + [sym_identifier] = ACTIONS(127), + [anon_sym_import] = ACTIONS(130), + [anon_sym_from] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_print] = ACTIONS(142), + [anon_sym_assert] = ACTIONS(145), + [anon_sym_return] = ACTIONS(148), + [anon_sym_del] = ACTIONS(151), + [anon_sym_raise] = ACTIONS(154), + [anon_sym_pass] = ACTIONS(157), + [anon_sym_break] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_if] = ACTIONS(166), + [anon_sym_match] = ACTIONS(169), + [anon_sym_async] = ACTIONS(172), + [anon_sym_for] = ACTIONS(175), + [anon_sym_while] = ACTIONS(178), + [anon_sym_try] = ACTIONS(181), + [anon_sym_with] = ACTIONS(184), + [anon_sym_def] = ACTIONS(187), + [anon_sym_global] = ACTIONS(190), + [anon_sym_nonlocal] = ACTIONS(193), + [anon_sym_exec] = ACTIONS(196), + [anon_sym_class] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_not] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_integer] = ACTIONS(226), + [sym_float] = ACTIONS(220), + [anon_sym_await] = ACTIONS(229), + [sym_true] = ACTIONS(226), + [sym_false] = ACTIONS(226), + [sym_none] = ACTIONS(226), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(232), }, [67] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(77), - [sym_match_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_with_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(1519), - [sym_block] = STATE(676), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(235), + [sym_string_start] = ACTIONS(79), }, [68] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1494), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(111), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(33), - [anon_sym_match] = ACTIONS(35), - [anon_sym_async] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_with] = ACTIONS(45), - [anon_sym_def] = ACTIONS(47), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(127), + [anon_sym_import] = ACTIONS(130), + [anon_sym_from] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_print] = ACTIONS(142), + [anon_sym_assert] = ACTIONS(145), + [anon_sym_return] = ACTIONS(148), + [anon_sym_del] = ACTIONS(151), + [anon_sym_raise] = ACTIONS(154), + [anon_sym_pass] = ACTIONS(157), + [anon_sym_break] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_if] = ACTIONS(237), + [anon_sym_match] = ACTIONS(240), + [anon_sym_async] = ACTIONS(243), + [anon_sym_for] = ACTIONS(246), + [anon_sym_while] = ACTIONS(249), + [anon_sym_try] = ACTIONS(252), + [anon_sym_with] = ACTIONS(255), + [anon_sym_def] = ACTIONS(258), + [anon_sym_global] = ACTIONS(190), + [anon_sym_nonlocal] = ACTIONS(193), + [anon_sym_exec] = ACTIONS(196), + [anon_sym_class] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_not] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_integer] = ACTIONS(226), + [sym_float] = ACTIONS(220), + [anon_sym_await] = ACTIONS(229), + [sym_true] = ACTIONS(226), + [sym_false] = ACTIONS(226), + [sym_none] = ACTIONS(226), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(125), + [sym_string_start] = ACTIONS(232), }, [69] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1519), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(264), + [sym_string_start] = ACTIONS(79), }, [70] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1519), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym_chevron] = STATE(2053), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_list_splat_pattern] = STATE(1172), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1826), + [sym_primary_expression] = STATE(1036), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_attribute] = STATE(1344), + [sym_subscript] = STATE(1344), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(266), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(275), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_print] = ACTIONS(281), + [anon_sym_GT_GT] = ACTIONS(283), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(287), + [anon_sym_match] = ACTIONS(281), + [anon_sym_async] = ACTIONS(281), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(270), + [anon_sym_exec] = ACTIONS(281), + [anon_sym_AT] = ACTIONS(270), + [anon_sym_LBRACK] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(287), + [anon_sym_not] = ACTIONS(292), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(270), + [anon_sym_SLASH_SLASH] = ACTIONS(270), + [anon_sym_PIPE] = ACTIONS(270), + [anon_sym_AMP] = ACTIONS(270), + [anon_sym_CARET] = ACTIONS(270), + [anon_sym_LT_LT] = ACTIONS(270), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(298), + [anon_sym_DASH_EQ] = ACTIONS(298), + [anon_sym_STAR_EQ] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(298), + [anon_sym_AT_EQ] = ACTIONS(298), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), + [anon_sym_PERCENT_EQ] = ACTIONS(298), + [anon_sym_STAR_STAR_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(298), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(300), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(268), + [sym_string_start] = ACTIONS(79), }, [71] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1494), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(117), - [sym_identifier] = ACTIONS(119), - [anon_sym_import] = ACTIONS(122), - [anon_sym_from] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_print] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_return] = ACTIONS(140), - [anon_sym_del] = ACTIONS(143), - [anon_sym_raise] = ACTIONS(146), - [anon_sym_pass] = ACTIONS(149), - [anon_sym_break] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_if] = ACTIONS(158), - [anon_sym_match] = ACTIONS(161), - [anon_sym_async] = ACTIONS(164), - [anon_sym_for] = ACTIONS(167), - [anon_sym_while] = ACTIONS(170), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(176), - [anon_sym_def] = ACTIONS(179), - [anon_sym_global] = ACTIONS(182), - [anon_sym_nonlocal] = ACTIONS(185), - [anon_sym_exec] = ACTIONS(188), - [anon_sym_class] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_not] = ACTIONS(200), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_lambda] = ACTIONS(206), - [anon_sym_yield] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_integer] = ACTIONS(218), - [sym_float] = ACTIONS(212), - [anon_sym_await] = ACTIONS(221), - [sym_true] = ACTIONS(218), - [sym_false] = ACTIONS(218), - [sym_none] = ACTIONS(218), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2411), + [sym_list_splat_pattern] = STATE(1172), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1300), + [sym_primary_expression] = STATE(1046), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_attribute] = STATE(1344), + [sym_subscript] = STATE(1344), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(266), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(275), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(304), + [anon_sym_print] = ACTIONS(281), + [anon_sym_GT_GT] = ACTIONS(270), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(287), + [anon_sym_match] = ACTIONS(281), + [anon_sym_async] = ACTIONS(281), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(270), + [anon_sym_exec] = ACTIONS(281), + [anon_sym_AT] = ACTIONS(270), + [anon_sym_LBRACK] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(287), + [anon_sym_not] = ACTIONS(308), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(310), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(270), + [anon_sym_SLASH_SLASH] = ACTIONS(270), + [anon_sym_PIPE] = ACTIONS(270), + [anon_sym_AMP] = ACTIONS(270), + [anon_sym_CARET] = ACTIONS(270), + [anon_sym_LT_LT] = ACTIONS(270), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(298), + [anon_sym_DASH_EQ] = ACTIONS(298), + [anon_sym_STAR_EQ] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(298), + [anon_sym_AT_EQ] = ACTIONS(298), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), + [anon_sym_PERCENT_EQ] = ACTIONS(298), + [anon_sym_STAR_STAR_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(298), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(300), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(224), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(268), + [sym_string_start] = ACTIONS(79), }, [72] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1519), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1876), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(275), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(270), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(287), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(270), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(270), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(287), + [anon_sym_not] = ACTIONS(324), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(270), + [anon_sym_SLASH_SLASH] = ACTIONS(270), + [anon_sym_PIPE] = ACTIONS(270), + [anon_sym_AMP] = ACTIONS(270), + [anon_sym_CARET] = ACTIONS(270), + [anon_sym_LT_LT] = ACTIONS(270), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(330), + [anon_sym_PLUS_EQ] = ACTIONS(298), + [anon_sym_DASH_EQ] = ACTIONS(298), + [anon_sym_STAR_EQ] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(298), + [anon_sym_AT_EQ] = ACTIONS(298), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), + [anon_sym_PERCENT_EQ] = ACTIONS(298), + [anon_sym_STAR_STAR_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(298), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(227), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(268), + [sym_string_start] = ACTIONS(340), }, [73] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1519), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(275), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(270), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(287), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(270), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(270), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(287), + [anon_sym_not] = ACTIONS(324), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(270), + [anon_sym_SLASH_SLASH] = ACTIONS(270), + [anon_sym_PIPE] = ACTIONS(270), + [anon_sym_AMP] = ACTIONS(270), + [anon_sym_CARET] = ACTIONS(270), + [anon_sym_LT_LT] = ACTIONS(270), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(330), + [anon_sym_PLUS_EQ] = ACTIONS(298), + [anon_sym_DASH_EQ] = ACTIONS(298), + [anon_sym_STAR_EQ] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(298), + [anon_sym_AT_EQ] = ACTIONS(298), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), + [anon_sym_PERCENT_EQ] = ACTIONS(298), + [anon_sym_STAR_STAR_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(298), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(229), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(268), + [sym_string_start] = ACTIONS(340), }, [74] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1519), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(119), - [anon_sym_import] = ACTIONS(122), - [anon_sym_from] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_print] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_return] = ACTIONS(140), - [anon_sym_del] = ACTIONS(143), - [anon_sym_raise] = ACTIONS(146), - [anon_sym_pass] = ACTIONS(149), - [anon_sym_break] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_if] = ACTIONS(231), - [anon_sym_match] = ACTIONS(234), - [anon_sym_async] = ACTIONS(237), - [anon_sym_for] = ACTIONS(240), - [anon_sym_while] = ACTIONS(243), - [anon_sym_try] = ACTIONS(246), - [anon_sym_with] = ACTIONS(249), - [anon_sym_def] = ACTIONS(252), - [anon_sym_global] = ACTIONS(182), - [anon_sym_nonlocal] = ACTIONS(185), - [anon_sym_exec] = ACTIONS(188), - [anon_sym_class] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_not] = ACTIONS(200), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_lambda] = ACTIONS(206), - [anon_sym_yield] = ACTIONS(209), - [sym_ellipsis] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_integer] = ACTIONS(218), - [sym_float] = ACTIONS(212), - [anon_sym_await] = ACTIONS(221), - [sym_true] = ACTIONS(218), - [sym_false] = ACTIONS(218), - [sym_none] = ACTIONS(218), + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(342), + [anon_sym_DOT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(342), + [anon_sym_as] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(344), + [anon_sym_if] = ACTIONS(347), + [anon_sym_COLON] = ACTIONS(342), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_in] = ACTIONS(347), + [anon_sym_STAR_STAR] = ACTIONS(344), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_not] = ACTIONS(324), + [anon_sym_and] = ACTIONS(347), + [anon_sym_or] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(344), + [anon_sym_PERCENT] = ACTIONS(344), + [anon_sym_SLASH_SLASH] = ACTIONS(344), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_AMP] = ACTIONS(344), + [anon_sym_CARET] = ACTIONS(344), + [anon_sym_LT_LT] = ACTIONS(344), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(342), + [anon_sym_BANG_EQ] = ACTIONS(342), + [anon_sym_GT_EQ] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT_GT] = ACTIONS(342), + [anon_sym_is] = ACTIONS(347), + [anon_sym_lambda] = ACTIONS(330), + [anon_sym_PLUS_EQ] = ACTIONS(342), + [anon_sym_DASH_EQ] = ACTIONS(342), + [anon_sym_STAR_EQ] = ACTIONS(342), + [anon_sym_SLASH_EQ] = ACTIONS(342), + [anon_sym_AT_EQ] = ACTIONS(342), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(342), + [anon_sym_PERCENT_EQ] = ACTIONS(342), + [anon_sym_STAR_STAR_EQ] = ACTIONS(342), + [anon_sym_GT_GT_EQ] = ACTIONS(342), + [anon_sym_LT_LT_EQ] = ACTIONS(342), + [anon_sym_AMP_EQ] = ACTIONS(342), + [anon_sym_CARET_EQ] = ACTIONS(342), + [anon_sym_PIPE_EQ] = ACTIONS(342), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(117), - [sym__string_start] = ACTIONS(224), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(342), + [sym_string_start] = ACTIONS(340), }, [75] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1519), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(258), - [sym__string_start] = ACTIONS(77), - }, - [76] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1519), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(260), - [sym__string_start] = ACTIONS(77), - }, - [77] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1519), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1519), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_async] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_try] = ACTIONS(89), - [anon_sym_with] = ACTIONS(91), - [anon_sym_def] = ACTIONS(93), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_class] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(262), - [sym__string_start] = ACTIONS(77), - }, - [78] = { - [sym_chevron] = STATE(1747), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1539), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_attribute] = STATE(1157), - [sym_subscript] = STATE(1157), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(266), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(270), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(273), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(273), - [anon_sym_async] = ACTIONS(273), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(273), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(266), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_not] = ACTIONS(268), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(268), - [anon_sym_DASH] = ACTIONS(268), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_AT_EQ] = ACTIONS(281), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(281), - [anon_sym_PERCENT_EQ] = ACTIONS(281), - [anon_sym_STAR_STAR_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_CARET_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(283), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(266), - [sym__string_start] = ACTIONS(77), - }, - [79] = { - [sym_named_expression] = STATE(1535), - [sym__named_expression_lhs] = STATE(2190), - [sym_as_pattern] = STATE(1535), - [sym_expression] = STATE(1560), - [sym_primary_expression] = STATE(874), - [sym_not_operator] = STATE(1535), - [sym_boolean_operator] = STATE(1535), - [sym_binary_operator] = STATE(1273), - [sym_unary_operator] = STATE(1273), - [sym_comparison_operator] = STATE(1535), - [sym_lambda] = STATE(1535), - [sym_attribute] = STATE(1273), - [sym_subscript] = STATE(1273), - [sym_call] = STATE(1273), - [sym_list] = STATE(1273), - [sym_set] = STATE(1273), - [sym_tuple] = STATE(1273), - [sym_dictionary] = STATE(1273), - [sym_list_comprehension] = STATE(1273), - [sym_dictionary_comprehension] = STATE(1273), - [sym_set_comprehension] = STATE(1273), - [sym_generator_expression] = STATE(1273), - [sym_parenthesized_expression] = STATE(1273), - [sym_conditional_expression] = STATE(1535), - [sym_concatenated_string] = STATE(1273), - [sym_string] = STATE(875), - [sym_await] = STATE(1535), - [sym_identifier] = ACTIONS(285), - [anon_sym_SEMI] = ACTIONS(266), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(270), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(289), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(289), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(291), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(299), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_AT_EQ] = ACTIONS(281), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(281), - [anon_sym_PERCENT_EQ] = ACTIONS(281), - [anon_sym_STAR_STAR_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_CARET_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [sym_ellipsis] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [sym_integer] = ACTIONS(305), - [sym_float] = ACTIONS(301), - [anon_sym_await] = ACTIONS(307), - [sym_true] = ACTIONS(305), - [sym_false] = ACTIONS(305), - [sym_none] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(266), - [sym__string_start] = ACTIONS(309), - }, - [80] = { - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1493), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_attribute] = STATE(1157), - [sym_subscript] = STATE(1157), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(266), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(270), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(273), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(273), - [anon_sym_async] = ACTIONS(273), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(273), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_not] = ACTIONS(61), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_AT_EQ] = ACTIONS(281), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(281), - [anon_sym_PERCENT_EQ] = ACTIONS(281), - [anon_sym_STAR_STAR_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_CARET_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(283), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(266), - [sym__string_start] = ACTIONS(77), - }, - [81] = { - [sym_named_expression] = STATE(1535), - [sym__named_expression_lhs] = STATE(2190), - [sym_as_pattern] = STATE(1535), - [sym_expression] = STATE(1616), - [sym_primary_expression] = STATE(874), - [sym_not_operator] = STATE(1535), - [sym_boolean_operator] = STATE(1535), - [sym_binary_operator] = STATE(1273), - [sym_unary_operator] = STATE(1273), - [sym_comparison_operator] = STATE(1535), - [sym_lambda] = STATE(1535), - [sym_attribute] = STATE(1273), - [sym_subscript] = STATE(1273), - [sym_call] = STATE(1273), - [sym_list] = STATE(1273), - [sym_set] = STATE(1273), - [sym_tuple] = STATE(1273), - [sym_dictionary] = STATE(1273), - [sym_list_comprehension] = STATE(1273), - [sym_dictionary_comprehension] = STATE(1273), - [sym_set_comprehension] = STATE(1273), - [sym_generator_expression] = STATE(1273), - [sym_parenthesized_expression] = STATE(1273), - [sym_conditional_expression] = STATE(1535), - [sym_concatenated_string] = STATE(1273), - [sym_string] = STATE(875), - [sym_await] = STATE(1535), - [sym_identifier] = ACTIONS(285), - [anon_sym_SEMI] = ACTIONS(266), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(270), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(289), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(289), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(291), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(299), - [anon_sym_PLUS_EQ] = ACTIONS(281), - [anon_sym_DASH_EQ] = ACTIONS(281), - [anon_sym_STAR_EQ] = ACTIONS(281), - [anon_sym_SLASH_EQ] = ACTIONS(281), - [anon_sym_AT_EQ] = ACTIONS(281), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(281), - [anon_sym_PERCENT_EQ] = ACTIONS(281), - [anon_sym_STAR_STAR_EQ] = ACTIONS(281), - [anon_sym_GT_GT_EQ] = ACTIONS(281), - [anon_sym_LT_LT_EQ] = ACTIONS(281), - [anon_sym_AMP_EQ] = ACTIONS(281), - [anon_sym_CARET_EQ] = ACTIONS(281), - [anon_sym_PIPE_EQ] = ACTIONS(281), - [sym_ellipsis] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [sym_integer] = ACTIONS(305), - [sym_float] = ACTIONS(301), - [anon_sym_await] = ACTIONS(307), - [sym_true] = ACTIONS(305), - [sym_false] = ACTIONS(305), - [sym_none] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(266), - [sym__string_start] = ACTIONS(309), - }, - [82] = { - [sym__simple_statements] = STATE(809), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(319), - [sym__indent] = ACTIONS(321), - [sym__string_start] = ACTIONS(77), - }, - [83] = { - [sym__simple_statements] = STATE(598), - [sym_import_statement] = STATE(1773), - [sym_future_import_statement] = STATE(1773), - [sym_import_from_statement] = STATE(1773), - [sym_print_statement] = STATE(1773), - [sym_assert_statement] = STATE(1773), - [sym_expression_statement] = STATE(1773), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1773), - [sym_delete_statement] = STATE(1773), - [sym_raise_statement] = STATE(1773), - [sym_pass_statement] = STATE(1773), - [sym_break_statement] = STATE(1773), - [sym_continue_statement] = STATE(1773), - [sym_global_statement] = STATE(1773), - [sym_nonlocal_statement] = STATE(1773), - [sym_exec_statement] = STATE(1773), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(323), - [sym__indent] = ACTIONS(325), - [sym__string_start] = ACTIONS(77), - }, - [84] = { - [sym__simple_statements] = STATE(756), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(327), - [sym__indent] = ACTIONS(329), - [sym__string_start] = ACTIONS(77), - }, - [85] = { - [sym__simple_statements] = STATE(689), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(331), - [sym__indent] = ACTIONS(333), - [sym__string_start] = ACTIONS(77), - }, - [86] = { - [sym__simple_statements] = STATE(812), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(335), - [sym__indent] = ACTIONS(337), - [sym__string_start] = ACTIONS(77), - }, - [87] = { - [sym__simple_statements] = STATE(684), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(339), - [sym__indent] = ACTIONS(341), - [sym__string_start] = ACTIONS(77), - }, - [88] = { - [sym__simple_statements] = STATE(781), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(343), - [sym__indent] = ACTIONS(345), - [sym__string_start] = ACTIONS(77), - }, - [89] = { - [sym__simple_statements] = STATE(758), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(347), - [sym__indent] = ACTIONS(349), - [sym__string_start] = ACTIONS(77), - }, - [90] = { - [sym__simple_statements] = STATE(701), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym__simple_statements] = STATE(790), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(351), [sym__indent] = ACTIONS(353), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [91] = { - [sym__simple_statements] = STATE(776), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [76] = { + [sym__simple_statements] = STATE(839), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(355), [sym__indent] = ACTIONS(357), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [92] = { - [sym__simple_statements] = STATE(764), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [77] = { + [sym__simple_statements] = STATE(656), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(359), [sym__indent] = ACTIONS(361), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [93] = { - [sym__simple_statements] = STATE(655), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [78] = { + [sym__simple_statements] = STATE(826), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(363), [sym__indent] = ACTIONS(365), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [94] = { - [sym__simple_statements] = STATE(596), - [sym_import_statement] = STATE(1773), - [sym_future_import_statement] = STATE(1773), - [sym_import_from_statement] = STATE(1773), - [sym_print_statement] = STATE(1773), - [sym_assert_statement] = STATE(1773), - [sym_expression_statement] = STATE(1773), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1773), - [sym_delete_statement] = STATE(1773), - [sym_raise_statement] = STATE(1773), - [sym_pass_statement] = STATE(1773), - [sym_break_statement] = STATE(1773), - [sym_continue_statement] = STATE(1773), - [sym_global_statement] = STATE(1773), - [sym_nonlocal_statement] = STATE(1773), - [sym_exec_statement] = STATE(1773), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [79] = { + [sym__simple_statements] = STATE(752), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(367), [sym__indent] = ACTIONS(369), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [95] = { - [sym__simple_statements] = STATE(786), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [80] = { + [sym__simple_statements] = STATE(763), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(371), [sym__indent] = ACTIONS(373), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [96] = { - [sym__simple_statements] = STATE(679), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [81] = { + [sym__simple_statements] = STATE(832), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(375), [sym__indent] = ACTIONS(377), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [97] = { - [sym__simple_statements] = STATE(466), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [82] = { + [sym__simple_statements] = STATE(806), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(379), [sym__indent] = ACTIONS(381), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [98] = { - [sym__simple_statements] = STATE(697), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [83] = { + [sym__simple_statements] = STATE(783), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(383), [sym__indent] = ACTIONS(385), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [99] = { - [sym__simple_statements] = STATE(739), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [84] = { + [sym__simple_statements] = STATE(815), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(387), [sym__indent] = ACTIONS(389), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [100] = { - [sym__simple_statements] = STATE(734), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [85] = { + [sym__simple_statements] = STATE(696), + [sym_import_statement] = STATE(2199), + [sym_future_import_statement] = STATE(2199), + [sym_import_from_statement] = STATE(2199), + [sym_print_statement] = STATE(2199), + [sym_assert_statement] = STATE(2199), + [sym_expression_statement] = STATE(2199), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2199), + [sym_delete_statement] = STATE(2199), + [sym_raise_statement] = STATE(2199), + [sym_pass_statement] = STATE(2199), + [sym_break_statement] = STATE(2199), + [sym_continue_statement] = STATE(2199), + [sym_global_statement] = STATE(2199), + [sym_nonlocal_statement] = STATE(2199), + [sym_exec_statement] = STATE(2199), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(391), [sym__indent] = ACTIONS(393), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [101] = { - [sym__simple_statements] = STATE(666), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [86] = { + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(395), [sym__indent] = ACTIONS(397), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [102] = { - [sym__simple_statements] = STATE(730), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [87] = { + [sym__simple_statements] = STATE(798), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(399), [sym__indent] = ACTIONS(401), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [103] = { - [sym__simple_statements] = STATE(618), - [sym_import_statement] = STATE(1861), - [sym_future_import_statement] = STATE(1861), - [sym_import_from_statement] = STATE(1861), - [sym_print_statement] = STATE(1861), - [sym_assert_statement] = STATE(1861), - [sym_expression_statement] = STATE(1861), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1861), - [sym_delete_statement] = STATE(1861), - [sym_raise_statement] = STATE(1861), - [sym_pass_statement] = STATE(1861), - [sym_break_statement] = STATE(1861), - [sym_continue_statement] = STATE(1861), - [sym_global_statement] = STATE(1861), - [sym_nonlocal_statement] = STATE(1861), - [sym_exec_statement] = STATE(1861), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [88] = { + [sym__simple_statements] = STATE(814), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(403), [sym__indent] = ACTIONS(405), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [104] = { - [sym__simple_statements] = STATE(680), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [89] = { + [sym__simple_statements] = STATE(818), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(407), [sym__indent] = ACTIONS(409), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [105] = { - [sym__simple_statements] = STATE(683), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [90] = { + [sym__simple_statements] = STATE(712), + [sym_import_statement] = STATE(2080), + [sym_future_import_statement] = STATE(2080), + [sym_import_from_statement] = STATE(2080), + [sym_print_statement] = STATE(2080), + [sym_assert_statement] = STATE(2080), + [sym_expression_statement] = STATE(2080), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2080), + [sym_delete_statement] = STATE(2080), + [sym_raise_statement] = STATE(2080), + [sym_pass_statement] = STATE(2080), + [sym_break_statement] = STATE(2080), + [sym_continue_statement] = STATE(2080), + [sym_global_statement] = STATE(2080), + [sym_nonlocal_statement] = STATE(2080), + [sym_exec_statement] = STATE(2080), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(411), [sym__indent] = ACTIONS(413), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [106] = { - [sym__simple_statements] = STATE(804), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [91] = { + [sym__simple_statements] = STATE(780), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(415), [sym__indent] = ACTIONS(417), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [107] = { - [sym__simple_statements] = STATE(659), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [92] = { + [sym__simple_statements] = STATE(777), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(419), [sym__indent] = ACTIONS(421), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [108] = { - [sym__simple_statements] = STATE(1549), - [sym_import_statement] = STATE(1932), - [sym_future_import_statement] = STATE(1932), - [sym_import_from_statement] = STATE(1932), - [sym_print_statement] = STATE(1932), - [sym_assert_statement] = STATE(1932), - [sym_expression_statement] = STATE(1932), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1932), - [sym_delete_statement] = STATE(1932), - [sym_raise_statement] = STATE(1932), - [sym_pass_statement] = STATE(1932), - [sym_break_statement] = STATE(1932), - [sym_continue_statement] = STATE(1932), - [sym_global_statement] = STATE(1932), - [sym_nonlocal_statement] = STATE(1932), - [sym_exec_statement] = STATE(1932), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [93] = { + [sym__simple_statements] = STATE(813), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(423), [sym__indent] = ACTIONS(425), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [109] = { - [sym__simple_statements] = STATE(692), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [94] = { + [sym__simple_statements] = STATE(842), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(427), [sym__indent] = ACTIONS(429), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [110] = { - [sym__simple_statements] = STATE(802), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [95] = { + [sym__simple_statements] = STATE(772), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(431), [sym__indent] = ACTIONS(433), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [111] = { - [sym__simple_statements] = STATE(1500), - [sym_import_statement] = STATE(1932), - [sym_future_import_statement] = STATE(1932), - [sym_import_from_statement] = STATE(1932), - [sym_print_statement] = STATE(1932), - [sym_assert_statement] = STATE(1932), - [sym_expression_statement] = STATE(1932), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1932), - [sym_delete_statement] = STATE(1932), - [sym_raise_statement] = STATE(1932), - [sym_pass_statement] = STATE(1932), - [sym_break_statement] = STATE(1932), - [sym_continue_statement] = STATE(1932), - [sym_global_statement] = STATE(1932), - [sym_nonlocal_statement] = STATE(1932), - [sym_exec_statement] = STATE(1932), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [96] = { + [sym__simple_statements] = STATE(897), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(435), [sym__indent] = ACTIONS(437), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [112] = { - [sym__simple_statements] = STATE(665), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [97] = { + [sym__simple_statements] = STATE(785), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(439), [sym__indent] = ACTIONS(441), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [113] = { - [sym__simple_statements] = STATE(718), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [98] = { + [sym__simple_statements] = STATE(861), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(443), [sym__indent] = ACTIONS(445), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [114] = { - [sym__simple_statements] = STATE(639), - [sym_import_statement] = STATE(1861), - [sym_future_import_statement] = STATE(1861), - [sym_import_from_statement] = STATE(1861), - [sym_print_statement] = STATE(1861), - [sym_assert_statement] = STATE(1861), - [sym_expression_statement] = STATE(1861), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1861), - [sym_delete_statement] = STATE(1861), - [sym_raise_statement] = STATE(1861), - [sym_pass_statement] = STATE(1861), - [sym_break_statement] = STATE(1861), - [sym_continue_statement] = STATE(1861), - [sym_global_statement] = STATE(1861), - [sym_nonlocal_statement] = STATE(1861), - [sym_exec_statement] = STATE(1861), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [99] = { + [sym__simple_statements] = STATE(765), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(447), [sym__indent] = ACTIONS(449), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [115] = { - [sym__simple_statements] = STATE(740), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [100] = { + [sym__simple_statements] = STATE(715), + [sym_import_statement] = STATE(2080), + [sym_future_import_statement] = STATE(2080), + [sym_import_from_statement] = STATE(2080), + [sym_print_statement] = STATE(2080), + [sym_assert_statement] = STATE(2080), + [sym_expression_statement] = STATE(2080), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2080), + [sym_delete_statement] = STATE(2080), + [sym_raise_statement] = STATE(2080), + [sym_pass_statement] = STATE(2080), + [sym_break_statement] = STATE(2080), + [sym_continue_statement] = STATE(2080), + [sym_global_statement] = STATE(2080), + [sym_nonlocal_statement] = STATE(2080), + [sym_exec_statement] = STATE(2080), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(451), [sym__indent] = ACTIONS(453), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [116] = { - [sym__simple_statements] = STATE(599), - [sym_import_statement] = STATE(1929), - [sym_future_import_statement] = STATE(1929), - [sym_import_from_statement] = STATE(1929), - [sym_print_statement] = STATE(1929), - [sym_assert_statement] = STATE(1929), - [sym_expression_statement] = STATE(1929), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1929), - [sym_delete_statement] = STATE(1929), - [sym_raise_statement] = STATE(1929), - [sym_pass_statement] = STATE(1929), - [sym_break_statement] = STATE(1929), - [sym_continue_statement] = STATE(1929), - [sym_global_statement] = STATE(1929), - [sym_nonlocal_statement] = STATE(1929), - [sym_exec_statement] = STATE(1929), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [101] = { + [sym__simple_statements] = STATE(767), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(455), [sym__indent] = ACTIONS(457), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [117] = { - [sym__simple_statements] = STATE(657), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [102] = { + [sym__simple_statements] = STATE(867), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(459), [sym__indent] = ACTIONS(461), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [118] = { - [sym__simple_statements] = STATE(761), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [103] = { + [sym__simple_statements] = STATE(824), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(463), [sym__indent] = ACTIONS(465), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [119] = { - [sym__simple_statements] = STATE(603), - [sym_import_statement] = STATE(1773), - [sym_future_import_statement] = STATE(1773), - [sym_import_from_statement] = STATE(1773), - [sym_print_statement] = STATE(1773), - [sym_assert_statement] = STATE(1773), - [sym_expression_statement] = STATE(1773), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1773), - [sym_delete_statement] = STATE(1773), - [sym_raise_statement] = STATE(1773), - [sym_pass_statement] = STATE(1773), - [sym_break_statement] = STATE(1773), - [sym_continue_statement] = STATE(1773), - [sym_global_statement] = STATE(1773), - [sym_nonlocal_statement] = STATE(1773), - [sym_exec_statement] = STATE(1773), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [104] = { + [sym__simple_statements] = STATE(888), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(467), [sym__indent] = ACTIONS(469), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [120] = { - [sym__simple_statements] = STATE(765), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [105] = { + [sym__simple_statements] = STATE(1846), + [sym_import_statement] = STATE(2096), + [sym_future_import_statement] = STATE(2096), + [sym_import_from_statement] = STATE(2096), + [sym_print_statement] = STATE(2096), + [sym_assert_statement] = STATE(2096), + [sym_expression_statement] = STATE(2096), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2096), + [sym_delete_statement] = STATE(2096), + [sym_raise_statement] = STATE(2096), + [sym_pass_statement] = STATE(2096), + [sym_break_statement] = STATE(2096), + [sym_continue_statement] = STATE(2096), + [sym_global_statement] = STATE(2096), + [sym_nonlocal_statement] = STATE(2096), + [sym_exec_statement] = STATE(2096), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(471), [sym__indent] = ACTIONS(473), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [121] = { - [sym__simple_statements] = STATE(650), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [106] = { + [sym__simple_statements] = STATE(664), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(475), [sym__indent] = ACTIONS(477), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [122] = { - [sym__simple_statements] = STATE(726), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [107] = { + [sym__simple_statements] = STATE(757), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(479), [sym__indent] = ACTIONS(481), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [123] = { - [sym__simple_statements] = STATE(662), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [108] = { + [sym__simple_statements] = STATE(854), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(483), [sym__indent] = ACTIONS(485), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [124] = { - [sym__simple_statements] = STATE(685), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [109] = { + [sym__simple_statements] = STATE(857), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(487), [sym__indent] = ACTIONS(489), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [125] = { - [sym__simple_statements] = STATE(673), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [110] = { + [sym__simple_statements] = STATE(703), + [sym_import_statement] = STATE(2255), + [sym_future_import_statement] = STATE(2255), + [sym_import_from_statement] = STATE(2255), + [sym_print_statement] = STATE(2255), + [sym_assert_statement] = STATE(2255), + [sym_expression_statement] = STATE(2255), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2255), + [sym_delete_statement] = STATE(2255), + [sym_raise_statement] = STATE(2255), + [sym_pass_statement] = STATE(2255), + [sym_break_statement] = STATE(2255), + [sym_continue_statement] = STATE(2255), + [sym_global_statement] = STATE(2255), + [sym_nonlocal_statement] = STATE(2255), + [sym_exec_statement] = STATE(2255), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(491), [sym__indent] = ACTIONS(493), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [126] = { - [sym__simple_statements] = STATE(741), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [111] = { + [sym__simple_statements] = STATE(704), + [sym_import_statement] = STATE(2199), + [sym_future_import_statement] = STATE(2199), + [sym_import_from_statement] = STATE(2199), + [sym_print_statement] = STATE(2199), + [sym_assert_statement] = STATE(2199), + [sym_expression_statement] = STATE(2199), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2199), + [sym_delete_statement] = STATE(2199), + [sym_raise_statement] = STATE(2199), + [sym_pass_statement] = STATE(2199), + [sym_break_statement] = STATE(2199), + [sym_continue_statement] = STATE(2199), + [sym_global_statement] = STATE(2199), + [sym_nonlocal_statement] = STATE(2199), + [sym_exec_statement] = STATE(2199), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(495), [sym__indent] = ACTIONS(497), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [127] = { - [sym__simple_statements] = STATE(696), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [112] = { + [sym__simple_statements] = STATE(802), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(499), [sym__indent] = ACTIONS(501), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [128] = { - [sym__simple_statements] = STATE(672), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [113] = { + [sym__simple_statements] = STATE(1845), + [sym_import_statement] = STATE(2096), + [sym_future_import_statement] = STATE(2096), + [sym_import_from_statement] = STATE(2096), + [sym_print_statement] = STATE(2096), + [sym_assert_statement] = STATE(2096), + [sym_expression_statement] = STATE(2096), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2096), + [sym_delete_statement] = STATE(2096), + [sym_raise_statement] = STATE(2096), + [sym_pass_statement] = STATE(2096), + [sym_break_statement] = STATE(2096), + [sym_continue_statement] = STATE(2096), + [sym_global_statement] = STATE(2096), + [sym_nonlocal_statement] = STATE(2096), + [sym_exec_statement] = STATE(2096), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(503), [sym__indent] = ACTIONS(505), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [129] = { - [sym__simple_statements] = STATE(700), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [114] = { + [sym__simple_statements] = STATE(707), + [sym_import_statement] = STATE(2199), + [sym_future_import_statement] = STATE(2199), + [sym_import_from_statement] = STATE(2199), + [sym_print_statement] = STATE(2199), + [sym_assert_statement] = STATE(2199), + [sym_expression_statement] = STATE(2199), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2199), + [sym_delete_statement] = STATE(2199), + [sym_raise_statement] = STATE(2199), + [sym_pass_statement] = STATE(2199), + [sym_break_statement] = STATE(2199), + [sym_continue_statement] = STATE(2199), + [sym_global_statement] = STATE(2199), + [sym_nonlocal_statement] = STATE(2199), + [sym_exec_statement] = STATE(2199), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(507), [sym__indent] = ACTIONS(509), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [130] = { - [sym__simple_statements] = STATE(572), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [115] = { + [sym__simple_statements] = STATE(900), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(511), [sym__indent] = ACTIONS(513), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [131] = { - [sym__simple_statements] = STATE(671), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [116] = { + [sym__simple_statements] = STATE(892), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(515), [sym__indent] = ACTIONS(517), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [132] = { - [sym__simple_statements] = STATE(787), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [117] = { + [sym__simple_statements] = STATE(735), + [sym_import_statement] = STATE(2080), + [sym_future_import_statement] = STATE(2080), + [sym_import_from_statement] = STATE(2080), + [sym_print_statement] = STATE(2080), + [sym_assert_statement] = STATE(2080), + [sym_expression_statement] = STATE(2080), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2080), + [sym_delete_statement] = STATE(2080), + [sym_raise_statement] = STATE(2080), + [sym_pass_statement] = STATE(2080), + [sym_break_statement] = STATE(2080), + [sym_continue_statement] = STATE(2080), + [sym_global_statement] = STATE(2080), + [sym_nonlocal_statement] = STATE(2080), + [sym_exec_statement] = STATE(2080), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(519), [sym__indent] = ACTIONS(521), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [133] = { - [sym__simple_statements] = STATE(723), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [118] = { + [sym__simple_statements] = STATE(742), + [sym_import_statement] = STATE(2140), + [sym_future_import_statement] = STATE(2140), + [sym_import_from_statement] = STATE(2140), + [sym_print_statement] = STATE(2140), + [sym_assert_statement] = STATE(2140), + [sym_expression_statement] = STATE(2140), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2140), + [sym_delete_statement] = STATE(2140), + [sym_raise_statement] = STATE(2140), + [sym_pass_statement] = STATE(2140), + [sym_break_statement] = STATE(2140), + [sym_continue_statement] = STATE(2140), + [sym_global_statement] = STATE(2140), + [sym_nonlocal_statement] = STATE(2140), + [sym_exec_statement] = STATE(2140), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(523), [sym__indent] = ACTIONS(525), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [134] = { - [sym__simple_statements] = STATE(721), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [119] = { + [sym__simple_statements] = STATE(781), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(527), [sym__indent] = ACTIONS(529), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [135] = { - [sym__simple_statements] = STATE(707), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [120] = { + [sym__simple_statements] = STATE(904), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(531), [sym__indent] = ACTIONS(533), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [136] = { - [sym__simple_statements] = STATE(744), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [121] = { + [sym__simple_statements] = STATE(887), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(535), [sym__indent] = ACTIONS(537), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [137] = { - [sym__simple_statements] = STATE(712), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [122] = { + [sym__simple_statements] = STATE(782), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(539), [sym__indent] = ACTIONS(541), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [138] = { - [sym__simple_statements] = STATE(619), - [sym_import_statement] = STATE(1861), - [sym_future_import_statement] = STATE(1861), - [sym_import_from_statement] = STATE(1861), - [sym_print_statement] = STATE(1861), - [sym_assert_statement] = STATE(1861), - [sym_expression_statement] = STATE(1861), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1861), - [sym_delete_statement] = STATE(1861), - [sym_raise_statement] = STATE(1861), - [sym_pass_statement] = STATE(1861), - [sym_break_statement] = STATE(1861), - [sym_continue_statement] = STATE(1861), - [sym_global_statement] = STATE(1861), - [sym_nonlocal_statement] = STATE(1861), - [sym_exec_statement] = STATE(1861), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [123] = { + [sym__simple_statements] = STATE(871), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(543), [sym__indent] = ACTIONS(545), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [139] = { - [sym__simple_statements] = STATE(677), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [124] = { + [sym__simple_statements] = STATE(766), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(547), [sym__indent] = ACTIONS(549), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [140] = { - [sym__simple_statements] = STATE(797), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [125] = { + [sym__simple_statements] = STATE(773), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(551), [sym__indent] = ACTIONS(553), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [141] = { - [sym__simple_statements] = STATE(711), - [sym_import_statement] = STATE(1772), - [sym_future_import_statement] = STATE(1772), - [sym_import_from_statement] = STATE(1772), - [sym_print_statement] = STATE(1772), - [sym_assert_statement] = STATE(1772), - [sym_expression_statement] = STATE(1772), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1772), - [sym_delete_statement] = STATE(1772), - [sym_raise_statement] = STATE(1772), - [sym_pass_statement] = STATE(1772), - [sym_break_statement] = STATE(1772), - [sym_continue_statement] = STATE(1772), - [sym_global_statement] = STATE(1772), - [sym_nonlocal_statement] = STATE(1772), - [sym_exec_statement] = STATE(1772), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [126] = { + [sym__simple_statements] = STATE(794), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(555), [sym__indent] = ACTIONS(557), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [142] = { - [sym__simple_statements] = STATE(780), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [127] = { + [sym__simple_statements] = STATE(845), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(559), [sym__indent] = ACTIONS(561), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [143] = { - [sym__simple_statements] = STATE(768), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [128] = { + [sym__simple_statements] = STATE(749), + [sym_import_statement] = STATE(2084), + [sym_future_import_statement] = STATE(2084), + [sym_import_from_statement] = STATE(2084), + [sym_print_statement] = STATE(2084), + [sym_assert_statement] = STATE(2084), + [sym_expression_statement] = STATE(2084), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2084), + [sym_delete_statement] = STATE(2084), + [sym_raise_statement] = STATE(2084), + [sym_pass_statement] = STATE(2084), + [sym_break_statement] = STATE(2084), + [sym_continue_statement] = STATE(2084), + [sym_global_statement] = STATE(2084), + [sym_nonlocal_statement] = STATE(2084), + [sym_exec_statement] = STATE(2084), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(563), [sym__indent] = ACTIONS(565), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [144] = { - [sym__simple_statements] = STATE(778), - [sym_import_statement] = STATE(1793), - [sym_future_import_statement] = STATE(1793), - [sym_import_from_statement] = STATE(1793), - [sym_print_statement] = STATE(1793), - [sym_assert_statement] = STATE(1793), - [sym_expression_statement] = STATE(1793), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1793), - [sym_delete_statement] = STATE(1793), - [sym_raise_statement] = STATE(1793), - [sym_pass_statement] = STATE(1793), - [sym_break_statement] = STATE(1793), - [sym_continue_statement] = STATE(1793), - [sym_global_statement] = STATE(1793), - [sym_nonlocal_statement] = STATE(1793), - [sym_exec_statement] = STATE(1793), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [129] = { + [sym__simple_statements] = STATE(870), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(567), [sym__indent] = ACTIONS(569), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [145] = { - [sym__simple_statements] = STATE(622), - [sym_import_statement] = STATE(1915), - [sym_future_import_statement] = STATE(1915), - [sym_import_from_statement] = STATE(1915), - [sym_print_statement] = STATE(1915), - [sym_assert_statement] = STATE(1915), - [sym_expression_statement] = STATE(1915), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1915), - [sym_delete_statement] = STATE(1915), - [sym_raise_statement] = STATE(1915), - [sym_pass_statement] = STATE(1915), - [sym_break_statement] = STATE(1915), - [sym_continue_statement] = STATE(1915), - [sym_global_statement] = STATE(1915), - [sym_nonlocal_statement] = STATE(1915), - [sym_exec_statement] = STATE(1915), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [130] = { + [sym__simple_statements] = STATE(764), + [sym_import_statement] = STATE(2175), + [sym_future_import_statement] = STATE(2175), + [sym_import_from_statement] = STATE(2175), + [sym_print_statement] = STATE(2175), + [sym_assert_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2175), + [sym_delete_statement] = STATE(2175), + [sym_raise_statement] = STATE(2175), + [sym_pass_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_global_statement] = STATE(2175), + [sym_nonlocal_statement] = STATE(2175), + [sym_exec_statement] = STATE(2175), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(571), [sym__indent] = ACTIONS(573), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [146] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [131] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(575), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [147] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [132] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(577), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [148] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [133] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(579), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [149] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [134] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(581), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [150] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [135] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(583), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [151] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [136] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(585), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [152] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [137] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(587), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [153] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [138] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(589), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [154] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [139] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(591), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [155] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [140] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(593), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [156] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [141] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(595), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [157] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [142] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(597), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [158] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [143] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(599), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), }, - [159] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [144] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(601), - [sym__string_start] = ACTIONS(77), + [sym_string_start] = ACTIONS(79), + }, + [145] = { + [sym_import_statement] = STATE(2328), + [sym_future_import_statement] = STATE(2328), + [sym_import_from_statement] = STATE(2328), + [sym_print_statement] = STATE(2328), + [sym_assert_statement] = STATE(2328), + [sym_expression_statement] = STATE(2328), + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2504), + [sym_return_statement] = STATE(2328), + [sym_delete_statement] = STATE(2328), + [sym_raise_statement] = STATE(2328), + [sym_pass_statement] = STATE(2328), + [sym_break_statement] = STATE(2328), + [sym_continue_statement] = STATE(2328), + [sym_global_statement] = STATE(2328), + [sym_nonlocal_statement] = STATE(2328), + [sym_exec_statement] = STATE(2328), + [sym_pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1693), + [sym_list_pattern] = STATE(1693), + [sym_list_splat_pattern] = STATE(661), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1161), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_assignment] = STATE(2292), + [sym_augmented_assignment] = STATE(2292), + [sym_pattern_list] = STATE(1722), + [sym_yield] = STATE(2292), + [sym_attribute] = STATE(666), + [sym_subscript] = STATE(666), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(349), + [anon_sym_async] = ACTIONS(349), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(79), + }, + [146] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(342), + [anon_sym_as] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_if] = ACTIONS(347), + [anon_sym_COLON] = ACTIONS(342), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_for] = ACTIONS(347), + [anon_sym_in] = ACTIONS(347), + [anon_sym_STAR_STAR] = ACTIONS(603), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_not] = ACTIONS(324), + [anon_sym_and] = ACTIONS(347), + [anon_sym_or] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(344), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(342), + [anon_sym_BANG_EQ] = ACTIONS(342), + [anon_sym_GT_EQ] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT_GT] = ACTIONS(342), + [anon_sym_is] = ACTIONS(347), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(342), + [sym_type_conversion] = ACTIONS(342), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [147] = { + [sym_named_expression] = STATE(1343), + [sym__named_expression_lhs] = STATE(2395), + [sym_list_splat_pattern] = STATE(1236), + [sym_as_pattern] = STATE(1343), + [sym_expression] = STATE(1181), + [sym_primary_expression] = STATE(1044), + [sym_not_operator] = STATE(1343), + [sym_boolean_operator] = STATE(1343), + [sym_binary_operator] = STATE(1341), + [sym_unary_operator] = STATE(1341), + [sym_comparison_operator] = STATE(1343), + [sym_lambda] = STATE(1343), + [sym_attribute] = STATE(1341), + [sym_subscript] = STATE(1341), + [sym_call] = STATE(1341), + [sym_list] = STATE(1341), + [sym_set] = STATE(1341), + [sym_tuple] = STATE(1341), + [sym_dictionary] = STATE(1341), + [sym_list_comprehension] = STATE(1341), + [sym_dictionary_comprehension] = STATE(1341), + [sym_set_comprehension] = STATE(1341), + [sym_generator_expression] = STATE(1341), + [sym_parenthesized_expression] = STATE(1341), + [sym_conditional_expression] = STATE(1343), + [sym_concatenated_string] = STATE(1341), + [sym_string] = STATE(1032), + [sym_await] = STATE(1341), + [sym_identifier] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(275), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_match] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(270), + [anon_sym_not] = ACTIONS(616), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(268), + [sym_type_conversion] = ACTIONS(268), + [sym_integer] = ACTIONS(626), + [sym_float] = ACTIONS(622), + [anon_sym_await] = ACTIONS(628), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_none] = ACTIONS(626), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(630), + }, + [148] = { + [sym_named_expression] = STATE(1343), + [sym__named_expression_lhs] = STATE(2395), + [sym_list_splat_pattern] = STATE(1236), + [sym_as_pattern] = STATE(1343), + [sym_expression] = STATE(1181), + [sym_primary_expression] = STATE(1044), + [sym_not_operator] = STATE(1343), + [sym_boolean_operator] = STATE(1343), + [sym_binary_operator] = STATE(1341), + [sym_unary_operator] = STATE(1341), + [sym_comparison_operator] = STATE(1343), + [sym_lambda] = STATE(1343), + [sym_attribute] = STATE(1341), + [sym_subscript] = STATE(1341), + [sym_call] = STATE(1341), + [sym_list] = STATE(1341), + [sym_set] = STATE(1341), + [sym_tuple] = STATE(1341), + [sym_dictionary] = STATE(1341), + [sym_list_comprehension] = STATE(1341), + [sym_dictionary_comprehension] = STATE(1341), + [sym_set_comprehension] = STATE(1341), + [sym_generator_expression] = STATE(1341), + [sym_parenthesized_expression] = STATE(1341), + [sym_conditional_expression] = STATE(1343), + [sym_concatenated_string] = STATE(1341), + [sym_string] = STATE(1032), + [sym_await] = STATE(1341), + [sym_identifier] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_match] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(270), + [anon_sym_not] = ACTIONS(616), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(268), + [sym_type_conversion] = ACTIONS(268), + [sym_integer] = ACTIONS(626), + [sym_float] = ACTIONS(622), + [anon_sym_await] = ACTIONS(628), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_none] = ACTIONS(626), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(630), + }, + [149] = { + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2411), + [sym_list_splat_pattern] = STATE(1172), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1300), + [sym_primary_expression] = STATE(1046), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_attribute] = STATE(1344), + [sym_subscript] = STATE(1344), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(266), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_from] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(304), + [anon_sym_print] = ACTIONS(281), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(281), + [anon_sym_async] = ACTIONS(281), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(281), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(270), + [anon_sym_not] = ACTIONS(308), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(312), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(300), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(268), + [sym_string_start] = ACTIONS(79), + }, + [150] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_STAR_STAR] = ACTIONS(270), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(270), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(298), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(270), + [anon_sym_SLASH_SLASH] = ACTIONS(270), + [anon_sym_PIPE] = ACTIONS(270), + [anon_sym_AMP] = ACTIONS(270), + [anon_sym_CARET] = ACTIONS(270), + [anon_sym_LT_LT] = ACTIONS(270), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [anon_sym_PLUS_EQ] = ACTIONS(298), + [anon_sym_DASH_EQ] = ACTIONS(298), + [anon_sym_STAR_EQ] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(298), + [anon_sym_AT_EQ] = ACTIONS(298), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), + [anon_sym_PERCENT_EQ] = ACTIONS(298), + [anon_sym_STAR_STAR_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(298), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(298), + [sym_string_start] = ACTIONS(340), + }, + [151] = { + [sym_named_expression] = STATE(1343), + [sym__named_expression_lhs] = STATE(2395), + [sym_list_splat_pattern] = STATE(1236), + [sym_as_pattern] = STATE(1343), + [sym_expression] = STATE(1181), + [sym_primary_expression] = STATE(1044), + [sym_not_operator] = STATE(1343), + [sym_boolean_operator] = STATE(1343), + [sym_binary_operator] = STATE(1341), + [sym_unary_operator] = STATE(1341), + [sym_comparison_operator] = STATE(1343), + [sym_lambda] = STATE(1343), + [sym_attribute] = STATE(1341), + [sym_subscript] = STATE(1341), + [sym_call] = STATE(1341), + [sym_list] = STATE(1341), + [sym_set] = STATE(1341), + [sym_tuple] = STATE(1341), + [sym_dictionary] = STATE(1341), + [sym_list_comprehension] = STATE(1341), + [sym_dictionary_comprehension] = STATE(1341), + [sym_set_comprehension] = STATE(1341), + [sym_generator_expression] = STATE(1341), + [sym_parenthesized_expression] = STATE(1341), + [sym_conditional_expression] = STATE(1343), + [sym_concatenated_string] = STATE(1341), + [sym_string] = STATE(1032), + [sym_await] = STATE(1341), + [sym_identifier] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(268), + [anon_sym_match] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(270), + [anon_sym_not] = ACTIONS(616), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(268), + [sym_type_conversion] = ACTIONS(268), + [sym_integer] = ACTIONS(626), + [sym_float] = ACTIONS(622), + [anon_sym_await] = ACTIONS(628), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_none] = ACTIONS(626), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(630), + }, + [152] = { + [sym_named_expression] = STATE(1278), + [sym__named_expression_lhs] = STATE(2390), + [sym_list_splat_pattern] = STATE(1338), + [sym_as_pattern] = STATE(1278), + [sym_expression] = STATE(1276), + [sym_primary_expression] = STATE(1045), + [sym_not_operator] = STATE(1278), + [sym_boolean_operator] = STATE(1278), + [sym_binary_operator] = STATE(1277), + [sym_unary_operator] = STATE(1277), + [sym_comparison_operator] = STATE(1278), + [sym_lambda] = STATE(1278), + [sym_attribute] = STATE(1277), + [sym_subscript] = STATE(1277), + [sym_call] = STATE(1277), + [sym_list] = STATE(1277), + [sym_set] = STATE(1277), + [sym_tuple] = STATE(1277), + [sym_dictionary] = STATE(1277), + [sym_list_comprehension] = STATE(1277), + [sym_dictionary_comprehension] = STATE(1277), + [sym_set_comprehension] = STATE(1277), + [sym_generator_expression] = STATE(1277), + [sym_parenthesized_expression] = STATE(1277), + [sym_conditional_expression] = STATE(1278), + [sym_concatenated_string] = STATE(1277), + [sym_string] = STATE(1037), + [sym_await] = STATE(1277), + [sym_identifier] = ACTIONS(632), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(634), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_print] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_match] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_for] = ACTIONS(270), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(638), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_not] = ACTIONS(642), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(646), + [sym_ellipsis] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(268), + [sym_integer] = ACTIONS(652), + [sym_float] = ACTIONS(648), + [anon_sym_await] = ACTIONS(654), + [sym_true] = ACTIONS(652), + [sym_false] = ACTIONS(652), + [sym_none] = ACTIONS(652), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(656), + }, + [153] = { + [sym_named_expression] = STATE(1454), + [sym__named_expression_lhs] = STATE(2415), + [sym_list_splat_pattern] = STATE(1407), + [sym_as_pattern] = STATE(1454), + [sym_expression] = STATE(1372), + [sym_primary_expression] = STATE(1098), + [sym_not_operator] = STATE(1454), + [sym_boolean_operator] = STATE(1454), + [sym_binary_operator] = STATE(1385), + [sym_unary_operator] = STATE(1385), + [sym_comparison_operator] = STATE(1454), + [sym_lambda] = STATE(1454), + [sym_attribute] = STATE(1385), + [sym_subscript] = STATE(1385), + [sym_call] = STATE(1385), + [sym_list] = STATE(1385), + [sym_set] = STATE(1385), + [sym_tuple] = STATE(1385), + [sym_dictionary] = STATE(1385), + [sym_list_comprehension] = STATE(1385), + [sym_dictionary_comprehension] = STATE(1385), + [sym_set_comprehension] = STATE(1385), + [sym_generator_expression] = STATE(1385), + [sym_parenthesized_expression] = STATE(1385), + [sym_conditional_expression] = STATE(1454), + [sym_concatenated_string] = STATE(1385), + [sym_string] = STATE(1095), + [sym_await] = STATE(1385), + [sym_identifier] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(268), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_print] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(664), + [anon_sym_for] = ACTIONS(270), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(674), + [sym_ellipsis] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(678), + [sym_integer] = ACTIONS(680), + [sym_float] = ACTIONS(676), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(680), + [sym_false] = ACTIONS(680), + [sym_none] = ACTIONS(680), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(684), + }, + [154] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2366), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1490), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_else] = ACTIONS(270), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(270), + [anon_sym_not] = ACTIONS(686), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(688), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [155] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(342), + [anon_sym_DOT] = ACTIONS(344), + [anon_sym_from] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(342), + [anon_sym_as] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_if] = ACTIONS(347), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_in] = ACTIONS(347), + [anon_sym_STAR_STAR] = ACTIONS(603), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_not] = ACTIONS(324), + [anon_sym_and] = ACTIONS(347), + [anon_sym_or] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(344), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(342), + [anon_sym_BANG_EQ] = ACTIONS(342), + [anon_sym_GT_EQ] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT_GT] = ACTIONS(342), + [anon_sym_is] = ACTIONS(347), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(342), + [sym_string_start] = ACTIONS(340), + }, + [156] = { + [sym_named_expression] = STATE(1343), + [sym__named_expression_lhs] = STATE(2395), + [sym_list_splat_pattern] = STATE(1236), + [sym_as_pattern] = STATE(1343), + [sym_expression] = STATE(1181), + [sym_primary_expression] = STATE(1044), + [sym_not_operator] = STATE(1343), + [sym_boolean_operator] = STATE(1343), + [sym_binary_operator] = STATE(1341), + [sym_unary_operator] = STATE(1341), + [sym_comparison_operator] = STATE(1343), + [sym_lambda] = STATE(1343), + [sym_attribute] = STATE(1341), + [sym_subscript] = STATE(1341), + [sym_call] = STATE(1341), + [sym_list] = STATE(1341), + [sym_set] = STATE(1341), + [sym_tuple] = STATE(1341), + [sym_dictionary] = STATE(1341), + [sym_list_comprehension] = STATE(1341), + [sym_dictionary_comprehension] = STATE(1341), + [sym_set_comprehension] = STATE(1341), + [sym_generator_expression] = STATE(1341), + [sym_parenthesized_expression] = STATE(1341), + [sym_conditional_expression] = STATE(1343), + [sym_concatenated_string] = STATE(1341), + [sym_string] = STATE(1032), + [sym_await] = STATE(1341), + [sym_identifier] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_as] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(344), + [anon_sym_COLON] = ACTIONS(347), + [anon_sym_match] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_for] = ACTIONS(347), + [anon_sym_in] = ACTIONS(344), + [anon_sym_STAR_STAR] = ACTIONS(603), + [anon_sym_exec] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_not] = ACTIONS(616), + [anon_sym_and] = ACTIONS(344), + [anon_sym_or] = ACTIONS(344), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(344), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LT_GT] = ACTIONS(603), + [anon_sym_is] = ACTIONS(344), + [anon_sym_lambda] = ACTIONS(620), + [sym_ellipsis] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(603), + [sym_integer] = ACTIONS(626), + [sym_float] = ACTIONS(622), + [anon_sym_await] = ACTIONS(628), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_none] = ACTIONS(626), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(630), + }, + [157] = { + [sym_named_expression] = STATE(1329), + [sym__named_expression_lhs] = STATE(2411), + [sym_list_splat_pattern] = STATE(1172), + [sym_as_pattern] = STATE(1329), + [sym_expression] = STATE(1300), + [sym_primary_expression] = STATE(1046), + [sym_not_operator] = STATE(1329), + [sym_boolean_operator] = STATE(1329), + [sym_binary_operator] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_comparison_operator] = STATE(1329), + [sym_lambda] = STATE(1329), + [sym_attribute] = STATE(1344), + [sym_subscript] = STATE(1344), + [sym_call] = STATE(1344), + [sym_list] = STATE(1344), + [sym_set] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_dictionary] = STATE(1344), + [sym_list_comprehension] = STATE(1344), + [sym_dictionary_comprehension] = STATE(1344), + [sym_set_comprehension] = STATE(1344), + [sym_generator_expression] = STATE(1344), + [sym_parenthesized_expression] = STATE(1344), + [sym_conditional_expression] = STATE(1329), + [sym_concatenated_string] = STATE(1344), + [sym_string] = STATE(1034), + [sym_await] = STATE(1344), + [sym_identifier] = ACTIONS(266), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_from] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(304), + [anon_sym_print] = ACTIONS(281), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(281), + [anon_sym_async] = ACTIONS(281), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(281), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(270), + [anon_sym_not] = ACTIONS(308), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(312), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(300), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(268), + [sym_string_start] = ACTIONS(79), + }, + [158] = { + [sym_named_expression] = STATE(1454), + [sym__named_expression_lhs] = STATE(2415), + [sym_list_splat_pattern] = STATE(1407), + [sym_as_pattern] = STATE(1454), + [sym_expression] = STATE(1372), + [sym_primary_expression] = STATE(1098), + [sym_not_operator] = STATE(1454), + [sym_boolean_operator] = STATE(1454), + [sym_binary_operator] = STATE(1385), + [sym_unary_operator] = STATE(1385), + [sym_comparison_operator] = STATE(1454), + [sym_lambda] = STATE(1454), + [sym_attribute] = STATE(1385), + [sym_subscript] = STATE(1385), + [sym_call] = STATE(1385), + [sym_list] = STATE(1385), + [sym_set] = STATE(1385), + [sym_tuple] = STATE(1385), + [sym_dictionary] = STATE(1385), + [sym_list_comprehension] = STATE(1385), + [sym_dictionary_comprehension] = STATE(1385), + [sym_set_comprehension] = STATE(1385), + [sym_generator_expression] = STATE(1385), + [sym_parenthesized_expression] = STATE(1385), + [sym_conditional_expression] = STATE(1454), + [sym_concatenated_string] = STATE(1385), + [sym_string] = STATE(1095), + [sym_await] = STATE(1385), + [sym_identifier] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(275), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_print] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(664), + [anon_sym_for] = ACTIONS(270), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(674), + [sym_ellipsis] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(678), + [sym_integer] = ACTIONS(680), + [sym_float] = ACTIONS(676), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(680), + [sym_false] = ACTIONS(680), + [sym_none] = ACTIONS(680), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(684), + }, + [159] = { + [sym_named_expression] = STATE(1506), + [sym__named_expression_lhs] = STATE(2385), + [sym_list_splat_pattern] = STATE(1397), + [sym_as_pattern] = STATE(1506), + [sym_expression] = STATE(1362), + [sym_primary_expression] = STATE(1059), + [sym_not_operator] = STATE(1506), + [sym_boolean_operator] = STATE(1506), + [sym_binary_operator] = STATE(1507), + [sym_unary_operator] = STATE(1507), + [sym_comparison_operator] = STATE(1506), + [sym_lambda] = STATE(1506), + [sym_attribute] = STATE(1507), + [sym_subscript] = STATE(1507), + [sym_call] = STATE(1507), + [sym_list] = STATE(1507), + [sym_set] = STATE(1507), + [sym_tuple] = STATE(1507), + [sym_dictionary] = STATE(1507), + [sym_list_comprehension] = STATE(1507), + [sym_dictionary_comprehension] = STATE(1507), + [sym_set_comprehension] = STATE(1507), + [sym_generator_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_conditional_expression] = STATE(1506), + [sym_concatenated_string] = STATE(1507), + [sym_string] = STATE(1058), + [sym_await] = STATE(1507), + [sym_identifier] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(275), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_print] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(696), + [anon_sym_async] = ACTIONS(696), + [anon_sym_for] = ACTIONS(270), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(275), + [anon_sym_not] = ACTIONS(700), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(704), + [sym_ellipsis] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(708), + [sym_integer] = ACTIONS(710), + [sym_float] = ACTIONS(706), + [anon_sym_await] = ACTIONS(712), + [sym_true] = ACTIONS(710), + [sym_false] = ACTIONS(710), + [sym_none] = ACTIONS(710), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(714), }, [160] = { - [sym_import_statement] = STATE(1985), - [sym_future_import_statement] = STATE(1985), - [sym_import_from_statement] = STATE(1985), - [sym_print_statement] = STATE(1985), - [sym_assert_statement] = STATE(1985), - [sym_expression_statement] = STATE(1985), - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_return_statement] = STATE(1985), - [sym_delete_statement] = STATE(1985), - [sym_raise_statement] = STATE(1985), - [sym_pass_statement] = STATE(1985), - [sym_break_statement] = STATE(1985), - [sym_continue_statement] = STATE(1985), - [sym_global_statement] = STATE(1985), - [sym_nonlocal_statement] = STATE(1985), - [sym_exec_statement] = STATE(1985), - [sym_pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1388), - [sym_list_pattern] = STATE(1388), - [sym_list_splat_pattern] = STATE(1388), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1541), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_assignment] = STATE(1989), - [sym_augmented_assignment] = STATE(1989), - [sym_pattern_list] = STATE(1402), - [sym_yield] = STATE(1989), - [sym_attribute] = STATE(506), - [sym_subscript] = STATE(506), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_match] = ACTIONS(317), - [anon_sym_async] = ACTIONS(317), - [anon_sym_global] = ACTIONS(49), - [anon_sym_nonlocal] = ACTIONS(51), - [anon_sym_exec] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_not] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(65), - [anon_sym_yield] = ACTIONS(67), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(75), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym_named_expression] = STATE(1278), + [sym__named_expression_lhs] = STATE(2390), + [sym_list_splat_pattern] = STATE(1338), + [sym_as_pattern] = STATE(1278), + [sym_expression] = STATE(1276), + [sym_primary_expression] = STATE(1045), + [sym_not_operator] = STATE(1278), + [sym_boolean_operator] = STATE(1278), + [sym_binary_operator] = STATE(1277), + [sym_unary_operator] = STATE(1277), + [sym_comparison_operator] = STATE(1278), + [sym_lambda] = STATE(1278), + [sym_attribute] = STATE(1277), + [sym_subscript] = STATE(1277), + [sym_call] = STATE(1277), + [sym_list] = STATE(1277), + [sym_set] = STATE(1277), + [sym_tuple] = STATE(1277), + [sym_dictionary] = STATE(1277), + [sym_list_comprehension] = STATE(1277), + [sym_dictionary_comprehension] = STATE(1277), + [sym_set_comprehension] = STATE(1277), + [sym_generator_expression] = STATE(1277), + [sym_parenthesized_expression] = STATE(1277), + [sym_conditional_expression] = STATE(1278), + [sym_concatenated_string] = STATE(1277), + [sym_string] = STATE(1037), + [sym_await] = STATE(1277), + [sym_identifier] = ACTIONS(632), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(634), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_print] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(268), + [anon_sym_match] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_for] = ACTIONS(270), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(638), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_not] = ACTIONS(642), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(646), + [sym_ellipsis] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(268), + [sym_integer] = ACTIONS(652), + [sym_float] = ACTIONS(648), + [anon_sym_await] = ACTIONS(654), + [sym_true] = ACTIONS(652), + [sym_false] = ACTIONS(652), + [sym_none] = ACTIONS(652), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(656), }, [161] = { - [sym_named_expression] = STATE(1478), - [sym__named_expression_lhs] = STATE(2184), - [sym_as_pattern] = STATE(1478), - [sym_expression] = STATE(1493), - [sym_primary_expression] = STATE(835), - [sym_not_operator] = STATE(1478), - [sym_boolean_operator] = STATE(1478), - [sym_binary_operator] = STATE(1157), - [sym_unary_operator] = STATE(1157), - [sym_comparison_operator] = STATE(1478), - [sym_lambda] = STATE(1478), - [sym_attribute] = STATE(1157), - [sym_subscript] = STATE(1157), - [sym_call] = STATE(1157), - [sym_list] = STATE(1157), - [sym_set] = STATE(1157), - [sym_tuple] = STATE(1157), - [sym_dictionary] = STATE(1157), - [sym_list_comprehension] = STATE(1157), - [sym_dictionary_comprehension] = STATE(1157), - [sym_set_comprehension] = STATE(1157), - [sym_generator_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_conditional_expression] = STATE(1478), - [sym_concatenated_string] = STATE(1157), - [sym_string] = STATE(837), - [sym_await] = STATE(1478), - [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(266), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_from] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(273), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(273), - [anon_sym_async] = ACTIONS(273), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(273), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_EQ] = ACTIONS(268), - [anon_sym_not] = ACTIONS(61), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(65), - [sym_ellipsis] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(69), - [anon_sym_await] = ACTIONS(283), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [sym_none] = ACTIONS(73), + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(342), + [anon_sym_COMMA] = ACTIONS(342), + [anon_sym_as] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_if] = ACTIONS(347), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_for] = ACTIONS(347), + [anon_sym_in] = ACTIONS(347), + [anon_sym_STAR_STAR] = ACTIONS(603), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_not] = ACTIONS(324), + [anon_sym_and] = ACTIONS(347), + [anon_sym_or] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(344), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(342), + [anon_sym_BANG_EQ] = ACTIONS(342), + [anon_sym_GT_EQ] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT_GT] = ACTIONS(342), + [anon_sym_is] = ACTIONS(347), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(266), - [sym__string_start] = ACTIONS(77), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), }, [162] = { - [sym_named_expression] = STATE(1480), - [sym__named_expression_lhs] = STATE(2217), - [sym_as_pattern] = STATE(1480), - [sym_expression] = STATE(1487), - [sym_primary_expression] = STATE(836), - [sym_not_operator] = STATE(1480), - [sym_boolean_operator] = STATE(1480), - [sym_binary_operator] = STATE(1156), - [sym_unary_operator] = STATE(1156), - [sym_comparison_operator] = STATE(1480), - [sym_lambda] = STATE(1480), - [sym_attribute] = STATE(1156), - [sym_subscript] = STATE(1156), - [sym_call] = STATE(1156), - [sym_list] = STATE(1156), - [sym_set] = STATE(1156), - [sym_tuple] = STATE(1156), - [sym_dictionary] = STATE(1156), - [sym_list_comprehension] = STATE(1156), - [sym_dictionary_comprehension] = STATE(1156), - [sym_set_comprehension] = STATE(1156), - [sym_generator_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(1156), - [sym_conditional_expression] = STATE(1480), - [sym_concatenated_string] = STATE(1156), - [sym_string] = STATE(844), - [sym_await] = STATE(1480), - [sym_identifier] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(268), - [anon_sym_match] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(607), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(268), - [anon_sym_not] = ACTIONS(611), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(615), - [sym_ellipsis] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(266), - [sym_type_conversion] = ACTIONS(266), - [sym_integer] = ACTIONS(621), - [sym_float] = ACTIONS(617), - [anon_sym_await] = ACTIONS(623), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_none] = ACTIONS(621), + [sym_named_expression] = STATE(1606), + [sym__named_expression_lhs] = STATE(2400), + [sym_list_splat_pattern] = STATE(1516), + [sym_as_pattern] = STATE(1606), + [sym_expression] = STATE(1602), + [sym_primary_expression] = STATE(1104), + [sym_not_operator] = STATE(1606), + [sym_boolean_operator] = STATE(1606), + [sym_binary_operator] = STATE(1552), + [sym_unary_operator] = STATE(1552), + [sym_comparison_operator] = STATE(1606), + [sym_lambda] = STATE(1606), + [sym_attribute] = STATE(1552), + [sym_subscript] = STATE(1552), + [sym_call] = STATE(1552), + [sym_list] = STATE(1552), + [sym_set] = STATE(1552), + [sym_tuple] = STATE(1552), + [sym_dictionary] = STATE(1552), + [sym_list_comprehension] = STATE(1552), + [sym_dictionary_comprehension] = STATE(1552), + [sym_set_comprehension] = STATE(1552), + [sym_generator_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_conditional_expression] = STATE(1606), + [sym_concatenated_string] = STATE(1552), + [sym_string] = STATE(1157), + [sym_await] = STATE(1552), + [sym_identifier] = ACTIONS(716), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(268), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_print] = ACTIONS(722), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(722), + [anon_sym_async] = ACTIONS(722), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(722), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_EQ] = ACTIONS(270), + [anon_sym_not] = ACTIONS(726), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(730), + [sym_ellipsis] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(734), + [sym_integer] = ACTIONS(736), + [sym_float] = ACTIONS(732), + [anon_sym_await] = ACTIONS(738), + [sym_true] = ACTIONS(736), + [sym_false] = ACTIONS(736), + [sym_none] = ACTIONS(736), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(625), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(740), }, [163] = { - [sym_named_expression] = STATE(1544), - [sym__named_expression_lhs] = STATE(2123), - [sym_as_pattern] = STATE(1544), - [sym_expression] = STATE(1499), - [sym_primary_expression] = STATE(863), - [sym_not_operator] = STATE(1544), - [sym_boolean_operator] = STATE(1544), - [sym_binary_operator] = STATE(1212), - [sym_unary_operator] = STATE(1212), - [sym_comparison_operator] = STATE(1544), - [sym_lambda] = STATE(1544), - [sym_attribute] = STATE(1212), - [sym_subscript] = STATE(1212), - [sym_call] = STATE(1212), - [sym_list] = STATE(1212), - [sym_set] = STATE(1212), - [sym_tuple] = STATE(1212), - [sym_dictionary] = STATE(1212), - [sym_list_comprehension] = STATE(1212), - [sym_dictionary_comprehension] = STATE(1212), - [sym_set_comprehension] = STATE(1212), - [sym_generator_expression] = STATE(1212), - [sym_parenthesized_expression] = STATE(1212), - [sym_conditional_expression] = STATE(1544), - [sym_concatenated_string] = STATE(1212), - [sym_string] = STATE(866), - [sym_await] = STATE(1544), - [sym_identifier] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(631), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(631), - [anon_sym_async] = ACTIONS(631), - [anon_sym_for] = ACTIONS(268), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(633), - [anon_sym_EQ] = ACTIONS(635), - [anon_sym_not] = ACTIONS(637), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(641), - [sym_ellipsis] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(645), - [sym_integer] = ACTIONS(647), - [sym_float] = ACTIONS(643), - [anon_sym_await] = ACTIONS(649), - [sym_true] = ACTIONS(647), - [sym_false] = ACTIONS(647), - [sym_none] = ACTIONS(647), + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2366), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1490), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(268), + [anon_sym_else] = ACTIONS(270), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(270), + [anon_sym_not] = ACTIONS(686), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(688), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(651), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), }, [164] = { - [sym_named_expression] = STATE(1535), - [sym__named_expression_lhs] = STATE(2190), - [sym_as_pattern] = STATE(1535), - [sym_expression] = STATE(1522), - [sym_primary_expression] = STATE(874), - [sym_not_operator] = STATE(1535), - [sym_boolean_operator] = STATE(1535), - [sym_binary_operator] = STATE(1273), - [sym_unary_operator] = STATE(1273), - [sym_comparison_operator] = STATE(1535), - [sym_lambda] = STATE(1535), - [sym_attribute] = STATE(1273), - [sym_subscript] = STATE(1273), - [sym_call] = STATE(1273), - [sym_list] = STATE(1273), - [sym_set] = STATE(1273), - [sym_tuple] = STATE(1273), - [sym_dictionary] = STATE(1273), - [sym_list_comprehension] = STATE(1273), - [sym_dictionary_comprehension] = STATE(1273), - [sym_set_comprehension] = STATE(1273), - [sym_generator_expression] = STATE(1273), - [sym_parenthesized_expression] = STATE(1273), - [sym_conditional_expression] = STATE(1535), - [sym_concatenated_string] = STATE(1273), - [sym_string] = STATE(875), - [sym_await] = STATE(1535), - [sym_identifier] = ACTIONS(285), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(289), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(268), - [anon_sym_else] = ACTIONS(268), - [anon_sym_match] = ACTIONS(289), - [anon_sym_async] = ACTIONS(289), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(289), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(291), - [anon_sym_EQ] = ACTIONS(268), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(297), - [anon_sym_DASH] = ACTIONS(297), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(299), - [sym_ellipsis] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [sym_integer] = ACTIONS(305), - [sym_float] = ACTIONS(301), - [anon_sym_await] = ACTIONS(307), - [sym_true] = ACTIONS(305), - [sym_false] = ACTIONS(305), - [sym_none] = ACTIONS(305), + [sym_named_expression] = STATE(1454), + [sym__named_expression_lhs] = STATE(2415), + [sym_list_splat_pattern] = STATE(1407), + [sym_as_pattern] = STATE(1454), + [sym_expression] = STATE(1372), + [sym_primary_expression] = STATE(1098), + [sym_not_operator] = STATE(1454), + [sym_boolean_operator] = STATE(1454), + [sym_binary_operator] = STATE(1385), + [sym_unary_operator] = STATE(1385), + [sym_comparison_operator] = STATE(1454), + [sym_lambda] = STATE(1454), + [sym_attribute] = STATE(1385), + [sym_subscript] = STATE(1385), + [sym_call] = STATE(1385), + [sym_list] = STATE(1385), + [sym_set] = STATE(1385), + [sym_tuple] = STATE(1385), + [sym_dictionary] = STATE(1385), + [sym_list_comprehension] = STATE(1385), + [sym_dictionary_comprehension] = STATE(1385), + [sym_set_comprehension] = STATE(1385), + [sym_generator_expression] = STATE(1385), + [sym_parenthesized_expression] = STATE(1385), + [sym_conditional_expression] = STATE(1454), + [sym_concatenated_string] = STATE(1385), + [sym_string] = STATE(1095), + [sym_await] = STATE(1385), + [sym_identifier] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(268), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_print] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(664), + [anon_sym_for] = ACTIONS(270), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(674), + [sym_ellipsis] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(678), + [sym_integer] = ACTIONS(680), + [sym_float] = ACTIONS(676), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(680), + [sym_false] = ACTIONS(680), + [sym_none] = ACTIONS(680), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(309), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(684), }, [165] = { - [sym_named_expression] = STATE(1485), - [sym__named_expression_lhs] = STATE(2053), - [sym_as_pattern] = STATE(1485), - [sym_expression] = STATE(1490), - [sym_primary_expression] = STATE(839), - [sym_not_operator] = STATE(1485), - [sym_boolean_operator] = STATE(1485), - [sym_binary_operator] = STATE(1047), - [sym_unary_operator] = STATE(1047), - [sym_comparison_operator] = STATE(1485), - [sym_lambda] = STATE(1485), - [sym_attribute] = STATE(1047), - [sym_subscript] = STATE(1047), - [sym_call] = STATE(1047), - [sym_list] = STATE(1047), - [sym_set] = STATE(1047), - [sym_tuple] = STATE(1047), - [sym_dictionary] = STATE(1047), - [sym_list_comprehension] = STATE(1047), - [sym_dictionary_comprehension] = STATE(1047), - [sym_set_comprehension] = STATE(1047), - [sym_generator_expression] = STATE(1047), - [sym_parenthesized_expression] = STATE(1047), - [sym_conditional_expression] = STATE(1485), - [sym_concatenated_string] = STATE(1047), - [sym_string] = STATE(841), - [sym_await] = STATE(1485), - [sym_identifier] = ACTIONS(653), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(268), - [anon_sym_match] = ACTIONS(657), - [anon_sym_async] = ACTIONS(657), - [anon_sym_for] = ACTIONS(268), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(659), - [anon_sym_not] = ACTIONS(661), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(665), - [sym_ellipsis] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_RBRACE] = ACTIONS(266), - [sym_integer] = ACTIONS(671), - [sym_float] = ACTIONS(667), - [anon_sym_await] = ACTIONS(673), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [sym_none] = ACTIONS(671), + [sym_named_expression] = STATE(1581), + [sym__named_expression_lhs] = STATE(2405), + [sym_list_splat_pattern] = STATE(1598), + [sym_as_pattern] = STATE(1581), + [sym_expression] = STATE(1594), + [sym_primary_expression] = STATE(1107), + [sym_not_operator] = STATE(1581), + [sym_boolean_operator] = STATE(1581), + [sym_binary_operator] = STATE(1580), + [sym_unary_operator] = STATE(1580), + [sym_comparison_operator] = STATE(1581), + [sym_lambda] = STATE(1581), + [sym_attribute] = STATE(1580), + [sym_subscript] = STATE(1580), + [sym_call] = STATE(1580), + [sym_list] = STATE(1580), + [sym_set] = STATE(1580), + [sym_tuple] = STATE(1580), + [sym_dictionary] = STATE(1580), + [sym_list_comprehension] = STATE(1580), + [sym_dictionary_comprehension] = STATE(1580), + [sym_set_comprehension] = STATE(1580), + [sym_generator_expression] = STATE(1580), + [sym_parenthesized_expression] = STATE(1580), + [sym_conditional_expression] = STATE(1581), + [sym_concatenated_string] = STATE(1580), + [sym_string] = STATE(1132), + [sym_await] = STATE(1580), + [sym_identifier] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_print] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_match] = ACTIONS(748), + [anon_sym_async] = ACTIONS(748), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_RBRACK] = ACTIONS(268), + [anon_sym_not] = ACTIONS(752), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(756), + [sym_ellipsis] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(758), + [anon_sym_await] = ACTIONS(764), + [sym_true] = ACTIONS(762), + [sym_false] = ACTIONS(762), + [sym_none] = ACTIONS(762), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(675), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(766), }, [166] = { - [sym_named_expression] = STATE(1544), - [sym__named_expression_lhs] = STATE(2123), - [sym_as_pattern] = STATE(1544), - [sym_expression] = STATE(1499), - [sym_primary_expression] = STATE(863), - [sym_not_operator] = STATE(1544), - [sym_boolean_operator] = STATE(1544), - [sym_binary_operator] = STATE(1212), - [sym_unary_operator] = STATE(1212), - [sym_comparison_operator] = STATE(1544), - [sym_lambda] = STATE(1544), - [sym_attribute] = STATE(1212), - [sym_subscript] = STATE(1212), - [sym_call] = STATE(1212), - [sym_list] = STATE(1212), - [sym_set] = STATE(1212), - [sym_tuple] = STATE(1212), - [sym_dictionary] = STATE(1212), - [sym_list_comprehension] = STATE(1212), - [sym_dictionary_comprehension] = STATE(1212), - [sym_set_comprehension] = STATE(1212), - [sym_generator_expression] = STATE(1212), - [sym_parenthesized_expression] = STATE(1212), - [sym_conditional_expression] = STATE(1544), - [sym_concatenated_string] = STATE(1212), - [sym_string] = STATE(866), - [sym_await] = STATE(1544), - [sym_identifier] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(631), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(631), - [anon_sym_async] = ACTIONS(631), - [anon_sym_for] = ACTIONS(268), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(633), - [anon_sym_not] = ACTIONS(637), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(641), - [sym_ellipsis] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(645), - [sym_integer] = ACTIONS(647), - [sym_float] = ACTIONS(643), - [anon_sym_await] = ACTIONS(649), - [sym_true] = ACTIONS(647), - [sym_false] = ACTIONS(647), - [sym_none] = ACTIONS(647), + [sym_named_expression] = STATE(1606), + [sym__named_expression_lhs] = STATE(2400), + [sym_list_splat_pattern] = STATE(1516), + [sym_as_pattern] = STATE(1606), + [sym_expression] = STATE(1602), + [sym_primary_expression] = STATE(1104), + [sym_not_operator] = STATE(1606), + [sym_boolean_operator] = STATE(1606), + [sym_binary_operator] = STATE(1552), + [sym_unary_operator] = STATE(1552), + [sym_comparison_operator] = STATE(1606), + [sym_lambda] = STATE(1606), + [sym_attribute] = STATE(1552), + [sym_subscript] = STATE(1552), + [sym_call] = STATE(1552), + [sym_list] = STATE(1552), + [sym_set] = STATE(1552), + [sym_tuple] = STATE(1552), + [sym_dictionary] = STATE(1552), + [sym_list_comprehension] = STATE(1552), + [sym_dictionary_comprehension] = STATE(1552), + [sym_set_comprehension] = STATE(1552), + [sym_generator_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_conditional_expression] = STATE(1606), + [sym_concatenated_string] = STATE(1552), + [sym_string] = STATE(1157), + [sym_await] = STATE(1552), + [sym_identifier] = ACTIONS(716), + [anon_sym_DOT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_as] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_print] = ACTIONS(722), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(344), + [anon_sym_match] = ACTIONS(722), + [anon_sym_async] = ACTIONS(722), + [anon_sym_for] = ACTIONS(347), + [anon_sym_in] = ACTIONS(344), + [anon_sym_STAR_STAR] = ACTIONS(603), + [anon_sym_exec] = ACTIONS(722), + [anon_sym_AT] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_not] = ACTIONS(726), + [anon_sym_and] = ACTIONS(344), + [anon_sym_or] = ACTIONS(344), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(344), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LT_GT] = ACTIONS(603), + [anon_sym_is] = ACTIONS(344), + [anon_sym_lambda] = ACTIONS(730), + [sym_ellipsis] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(734), + [sym_integer] = ACTIONS(736), + [sym_float] = ACTIONS(732), + [anon_sym_await] = ACTIONS(738), + [sym_true] = ACTIONS(736), + [sym_false] = ACTIONS(736), + [sym_none] = ACTIONS(736), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(651), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(740), }, [167] = { - [sym_named_expression] = STATE(1598), - [sym__named_expression_lhs] = STATE(2073), - [sym_as_pattern] = STATE(1598), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(992), - [sym_not_operator] = STATE(1598), - [sym_boolean_operator] = STATE(1598), - [sym_binary_operator] = STATE(1301), - [sym_unary_operator] = STATE(1301), - [sym_comparison_operator] = STATE(1598), - [sym_lambda] = STATE(1598), - [sym_attribute] = STATE(1301), - [sym_subscript] = STATE(1301), - [sym_call] = STATE(1301), - [sym_list] = STATE(1301), - [sym_set] = STATE(1301), - [sym_tuple] = STATE(1301), - [sym_dictionary] = STATE(1301), - [sym_list_comprehension] = STATE(1301), - [sym_dictionary_comprehension] = STATE(1301), - [sym_set_comprehension] = STATE(1301), - [sym_generator_expression] = STATE(1301), - [sym_parenthesized_expression] = STATE(1301), - [sym_conditional_expression] = STATE(1598), - [sym_concatenated_string] = STATE(1301), - [sym_string] = STATE(989), - [sym_await] = STATE(1598), - [sym_identifier] = ACTIONS(677), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(268), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(266), - [anon_sym_not] = ACTIONS(685), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(689), - [sym_ellipsis] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [sym_integer] = ACTIONS(695), - [sym_float] = ACTIONS(691), - [anon_sym_await] = ACTIONS(697), - [sym_true] = ACTIONS(695), - [sym_false] = ACTIONS(695), - [sym_none] = ACTIONS(695), + [sym_named_expression] = STATE(1506), + [sym__named_expression_lhs] = STATE(2385), + [sym_list_splat_pattern] = STATE(1397), + [sym_as_pattern] = STATE(1506), + [sym_expression] = STATE(1362), + [sym_primary_expression] = STATE(1059), + [sym_not_operator] = STATE(1506), + [sym_boolean_operator] = STATE(1506), + [sym_binary_operator] = STATE(1507), + [sym_unary_operator] = STATE(1507), + [sym_comparison_operator] = STATE(1506), + [sym_lambda] = STATE(1506), + [sym_attribute] = STATE(1507), + [sym_subscript] = STATE(1507), + [sym_call] = STATE(1507), + [sym_list] = STATE(1507), + [sym_set] = STATE(1507), + [sym_tuple] = STATE(1507), + [sym_dictionary] = STATE(1507), + [sym_list_comprehension] = STATE(1507), + [sym_dictionary_comprehension] = STATE(1507), + [sym_set_comprehension] = STATE(1507), + [sym_generator_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_conditional_expression] = STATE(1506), + [sym_concatenated_string] = STATE(1507), + [sym_string] = STATE(1058), + [sym_await] = STATE(1507), + [sym_identifier] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_print] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(696), + [anon_sym_async] = ACTIONS(696), + [anon_sym_for] = ACTIONS(270), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(268), + [anon_sym_not] = ACTIONS(700), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(704), + [sym_ellipsis] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(708), + [sym_integer] = ACTIONS(710), + [sym_float] = ACTIONS(706), + [anon_sym_await] = ACTIONS(712), + [sym_true] = ACTIONS(710), + [sym_false] = ACTIONS(710), + [sym_none] = ACTIONS(710), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(699), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(714), }, [168] = { - [sym_named_expression] = STATE(1567), - [sym__named_expression_lhs] = STATE(2035), - [sym_as_pattern] = STATE(1567), - [sym_expression] = STATE(1571), - [sym_primary_expression] = STATE(912), - [sym_not_operator] = STATE(1567), - [sym_boolean_operator] = STATE(1567), - [sym_binary_operator] = STATE(1290), - [sym_unary_operator] = STATE(1290), - [sym_comparison_operator] = STATE(1567), - [sym_lambda] = STATE(1567), - [sym_attribute] = STATE(1290), - [sym_subscript] = STATE(1290), - [sym_call] = STATE(1290), - [sym_list] = STATE(1290), - [sym_set] = STATE(1290), - [sym_tuple] = STATE(1290), - [sym_dictionary] = STATE(1290), - [sym_list_comprehension] = STATE(1290), - [sym_dictionary_comprehension] = STATE(1290), - [sym_set_comprehension] = STATE(1290), - [sym_generator_expression] = STATE(1290), - [sym_parenthesized_expression] = STATE(1290), - [sym_conditional_expression] = STATE(1567), - [sym_concatenated_string] = STATE(1290), - [sym_string] = STATE(914), - [sym_await] = STATE(1567), - [sym_identifier] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(705), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(705), - [anon_sym_async] = ACTIONS(705), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(635), - [anon_sym_not] = ACTIONS(709), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(713), - [sym_ellipsis] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(717), - [sym_integer] = ACTIONS(719), - [sym_float] = ACTIONS(715), - [anon_sym_await] = ACTIONS(721), - [sym_true] = ACTIONS(719), - [sym_false] = ACTIONS(719), - [sym_none] = ACTIONS(719), + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(342), + [anon_sym_as] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_if] = ACTIONS(347), + [anon_sym_COLON] = ACTIONS(342), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_for] = ACTIONS(347), + [anon_sym_in] = ACTIONS(347), + [anon_sym_STAR_STAR] = ACTIONS(603), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_RBRACK] = ACTIONS(342), + [anon_sym_not] = ACTIONS(324), + [anon_sym_and] = ACTIONS(347), + [anon_sym_or] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(344), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(342), + [anon_sym_BANG_EQ] = ACTIONS(342), + [anon_sym_GT_EQ] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT_GT] = ACTIONS(342), + [anon_sym_is] = ACTIONS(347), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(723), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), }, [169] = { - [sym_named_expression] = STATE(1520), - [sym__named_expression_lhs] = STATE(2099), - [sym_as_pattern] = STATE(1520), - [sym_expression] = STATE(1558), - [sym_primary_expression] = STATE(883), - [sym_not_operator] = STATE(1520), - [sym_boolean_operator] = STATE(1520), - [sym_binary_operator] = STATE(1181), - [sym_unary_operator] = STATE(1181), - [sym_comparison_operator] = STATE(1520), - [sym_lambda] = STATE(1520), - [sym_attribute] = STATE(1181), - [sym_subscript] = STATE(1181), - [sym_call] = STATE(1181), - [sym_list] = STATE(1181), - [sym_set] = STATE(1181), - [sym_tuple] = STATE(1181), - [sym_dictionary] = STATE(1181), - [sym_list_comprehension] = STATE(1181), - [sym_dictionary_comprehension] = STATE(1181), - [sym_set_comprehension] = STATE(1181), - [sym_generator_expression] = STATE(1181), - [sym_parenthesized_expression] = STATE(1181), - [sym_conditional_expression] = STATE(1520), - [sym_concatenated_string] = STATE(1181), - [sym_string] = STATE(884), - [sym_await] = STATE(1520), - [sym_identifier] = ACTIONS(725), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(729), - [anon_sym_async] = ACTIONS(729), - [anon_sym_for] = ACTIONS(268), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(266), - [anon_sym_not] = ACTIONS(733), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(737), - [sym_ellipsis] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(741), - [sym_integer] = ACTIONS(743), - [sym_float] = ACTIONS(739), - [anon_sym_await] = ACTIONS(745), - [sym_true] = ACTIONS(743), - [sym_false] = ACTIONS(743), - [sym_none] = ACTIONS(743), + [sym_named_expression] = STATE(1606), + [sym__named_expression_lhs] = STATE(2400), + [sym_list_splat_pattern] = STATE(1516), + [sym_as_pattern] = STATE(1606), + [sym_expression] = STATE(1602), + [sym_primary_expression] = STATE(1104), + [sym_not_operator] = STATE(1606), + [sym_boolean_operator] = STATE(1606), + [sym_binary_operator] = STATE(1552), + [sym_unary_operator] = STATE(1552), + [sym_comparison_operator] = STATE(1606), + [sym_lambda] = STATE(1606), + [sym_attribute] = STATE(1552), + [sym_subscript] = STATE(1552), + [sym_call] = STATE(1552), + [sym_list] = STATE(1552), + [sym_set] = STATE(1552), + [sym_tuple] = STATE(1552), + [sym_dictionary] = STATE(1552), + [sym_list_comprehension] = STATE(1552), + [sym_dictionary_comprehension] = STATE(1552), + [sym_set_comprehension] = STATE(1552), + [sym_generator_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_conditional_expression] = STATE(1606), + [sym_concatenated_string] = STATE(1552), + [sym_string] = STATE(1157), + [sym_await] = STATE(1552), + [sym_identifier] = ACTIONS(716), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(268), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_print] = ACTIONS(722), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(722), + [anon_sym_async] = ACTIONS(722), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(722), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_EQ] = ACTIONS(668), + [anon_sym_not] = ACTIONS(726), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(730), + [sym_ellipsis] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(734), + [sym_integer] = ACTIONS(736), + [sym_float] = ACTIONS(732), + [anon_sym_await] = ACTIONS(738), + [sym_true] = ACTIONS(736), + [sym_false] = ACTIONS(736), + [sym_none] = ACTIONS(736), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(747), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(740), }, [170] = { - [sym_named_expression] = STATE(1567), - [sym__named_expression_lhs] = STATE(2035), - [sym_as_pattern] = STATE(1567), - [sym_expression] = STATE(1571), - [sym_primary_expression] = STATE(912), - [sym_not_operator] = STATE(1567), - [sym_boolean_operator] = STATE(1567), - [sym_binary_operator] = STATE(1290), - [sym_unary_operator] = STATE(1290), - [sym_comparison_operator] = STATE(1567), - [sym_lambda] = STATE(1567), - [sym_attribute] = STATE(1290), - [sym_subscript] = STATE(1290), - [sym_call] = STATE(1290), - [sym_list] = STATE(1290), - [sym_set] = STATE(1290), - [sym_tuple] = STATE(1290), - [sym_dictionary] = STATE(1290), - [sym_list_comprehension] = STATE(1290), - [sym_dictionary_comprehension] = STATE(1290), - [sym_set_comprehension] = STATE(1290), - [sym_generator_expression] = STATE(1290), - [sym_parenthesized_expression] = STATE(1290), - [sym_conditional_expression] = STATE(1567), - [sym_concatenated_string] = STATE(1290), - [sym_string] = STATE(914), - [sym_await] = STATE(1567), - [sym_identifier] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(705), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(705), - [anon_sym_async] = ACTIONS(705), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(268), - [anon_sym_not] = ACTIONS(709), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(713), - [sym_ellipsis] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(717), - [sym_integer] = ACTIONS(719), - [sym_float] = ACTIONS(715), - [anon_sym_await] = ACTIONS(721), - [sym_true] = ACTIONS(719), - [sym_false] = ACTIONS(719), - [sym_none] = ACTIONS(719), + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(342), + [anon_sym_as] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_if] = ACTIONS(347), + [anon_sym_COLON] = ACTIONS(342), + [anon_sym_else] = ACTIONS(347), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_in] = ACTIONS(347), + [anon_sym_STAR_STAR] = ACTIONS(603), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_not] = ACTIONS(324), + [anon_sym_and] = ACTIONS(347), + [anon_sym_or] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(344), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_LT_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(342), + [anon_sym_BANG_EQ] = ACTIONS(342), + [anon_sym_GT_EQ] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT_GT] = ACTIONS(342), + [anon_sym_is] = ACTIONS(347), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(723), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), }, [171] = { - [sym_named_expression] = STATE(1544), - [sym__named_expression_lhs] = STATE(2123), - [sym_as_pattern] = STATE(1544), - [sym_expression] = STATE(1499), - [sym_primary_expression] = STATE(863), - [sym_not_operator] = STATE(1544), - [sym_boolean_operator] = STATE(1544), - [sym_binary_operator] = STATE(1212), - [sym_unary_operator] = STATE(1212), - [sym_comparison_operator] = STATE(1544), - [sym_lambda] = STATE(1544), - [sym_attribute] = STATE(1212), - [sym_subscript] = STATE(1212), - [sym_call] = STATE(1212), - [sym_list] = STATE(1212), - [sym_set] = STATE(1212), - [sym_tuple] = STATE(1212), - [sym_dictionary] = STATE(1212), - [sym_list_comprehension] = STATE(1212), - [sym_dictionary_comprehension] = STATE(1212), - [sym_set_comprehension] = STATE(1212), - [sym_generator_expression] = STATE(1212), - [sym_parenthesized_expression] = STATE(1212), - [sym_conditional_expression] = STATE(1544), - [sym_concatenated_string] = STATE(1212), - [sym_string] = STATE(866), - [sym_await] = STATE(1544), - [sym_identifier] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(270), - [anon_sym_COMMA] = ACTIONS(270), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(631), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(631), - [anon_sym_async] = ACTIONS(631), - [anon_sym_for] = ACTIONS(268), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(633), - [anon_sym_not] = ACTIONS(637), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(641), - [sym_ellipsis] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(645), - [sym_integer] = ACTIONS(647), - [sym_float] = ACTIONS(643), - [anon_sym_await] = ACTIONS(649), - [sym_true] = ACTIONS(647), - [sym_false] = ACTIONS(647), - [sym_none] = ACTIONS(647), + [sym_named_expression] = STATE(1581), + [sym__named_expression_lhs] = STATE(2405), + [sym_list_splat_pattern] = STATE(1598), + [sym_as_pattern] = STATE(1581), + [sym_expression] = STATE(1594), + [sym_primary_expression] = STATE(1107), + [sym_not_operator] = STATE(1581), + [sym_boolean_operator] = STATE(1581), + [sym_binary_operator] = STATE(1580), + [sym_unary_operator] = STATE(1580), + [sym_comparison_operator] = STATE(1581), + [sym_lambda] = STATE(1581), + [sym_attribute] = STATE(1580), + [sym_subscript] = STATE(1580), + [sym_call] = STATE(1580), + [sym_list] = STATE(1580), + [sym_set] = STATE(1580), + [sym_tuple] = STATE(1580), + [sym_dictionary] = STATE(1580), + [sym_list_comprehension] = STATE(1580), + [sym_dictionary_comprehension] = STATE(1580), + [sym_set_comprehension] = STATE(1580), + [sym_generator_expression] = STATE(1580), + [sym_parenthesized_expression] = STATE(1580), + [sym_conditional_expression] = STATE(1581), + [sym_concatenated_string] = STATE(1580), + [sym_string] = STATE(1132), + [sym_await] = STATE(1580), + [sym_identifier] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_as] = ACTIONS(344), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_print] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(285), + [anon_sym_if] = ACTIONS(344), + [anon_sym_match] = ACTIONS(748), + [anon_sym_async] = ACTIONS(748), + [anon_sym_for] = ACTIONS(347), + [anon_sym_in] = ACTIONS(344), + [anon_sym_STAR_STAR] = ACTIONS(603), + [anon_sym_exec] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_not] = ACTIONS(752), + [anon_sym_and] = ACTIONS(344), + [anon_sym_or] = ACTIONS(344), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(344), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_SLASH_SLASH] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(344), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(344), + [anon_sym_LT_GT] = ACTIONS(603), + [anon_sym_is] = ACTIONS(344), + [anon_sym_lambda] = ACTIONS(756), + [sym_ellipsis] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(758), + [anon_sym_await] = ACTIONS(764), + [sym_true] = ACTIONS(762), + [sym_false] = ACTIONS(762), + [sym_none] = ACTIONS(762), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(651), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(766), }, [172] = { - [sym_named_expression] = STATE(1520), - [sym__named_expression_lhs] = STATE(2099), - [sym_as_pattern] = STATE(1520), - [sym_expression] = STATE(1558), - [sym_primary_expression] = STATE(883), - [sym_not_operator] = STATE(1520), - [sym_boolean_operator] = STATE(1520), - [sym_binary_operator] = STATE(1181), - [sym_unary_operator] = STATE(1181), - [sym_comparison_operator] = STATE(1520), - [sym_lambda] = STATE(1520), - [sym_attribute] = STATE(1181), - [sym_subscript] = STATE(1181), - [sym_call] = STATE(1181), - [sym_list] = STATE(1181), - [sym_set] = STATE(1181), - [sym_tuple] = STATE(1181), - [sym_dictionary] = STATE(1181), - [sym_list_comprehension] = STATE(1181), - [sym_dictionary_comprehension] = STATE(1181), - [sym_set_comprehension] = STATE(1181), - [sym_generator_expression] = STATE(1181), - [sym_parenthesized_expression] = STATE(1181), - [sym_conditional_expression] = STATE(1520), - [sym_concatenated_string] = STATE(1181), - [sym_string] = STATE(884), - [sym_await] = STATE(1520), - [sym_identifier] = ACTIONS(725), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_COMMA] = ACTIONS(270), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(729), - [anon_sym_async] = ACTIONS(729), - [anon_sym_for] = ACTIONS(268), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(270), - [anon_sym_not] = ACTIONS(733), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(737), - [sym_ellipsis] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(741), - [sym_integer] = ACTIONS(743), - [sym_float] = ACTIONS(739), - [anon_sym_await] = ACTIONS(745), - [sym_true] = ACTIONS(743), - [sym_false] = ACTIONS(743), - [sym_none] = ACTIONS(743), + [sym_named_expression] = STATE(1581), + [sym__named_expression_lhs] = STATE(2405), + [sym_list_splat_pattern] = STATE(1598), + [sym_as_pattern] = STATE(1581), + [sym_expression] = STATE(1594), + [sym_primary_expression] = STATE(1107), + [sym_not_operator] = STATE(1581), + [sym_boolean_operator] = STATE(1581), + [sym_binary_operator] = STATE(1580), + [sym_unary_operator] = STATE(1580), + [sym_comparison_operator] = STATE(1581), + [sym_lambda] = STATE(1581), + [sym_attribute] = STATE(1580), + [sym_subscript] = STATE(1580), + [sym_call] = STATE(1580), + [sym_list] = STATE(1580), + [sym_set] = STATE(1580), + [sym_tuple] = STATE(1580), + [sym_dictionary] = STATE(1580), + [sym_list_comprehension] = STATE(1580), + [sym_dictionary_comprehension] = STATE(1580), + [sym_set_comprehension] = STATE(1580), + [sym_generator_expression] = STATE(1580), + [sym_parenthesized_expression] = STATE(1580), + [sym_conditional_expression] = STATE(1581), + [sym_concatenated_string] = STATE(1580), + [sym_string] = STATE(1132), + [sym_await] = STATE(1580), + [sym_identifier] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_print] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(268), + [anon_sym_match] = ACTIONS(748), + [anon_sym_async] = ACTIONS(748), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_RBRACK] = ACTIONS(268), + [anon_sym_not] = ACTIONS(752), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(756), + [sym_ellipsis] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(758), + [anon_sym_await] = ACTIONS(764), + [sym_true] = ACTIONS(762), + [sym_false] = ACTIONS(762), + [sym_none] = ACTIONS(762), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(747), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(766), }, [173] = { - [sym_named_expression] = STATE(1598), - [sym__named_expression_lhs] = STATE(2073), - [sym_as_pattern] = STATE(1598), - [sym_expression] = STATE(1579), - [sym_primary_expression] = STATE(992), - [sym_not_operator] = STATE(1598), - [sym_boolean_operator] = STATE(1598), - [sym_binary_operator] = STATE(1301), - [sym_unary_operator] = STATE(1301), - [sym_comparison_operator] = STATE(1598), - [sym_lambda] = STATE(1598), - [sym_attribute] = STATE(1301), - [sym_subscript] = STATE(1301), - [sym_call] = STATE(1301), - [sym_list] = STATE(1301), - [sym_set] = STATE(1301), - [sym_tuple] = STATE(1301), - [sym_dictionary] = STATE(1301), - [sym_list_comprehension] = STATE(1301), - [sym_dictionary_comprehension] = STATE(1301), - [sym_set_comprehension] = STATE(1301), - [sym_generator_expression] = STATE(1301), - [sym_parenthesized_expression] = STATE(1301), - [sym_conditional_expression] = STATE(1598), - [sym_concatenated_string] = STATE(1301), - [sym_string] = STATE(989), - [sym_await] = STATE(1598), - [sym_identifier] = ACTIONS(677), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(749), - [anon_sym_not] = ACTIONS(685), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(689), - [sym_ellipsis] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [sym_integer] = ACTIONS(695), - [sym_float] = ACTIONS(691), - [anon_sym_await] = ACTIONS(697), - [sym_true] = ACTIONS(695), - [sym_false] = ACTIONS(695), - [sym_none] = ACTIONS(695), + [sym_named_expression] = STATE(1506), + [sym__named_expression_lhs] = STATE(2385), + [sym_list_splat_pattern] = STATE(1397), + [sym_as_pattern] = STATE(1506), + [sym_expression] = STATE(1362), + [sym_primary_expression] = STATE(1059), + [sym_not_operator] = STATE(1506), + [sym_boolean_operator] = STATE(1506), + [sym_binary_operator] = STATE(1507), + [sym_unary_operator] = STATE(1507), + [sym_comparison_operator] = STATE(1506), + [sym_lambda] = STATE(1506), + [sym_attribute] = STATE(1507), + [sym_subscript] = STATE(1507), + [sym_call] = STATE(1507), + [sym_list] = STATE(1507), + [sym_set] = STATE(1507), + [sym_tuple] = STATE(1507), + [sym_dictionary] = STATE(1507), + [sym_list_comprehension] = STATE(1507), + [sym_dictionary_comprehension] = STATE(1507), + [sym_set_comprehension] = STATE(1507), + [sym_generator_expression] = STATE(1507), + [sym_parenthesized_expression] = STATE(1507), + [sym_conditional_expression] = STATE(1506), + [sym_concatenated_string] = STATE(1507), + [sym_string] = STATE(1058), + [sym_await] = STATE(1507), + [sym_identifier] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_print] = ACTIONS(696), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(696), + [anon_sym_async] = ACTIONS(696), + [anon_sym_for] = ACTIONS(270), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(268), + [anon_sym_not] = ACTIONS(700), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(704), + [sym_ellipsis] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(708), + [sym_integer] = ACTIONS(710), + [sym_float] = ACTIONS(706), + [anon_sym_await] = ACTIONS(712), + [sym_true] = ACTIONS(710), + [sym_false] = ACTIONS(710), + [sym_none] = ACTIONS(710), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(699), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(714), }, [174] = { - [sym_named_expression] = STATE(1567), - [sym__named_expression_lhs] = STATE(2035), - [sym_as_pattern] = STATE(1567), - [sym_expression] = STATE(1571), - [sym_primary_expression] = STATE(912), - [sym_not_operator] = STATE(1567), - [sym_boolean_operator] = STATE(1567), - [sym_binary_operator] = STATE(1290), - [sym_unary_operator] = STATE(1290), - [sym_comparison_operator] = STATE(1567), - [sym_lambda] = STATE(1567), - [sym_attribute] = STATE(1290), - [sym_subscript] = STATE(1290), - [sym_call] = STATE(1290), - [sym_list] = STATE(1290), - [sym_set] = STATE(1290), - [sym_tuple] = STATE(1290), - [sym_dictionary] = STATE(1290), - [sym_list_comprehension] = STATE(1290), - [sym_dictionary_comprehension] = STATE(1290), - [sym_set_comprehension] = STATE(1290), - [sym_generator_expression] = STATE(1290), - [sym_parenthesized_expression] = STATE(1290), - [sym_conditional_expression] = STATE(1567), - [sym_concatenated_string] = STATE(1290), - [sym_string] = STATE(914), - [sym_await] = STATE(1567), - [sym_identifier] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_as] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(705), - [anon_sym_GT_GT] = ACTIONS(266), - [anon_sym_COLON_EQ] = ACTIONS(277), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(705), - [anon_sym_async] = ACTIONS(705), - [anon_sym_in] = ACTIONS(268), - [anon_sym_STAR_STAR] = ACTIONS(266), - [anon_sym_exec] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(707), - [anon_sym_not] = ACTIONS(709), - [anon_sym_and] = ACTIONS(268), - [anon_sym_or] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_SLASH] = ACTIONS(268), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_SLASH_SLASH] = ACTIONS(266), - [anon_sym_PIPE] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT_GT] = ACTIONS(266), - [anon_sym_is] = ACTIONS(268), - [anon_sym_lambda] = ACTIONS(713), - [sym_ellipsis] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(717), - [sym_integer] = ACTIONS(719), - [sym_float] = ACTIONS(715), - [anon_sym_await] = ACTIONS(721), - [sym_true] = ACTIONS(719), - [sym_false] = ACTIONS(719), - [sym_none] = ACTIONS(719), + [sym_named_expression] = STATE(1454), + [sym__named_expression_lhs] = STATE(2415), + [sym_list_splat_pattern] = STATE(1407), + [sym_as_pattern] = STATE(1454), + [sym_expression] = STATE(1372), + [sym_primary_expression] = STATE(1098), + [sym_not_operator] = STATE(1454), + [sym_boolean_operator] = STATE(1454), + [sym_binary_operator] = STATE(1385), + [sym_unary_operator] = STATE(1385), + [sym_comparison_operator] = STATE(1454), + [sym_lambda] = STATE(1454), + [sym_attribute] = STATE(1385), + [sym_subscript] = STATE(1385), + [sym_call] = STATE(1385), + [sym_list] = STATE(1385), + [sym_set] = STATE(1385), + [sym_tuple] = STATE(1385), + [sym_dictionary] = STATE(1385), + [sym_list_comprehension] = STATE(1385), + [sym_dictionary_comprehension] = STATE(1385), + [sym_set_comprehension] = STATE(1385), + [sym_generator_expression] = STATE(1385), + [sym_parenthesized_expression] = STATE(1385), + [sym_conditional_expression] = STATE(1454), + [sym_concatenated_string] = STATE(1385), + [sym_string] = STATE(1095), + [sym_await] = STATE(1385), + [sym_identifier] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(268), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_print] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(664), + [anon_sym_async] = ACTIONS(664), + [anon_sym_for] = ACTIONS(270), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(666), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(674), + [sym_ellipsis] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(678), + [sym_integer] = ACTIONS(680), + [sym_float] = ACTIONS(676), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(680), + [sym_false] = ACTIONS(680), + [sym_none] = ACTIONS(680), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(684), + }, + [175] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(344), + [anon_sym_COLON] = ACTIONS(342), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_STAR_STAR] = ACTIONS(344), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(342), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(344), + [anon_sym_PERCENT] = ACTIONS(344), + [anon_sym_SLASH_SLASH] = ACTIONS(344), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_AMP] = ACTIONS(344), + [anon_sym_CARET] = ACTIONS(344), + [anon_sym_LT_LT] = ACTIONS(344), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [anon_sym_PLUS_EQ] = ACTIONS(342), + [anon_sym_DASH_EQ] = ACTIONS(342), + [anon_sym_STAR_EQ] = ACTIONS(342), + [anon_sym_SLASH_EQ] = ACTIONS(342), + [anon_sym_AT_EQ] = ACTIONS(342), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(342), + [anon_sym_PERCENT_EQ] = ACTIONS(342), + [anon_sym_STAR_STAR_EQ] = ACTIONS(342), + [anon_sym_GT_GT_EQ] = ACTIONS(342), + [anon_sym_LT_LT_EQ] = ACTIONS(342), + [anon_sym_AMP_EQ] = ACTIONS(342), + [anon_sym_CARET_EQ] = ACTIONS(342), + [anon_sym_PIPE_EQ] = ACTIONS(342), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [176] = { + [sym_named_expression] = STATE(1606), + [sym__named_expression_lhs] = STATE(2400), + [sym_list_splat_pattern] = STATE(1516), + [sym_as_pattern] = STATE(1606), + [sym_expression] = STATE(1602), + [sym_primary_expression] = STATE(1104), + [sym_not_operator] = STATE(1606), + [sym_boolean_operator] = STATE(1606), + [sym_binary_operator] = STATE(1552), + [sym_unary_operator] = STATE(1552), + [sym_comparison_operator] = STATE(1606), + [sym_lambda] = STATE(1606), + [sym_attribute] = STATE(1552), + [sym_subscript] = STATE(1552), + [sym_call] = STATE(1552), + [sym_list] = STATE(1552), + [sym_set] = STATE(1552), + [sym_tuple] = STATE(1552), + [sym_dictionary] = STATE(1552), + [sym_list_comprehension] = STATE(1552), + [sym_dictionary_comprehension] = STATE(1552), + [sym_set_comprehension] = STATE(1552), + [sym_generator_expression] = STATE(1552), + [sym_parenthesized_expression] = STATE(1552), + [sym_conditional_expression] = STATE(1606), + [sym_concatenated_string] = STATE(1552), + [sym_string] = STATE(1157), + [sym_await] = STATE(1552), + [sym_identifier] = ACTIONS(716), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(268), + [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_as] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_print] = ACTIONS(722), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(722), + [anon_sym_async] = ACTIONS(722), + [anon_sym_in] = ACTIONS(270), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(722), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_EQ] = ACTIONS(270), + [anon_sym_not] = ACTIONS(726), + [anon_sym_and] = ACTIONS(270), + [anon_sym_or] = ACTIONS(270), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT_GT] = ACTIONS(268), + [anon_sym_is] = ACTIONS(270), + [anon_sym_lambda] = ACTIONS(730), + [sym_ellipsis] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(734), + [sym_integer] = ACTIONS(736), + [sym_float] = ACTIONS(732), + [anon_sym_await] = ACTIONS(738), + [sym_true] = ACTIONS(736), + [sym_false] = ACTIONS(736), + [sym_none] = ACTIONS(736), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(740), + }, + [177] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_STAR_STAR] = ACTIONS(270), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(270), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(298), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(270), + [anon_sym_SLASH_SLASH] = ACTIONS(270), + [anon_sym_PIPE] = ACTIONS(270), + [anon_sym_AMP] = ACTIONS(270), + [anon_sym_CARET] = ACTIONS(270), + [anon_sym_LT_LT] = ACTIONS(270), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [anon_sym_PLUS_EQ] = ACTIONS(298), + [anon_sym_DASH_EQ] = ACTIONS(298), + [anon_sym_STAR_EQ] = ACTIONS(298), + [anon_sym_SLASH_EQ] = ACTIONS(298), + [anon_sym_AT_EQ] = ACTIONS(298), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), + [anon_sym_PERCENT_EQ] = ACTIONS(298), + [anon_sym_STAR_STAR_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(298), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [178] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(298), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(298), + [sym_type_conversion] = ACTIONS(298), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [179] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(342), + [anon_sym_COMMA] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(342), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [180] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(768), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [181] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(342), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(723), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [182] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_in] = ACTIONS(287), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [183] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_COLON] = ACTIONS(768), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [184] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), + }, + [185] = { + [sym_named_expression] = STATE(1456), + [sym__named_expression_lhs] = STATE(2379), + [sym_list_splat_pattern] = STATE(1366), + [sym_as_pattern] = STATE(1456), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1079), + [sym_not_operator] = STATE(1456), + [sym_boolean_operator] = STATE(1456), + [sym_binary_operator] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_comparison_operator] = STATE(1456), + [sym_lambda] = STATE(1456), + [sym_attribute] = STATE(1455), + [sym_subscript] = STATE(1455), + [sym_call] = STATE(1455), + [sym_list] = STATE(1455), + [sym_set] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_dictionary] = STATE(1455), + [sym_list_comprehension] = STATE(1455), + [sym_dictionary_comprehension] = STATE(1455), + [sym_set_comprehension] = STATE(1455), + [sym_generator_expression] = STATE(1455), + [sym_parenthesized_expression] = STATE(1455), + [sym_conditional_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1455), + [sym_string] = STATE(1071), + [sym_await] = STATE(1455), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_print] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(268), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(320), + [anon_sym_STAR_STAR] = ACTIONS(268), + [anon_sym_exec] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(322), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_not] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(268), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_CARET] = ACTIONS(268), + [anon_sym_LT_LT] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_lambda] = ACTIONS(330), + [sym_ellipsis] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(334), + [sym_integer] = ACTIONS(336), + [sym_float] = ACTIONS(332), + [anon_sym_await] = ACTIONS(338), + [sym_true] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [sym_none] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(340), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(752), 1, + [0] = 23, + ACTIONS(314), 1, sym_identifier, - ACTIONS(754), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(318), 1, anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(762), 1, - anon_sym_RBRACK, - ACTIONS(764), 1, - anon_sym_yield, - ACTIONS(766), 1, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, anon_sym_await, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(340), 1, + sym_string_start, + STATE(1071), 1, sym_string, - STATE(1436), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1638), 1, sym_expression, - STATE(1965), 1, - sym_pattern, - STATE(2099), 1, + STATE(2379), 1, sym__named_expression_lhs, - STATE(2181), 1, - sym__collection_elements, - STATE(2191), 1, - sym__patterns, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(270), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1179), 2, - sym_attribute, - sym_subscript, - ACTIONS(735), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - STATE(2012), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(743), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(758), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1520), 8, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28655,10 +30188,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 13, + ACTIONS(268), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -28670,75 +30214,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [118] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(768), 1, + sym_await, + [110] = 27, + ACTIONS(9), 1, sym_identifier, - ACTIONS(770), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(774), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(778), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(69), 1, anon_sym_yield, - ACTIONS(782), 1, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, anon_sym_await, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(79), 1, + sym_string_start, + STATE(661), 1, + sym_list_splat_pattern, + STATE(1034), 1, sym_string, - STATE(1415), 1, - sym_expression, - STATE(1872), 1, - sym_yield, - STATE(1959), 1, + STATE(1161), 1, + sym_primary_expression, + STATE(1707), 1, sym_pattern, - STATE(2078), 1, - sym__collection_elements, - STATE(2100), 1, - sym__patterns, - STATE(2123), 1, + STATE(1714), 1, + sym_pattern_list, + STATE(1824), 1, + sym_expression, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1223), 2, + STATE(666), 2, sym_attribute, sym_subscript, - STATE(1847), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(639), 3, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(647), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(776), 4, + ACTIONS(349), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(2332), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28746,8 +30290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 13, + STATE(1344), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -28761,74 +30304,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [238] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(752), 1, + sym_await, + [227] = 29, + ACTIONS(632), 1, sym_identifier, - ACTIONS(754), 1, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(770), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(772), 1, + anon_sym_COMMA, + ACTIONS(774), 1, anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_LBRACK, - ACTIONS(764), 1, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_yield, - ACTIONS(766), 1, - anon_sym_await, ACTIONS(784), 1, - anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + anon_sym_RBRACE, + STATE(1037), 1, sym_string, - STATE(1436), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1729), 1, sym_expression, - STATE(1965), 1, - sym_pattern, - STATE(2099), 1, + STATE(1880), 1, + sym_pair, + STATE(2102), 1, + sym_dictionary_splat, + STATE(2420), 1, sym__named_expression_lhs, - STATE(2181), 1, + STATE(2476), 1, sym__collection_elements, - STATE(2183), 1, - sym__patterns, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - STATE(1179), 2, - sym_attribute, - sym_subscript, - ACTIONS(735), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2157), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - STATE(2012), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(743), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(758), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1520), 8, + ACTIONS(652), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28836,10 +30380,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 13, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -28851,72 +30396,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [356] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, + sym_await, + [348] = 29, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(786), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(59), 1, + ACTIONS(794), 1, anon_sym_LBRACK, - ACTIONS(61), 1, + ACTIONS(796), 1, + anon_sym_RBRACK, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(800), 1, anon_sym_lambda, - ACTIONS(67), 1, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(77), 1, - sym__string_start, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + STATE(1058), 1, sym_string, - STATE(1392), 1, - sym_pattern, - STATE(1402), 1, - sym_pattern_list, - STATE(1545), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1505), 1, + sym_list_splat_pattern, + STATE(1750), 1, sym_expression, - STATE(2184), 1, + STATE(2257), 1, + sym_pattern, + STATE(2458), 1, + sym__patterns, + STATE(2461), 1, + sym__collection_elements, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(506), 2, + STATE(1504), 2, sym_attribute, sym_subscript, - ACTIONS(63), 3, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(73), 4, + STATE(2258), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(317), 4, + ACTIONS(792), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1988), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1478), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28924,8 +30474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 13, + STATE(1507), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -28939,72 +30488,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [470] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, + sym_await, + [469] = 30, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(806), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(808), 1, anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(810), 1, + anon_sym_RPAREN, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(59), 1, + ACTIONS(816), 1, anon_sym_LBRACK, - ACTIONS(61), 1, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(67), 1, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(824), 1, anon_sym_await, - ACTIONS(77), 1, - sym__string_start, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + STATE(1095), 1, sym_string, - STATE(1392), 1, - sym_pattern, - STATE(1402), 1, - sym_pattern_list, - STATE(1545), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1453), 1, + sym_list_splat_pattern, + STATE(1748), 1, sym_expression, - STATE(2184), 1, + STATE(2125), 1, + sym_yield, + STATE(2142), 1, + sym_pattern, + STATE(2397), 1, + sym__collection_elements, + STATE(2417), 1, + sym__patterns, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(506), 2, + STATE(1451), 2, sym_attribute, sym_subscript, - ACTIONS(63), 3, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(73), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(317), 4, + ACTIONS(814), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(2001), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1478), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29012,8 +30567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 13, + STATE(1385), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29027,74 +30581,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [584] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + sym_await, + [592] = 30, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(752), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(806), 1, sym_identifier, - ACTIONS(754), 1, + ACTIONS(808), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(816), 1, anon_sym_LBRACK, - ACTIONS(764), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(766), 1, + ACTIONS(824), 1, anon_sym_await, - ACTIONS(786), 1, - anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(826), 1, + anon_sym_RPAREN, + STATE(1095), 1, sym_string, - STATE(1435), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1453), 1, + sym_list_splat_pattern, + STATE(1748), 1, sym_expression, - STATE(1965), 1, + STATE(2125), 1, + sym_yield, + STATE(2142), 1, sym_pattern, - STATE(2090), 1, + STATE(2381), 1, + sym__patterns, + STATE(2397), 1, sym__collection_elements, - STATE(2099), 1, + STATE(2489), 1, sym__named_expression_lhs, - STATE(2183), 1, - sym__patterns, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1179), 2, + STATE(1451), 2, sym_attribute, sym_subscript, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1853), 3, + STATE(2136), 2, sym_list_splat, sym_parenthesized_list_splat, - sym_yield, - STATE(2012), 3, + STATE(2327), 2, sym_tuple_pattern, sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(743), 4, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(758), 4, + ACTIONS(814), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1520), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29102,8 +30660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 13, + STATE(1385), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29117,75 +30674,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [702] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + sym_await, + [715] = 29, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(768), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(786), 1, sym_identifier, - ACTIONS(770), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(778), 1, + ACTIONS(794), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(782), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(788), 1, - anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(828), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1428), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1505), 1, + sym_list_splat_pattern, + STATE(1758), 1, sym_expression, - STATE(1797), 1, - sym_yield, - STATE(1959), 1, + STATE(2257), 1, sym_pattern, - STATE(2123), 1, - sym__named_expression_lhs, - STATE(2187), 1, + STATE(2410), 1, sym__collection_elements, - STATE(2188), 1, + STATE(2482), 1, sym__patterns, - ACTIONS(643), 2, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(1223), 2, + STATE(1504), 2, sym_attribute, sym_subscript, - STATE(1847), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(639), 3, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(647), 4, + STATE(2258), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(776), 4, + ACTIONS(792), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29193,8 +30752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 13, + STATE(1507), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29208,72 +30766,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [822] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, + sym_await, + [836] = 30, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(806), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(808), 1, anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(59), 1, + ACTIONS(816), 1, anon_sym_LBRACK, - ACTIONS(61), 1, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(67), 1, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(824), 1, anon_sym_await, - ACTIONS(77), 1, - sym__string_start, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(830), 1, + anon_sym_RPAREN, + STATE(1095), 1, sym_string, - STATE(1392), 1, - sym_pattern, - STATE(1402), 1, - sym_pattern_list, - STATE(1545), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1453), 1, + sym_list_splat_pattern, + STATE(1748), 1, sym_expression, - STATE(2184), 1, + STATE(2125), 1, + sym_yield, + STATE(2142), 1, + sym_pattern, + STATE(2397), 1, + sym__collection_elements, + STATE(2423), 1, + sym__patterns, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(506), 2, + STATE(1451), 2, sym_attribute, sym_subscript, - ACTIONS(63), 3, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(73), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(317), 4, + ACTIONS(814), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(2011), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1478), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29281,8 +30845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 13, + STATE(1385), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29296,76 +30859,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [936] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(768), 1, + sym_await, + [959] = 29, + ACTIONS(632), 1, sym_identifier, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, ACTIONS(770), 1, anon_sym_LPAREN, ACTIONS(774), 1, anon_sym_STAR, + ACTIONS(776), 1, + anon_sym_STAR_STAR, ACTIONS(778), 1, - anon_sym_LBRACK, + anon_sym_not, ACTIONS(780), 1, - anon_sym_yield, + anon_sym_lambda, ACTIONS(782), 1, - anon_sym_await, - ACTIONS(790), 1, - anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + anon_sym_yield, + ACTIONS(832), 1, + anon_sym_COMMA, + ACTIONS(834), 1, + anon_sym_RBRACE, + STATE(1037), 1, sym_string, - STATE(1432), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1732), 1, sym_expression, - STATE(1835), 1, - sym_parenthesized_list_splat, - STATE(1837), 1, - sym_list_splat, - STATE(1942), 1, - sym_yield, - STATE(1959), 1, - sym_pattern, - STATE(2123), 1, - sym__named_expression_lhs, - STATE(2141), 1, - sym__patterns, - STATE(2148), 1, + STATE(1868), 1, + sym_pair, + STATE(2155), 1, + sym_dictionary_splat, + STATE(2398), 1, sym__collection_elements, - ACTIONS(643), 2, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - STATE(1223), 2, - sym_attribute, - sym_subscript, - ACTIONS(639), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(647), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(776), 4, + STATE(2157), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + ACTIONS(652), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29373,10 +30935,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 13, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29388,74 +30951,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1058] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(752), 1, + sym_await, + [1080] = 29, + ACTIONS(632), 1, sym_identifier, - ACTIONS(754), 1, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(770), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(774), 1, anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_LBRACK, - ACTIONS(764), 1, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_yield, - ACTIONS(766), 1, - anon_sym_await, - ACTIONS(792), 1, - anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(836), 1, + anon_sym_COMMA, + ACTIONS(838), 1, + anon_sym_RBRACE, + STATE(1037), 1, sym_string, - STATE(1423), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1726), 1, sym_expression, - STATE(1965), 1, - sym_pattern, - STATE(2099), 1, - sym__named_expression_lhs, - STATE(2191), 1, - sym__patterns, - STATE(2206), 1, + STATE(1875), 1, + sym_pair, + STATE(2212), 1, + sym_dictionary_splat, + STATE(2353), 1, sym__collection_elements, - ACTIONS(739), 2, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - STATE(1179), 2, - sym_attribute, - sym_subscript, - ACTIONS(735), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2157), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - STATE(2012), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(743), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(758), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1520), 8, + ACTIONS(652), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29463,10 +31027,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 13, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29478,75 +31043,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1176] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + sym_await, + [1201] = 29, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(768), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(786), 1, sym_identifier, - ACTIONS(770), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(778), 1, + ACTIONS(794), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(782), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(794), 1, - anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(840), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1428), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1505), 1, + sym_list_splat_pattern, + STATE(1739), 1, sym_expression, - STATE(1797), 1, - sym_yield, - STATE(1959), 1, + STATE(2257), 1, sym_pattern, - STATE(2100), 1, + STATE(2359), 1, + sym__collection_elements, + STATE(2458), 1, sym__patterns, - STATE(2123), 1, + STATE(2526), 1, sym__named_expression_lhs, - STATE(2187), 1, - sym__collection_elements, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(1223), 2, + STATE(1504), 2, sym_attribute, sym_subscript, - STATE(1847), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(639), 3, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(647), 4, + STATE(2258), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(776), 4, + ACTIONS(792), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29554,8 +31121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 13, + STATE(1507), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29569,75 +31135,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1296] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + sym_await, + [1322] = 30, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(768), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(806), 1, sym_identifier, - ACTIONS(770), 1, + ACTIONS(808), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(778), 1, + ACTIONS(816), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(782), 1, + ACTIONS(824), 1, anon_sym_await, - ACTIONS(796), 1, + ACTIONS(842), 1, anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + STATE(1095), 1, sym_string, - STATE(1428), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1453), 1, + sym_list_splat_pattern, + STATE(1748), 1, sym_expression, - STATE(1797), 1, + STATE(2125), 1, sym_yield, - STATE(1959), 1, + STATE(2142), 1, sym_pattern, - STATE(2123), 1, - sym__named_expression_lhs, - STATE(2141), 1, - sym__patterns, - STATE(2187), 1, + STATE(2397), 1, sym__collection_elements, - ACTIONS(643), 2, + STATE(2423), 1, + sym__patterns, + STATE(2489), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1223), 2, + STATE(1451), 2, sym_attribute, sym_subscript, - STATE(1847), 2, + STATE(2136), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(639), 3, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(647), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(776), 4, + ACTIONS(814), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29645,8 +31214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 13, + STATE(1385), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29660,74 +31228,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1416] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(752), 1, + sym_await, + [1445] = 29, + ACTIONS(632), 1, sym_identifier, - ACTIONS(754), 1, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(770), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(774), 1, anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_LBRACK, - ACTIONS(764), 1, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_yield, - ACTIONS(766), 1, - anon_sym_await, - ACTIONS(798), 1, - anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(844), 1, + anon_sym_COMMA, + ACTIONS(846), 1, + anon_sym_RBRACE, + STATE(1037), 1, sym_string, - STATE(1427), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1730), 1, sym_expression, - STATE(1965), 1, - sym_pattern, - STATE(2099), 1, - sym__named_expression_lhs, - STATE(2202), 1, - sym__patterns, - STATE(2210), 1, + STATE(1857), 1, + sym_pair, + STATE(2245), 1, + sym_dictionary_splat, + STATE(2420), 1, + sym__named_expression_lhs, + STATE(2477), 1, sym__collection_elements, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - STATE(1179), 2, - sym_attribute, - sym_subscript, - ACTIONS(735), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2157), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - STATE(2012), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(743), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(758), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1520), 8, + ACTIONS(652), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29735,10 +31304,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 13, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29750,76 +31320,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1534] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + sym_await, + [1566] = 29, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(768), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(786), 1, sym_identifier, - ACTIONS(770), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(778), 1, + ACTIONS(794), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(782), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(800), 1, - anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(848), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1424), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1505), 1, + sym_list_splat_pattern, + STATE(1743), 1, sym_expression, - STATE(1865), 1, - sym_yield, - STATE(1918), 1, - sym_parenthesized_list_splat, - STATE(1921), 1, - sym_list_splat, - STATE(1959), 1, + STATE(2257), 1, sym_pattern, - STATE(2033), 1, + STATE(2481), 1, sym__collection_elements, - STATE(2123), 1, - sym__named_expression_lhs, - STATE(2188), 1, + STATE(2482), 1, sym__patterns, - ACTIONS(643), 2, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(1223), 2, + STATE(1504), 2, sym_attribute, sym_subscript, - ACTIONS(639), 3, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(647), 4, + STATE(2258), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(776), 4, + ACTIONS(792), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29827,8 +31398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 13, + STATE(1507), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29842,74 +31412,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1656] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + sym_await, + [1687] = 29, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(752), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(786), 1, sym_identifier, - ACTIONS(754), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(794), 1, anon_sym_LBRACK, - ACTIONS(764), 1, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(766), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(802), 1, + ACTIONS(850), 1, anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + STATE(1058), 1, sym_string, - STATE(1436), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1505), 1, + sym_list_splat_pattern, + STATE(1758), 1, sym_expression, - STATE(1965), 1, + STATE(2257), 1, sym_pattern, - STATE(2099), 1, - sym__named_expression_lhs, - STATE(2181), 1, + STATE(2410), 1, sym__collection_elements, - STATE(2202), 1, + STATE(2501), 1, sym__patterns, - ACTIONS(739), 2, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(1179), 2, + STATE(1504), 2, sym_attribute, sym_subscript, - ACTIONS(735), 3, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2258), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - STATE(2012), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(743), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(758), 4, + ACTIONS(792), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1520), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29917,8 +31490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 13, + STATE(1507), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29932,71 +31504,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1774] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [1808] = 29, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(786), 1, sym_identifier, - ACTIONS(659), 1, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(790), 1, + anon_sym_STAR, + ACTIONS(794), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(800), 1, anon_sym_lambda, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(806), 1, - anon_sym_COMMA, - ACTIONS(808), 1, - anon_sym_STAR, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(812), 1, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(814), 1, - anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(804), 1, + anon_sym_await, + ACTIONS(852), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1414), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1505), 1, + sym_list_splat_pattern, + STATE(1753), 1, sym_expression, - STATE(1619), 1, - sym_pair, - STATE(1923), 1, - sym_dictionary_splat, - STATE(2045), 1, + STATE(2257), 1, + sym_pattern, + STATE(2399), 1, + sym__patterns, + STATE(2500), 1, sym__collection_elements, - STATE(2053), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + STATE(1504), 2, + sym_attribute, + sym_subscript, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1825), 3, + STATE(2258), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(657), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + ACTIONS(792), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30004,12 +31582,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1507), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30021,71 +31596,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1891] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [1929] = 29, + ACTIONS(632), 1, sym_identifier, - ACTIONS(659), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(665), 1, - anon_sym_lambda, - ACTIONS(669), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(804), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(770), 1, anon_sym_LPAREN, - ACTIONS(808), 1, + ACTIONS(774), 1, anon_sym_STAR, - ACTIONS(810), 1, + ACTIONS(776), 1, anon_sym_STAR_STAR, - ACTIONS(812), 1, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_yield, - ACTIONS(816), 1, + ACTIONS(854), 1, anon_sym_COMMA, - ACTIONS(818), 1, + ACTIONS(856), 1, anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + STATE(1037), 1, sym_string, - STATE(1413), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1733), 1, sym_expression, - STATE(1606), 1, + STATE(1886), 1, sym_pair, - STATE(1962), 1, + STATE(2095), 1, sym_dictionary_splat, - STATE(2053), 1, + STATE(2420), 1, sym__named_expression_lhs, - STATE(2200), 1, + STATE(2490), 1, sym__collection_elements, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1825), 3, + STATE(2157), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(657), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30093,8 +31672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30110,71 +31688,79 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2008] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, - sym_identifier, - ACTIONS(659), 1, - anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(665), 1, - anon_sym_lambda, - ACTIONS(669), 1, + sym_await, + [2050] = 31, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(804), 1, - anon_sym_LPAREN, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(806), 1, + sym_identifier, ACTIONS(808), 1, - anon_sym_STAR, - ACTIONS(810), 1, - anon_sym_STAR_STAR, + anon_sym_LPAREN, ACTIONS(812), 1, - anon_sym_yield, + anon_sym_STAR, + ACTIONS(816), 1, + anon_sym_LBRACK, + ACTIONS(818), 1, + anon_sym_not, ACTIONS(820), 1, - anon_sym_COMMA, + anon_sym_lambda, ACTIONS(822), 1, - anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + anon_sym_yield, + ACTIONS(824), 1, + anon_sym_await, + ACTIONS(858), 1, + anon_sym_RPAREN, + STATE(1095), 1, sym_string, - STATE(1411), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1453), 1, + sym_list_splat_pattern, + STATE(1752), 1, sym_expression, - STATE(1603), 1, - sym_pair, - STATE(1927), 1, - sym_dictionary_splat, - STATE(2036), 1, - sym__collection_elements, - STATE(2053), 1, + STATE(2086), 1, + sym_yield, + STATE(2109), 1, + sym_list_splat, + STATE(2110), 1, + sym_parenthesized_list_splat, + STATE(2142), 1, + sym_pattern, + STATE(2381), 1, + sym__patterns, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + STATE(2506), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + STATE(1451), 2, + sym_attribute, + sym_subscript, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1825), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(657), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + ACTIONS(814), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30182,12 +31768,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1385), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30199,71 +31782,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2125] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [2175] = 29, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(786), 1, sym_identifier, - ACTIONS(659), 1, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(790), 1, + anon_sym_STAR, + ACTIONS(794), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(800), 1, anon_sym_lambda, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(808), 1, - anon_sym_STAR, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(812), 1, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(824), 1, - anon_sym_COMMA, - ACTIONS(826), 1, - anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(804), 1, + anon_sym_await, + ACTIONS(860), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1407), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1505), 1, + sym_list_splat_pattern, + STATE(1758), 1, sym_expression, - STATE(1617), 1, - sym_pair, - STATE(1961), 1, - sym_dictionary_splat, - STATE(2053), 1, - sym__named_expression_lhs, - STATE(2204), 1, + STATE(2257), 1, + sym_pattern, + STATE(2409), 1, + sym__patterns, + STATE(2410), 1, sym__collection_elements, - ACTIONS(667), 2, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + STATE(1504), 2, + sym_attribute, + sym_subscript, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1825), 3, + STATE(2258), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(657), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + ACTIONS(792), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30271,12 +31860,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1507), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30288,71 +31874,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2242] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [2296] = 30, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(806), 1, sym_identifier, - ACTIONS(659), 1, + ACTIONS(808), 1, + anon_sym_LPAREN, + ACTIONS(812), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(808), 1, - anon_sym_STAR, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(812), 1, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(828), 1, - anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(824), 1, + anon_sym_await, + ACTIONS(862), 1, + anon_sym_RPAREN, + STATE(1095), 1, sym_string, - STATE(1412), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1453), 1, + sym_list_splat_pattern, + STATE(1745), 1, sym_expression, - STATE(1618), 1, - sym_pair, - STATE(1925), 1, - sym_dictionary_splat, - STATE(2053), 1, - sym__named_expression_lhs, - STATE(2058), 1, + STATE(2142), 1, + sym_pattern, + STATE(2204), 1, + sym_yield, + STATE(2362), 1, sym__collection_elements, - ACTIONS(667), 2, + STATE(2423), 1, + sym__patterns, + STATE(2489), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + STATE(1451), 2, + sym_attribute, + sym_subscript, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1825), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(657), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + ACTIONS(814), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30360,12 +31953,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1385), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30377,71 +31967,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2359] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [2419] = 29, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(786), 1, sym_identifier, - ACTIONS(659), 1, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(790), 1, + anon_sym_STAR, + ACTIONS(794), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(800), 1, anon_sym_lambda, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(808), 1, - anon_sym_STAR, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(812), 1, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(834), 1, - anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(804), 1, + anon_sym_await, + ACTIONS(864), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1408), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1505), 1, + sym_list_splat_pattern, + STATE(1758), 1, sym_expression, - STATE(1572), 1, - sym_pair, - STATE(1870), 1, - sym_dictionary_splat, - STATE(2053), 1, - sym__named_expression_lhs, - STATE(2085), 1, + STATE(2257), 1, + sym_pattern, + STATE(2410), 1, sym__collection_elements, - ACTIONS(667), 2, + STATE(2458), 1, + sym__patterns, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + STATE(1504), 2, + sym_attribute, + sym_subscript, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1825), 3, + STATE(2258), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(657), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + ACTIONS(792), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30449,12 +32045,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1507), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30466,71 +32059,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2476] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [2540] = 29, + ACTIONS(632), 1, sym_identifier, - ACTIONS(659), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(665), 1, - anon_sym_lambda, - ACTIONS(669), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(804), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(770), 1, anon_sym_LPAREN, - ACTIONS(808), 1, + ACTIONS(774), 1, anon_sym_STAR, - ACTIONS(810), 1, + ACTIONS(776), 1, anon_sym_STAR_STAR, - ACTIONS(812), 1, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_yield, - ACTIONS(836), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(838), 1, + ACTIONS(868), 1, anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + STATE(1037), 1, sym_string, - STATE(1410), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1731), 1, sym_expression, - STATE(1590), 1, + STATE(1899), 1, sym_pair, - STATE(1873), 1, + STATE(2139), 1, sym_dictionary_splat, - STATE(2053), 1, + STATE(2420), 1, sym__named_expression_lhs, - STATE(2079), 1, + STATE(2424), 1, sym__collection_elements, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1825), 3, + STATE(2157), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(657), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30538,8 +32135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30555,71 +32151,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2593] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [2661] = 30, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(806), 1, sym_identifier, - ACTIONS(659), 1, + ACTIONS(808), 1, + anon_sym_LPAREN, + ACTIONS(812), 1, + anon_sym_STAR, + ACTIONS(816), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(808), 1, - anon_sym_STAR, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(812), 1, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(840), 1, - anon_sym_COMMA, - ACTIONS(842), 1, - anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(824), 1, + anon_sym_await, + ACTIONS(870), 1, + anon_sym_RPAREN, + STATE(1095), 1, sym_string, - STATE(1409), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1453), 1, + sym_list_splat_pattern, + STATE(1737), 1, sym_expression, - STATE(1569), 1, - sym_pair, - STATE(1807), 1, - sym_dictionary_splat, - STATE(2053), 1, + STATE(2142), 1, + sym_pattern, + STATE(2149), 1, + sym_yield, + STATE(2423), 1, + sym__patterns, + STATE(2489), 1, sym__named_expression_lhs, - STATE(2168), 1, + STATE(2505), 1, sym__collection_elements, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + STATE(1451), 2, + sym_attribute, + sym_subscript, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1825), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(657), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + ACTIONS(814), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30627,12 +32230,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1385), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30644,56 +32244,83 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2710] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(297), 1, - anon_sym_TILDE, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, + sym_await, + [2784] = 27, + ACTIONS(9), 1, sym_identifier, - ACTIONS(846), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(848), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(854), 1, - anon_sym_in, - ACTIONS(856), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - STATE(875), 1, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(69), 1, + anon_sym_yield, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_await, + ACTIONS(79), 1, + sym_string_start, + STATE(661), 1, + sym_list_splat_pattern, + STATE(1034), 1, sym_string, - STATE(1373), 1, + STATE(1161), 1, sym_primary_expression, - STATE(1385), 1, + STATE(1707), 1, sym_pattern, - ACTIONS(295), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(301), 2, + STATE(1714), 1, + sym_pattern_list, + STATE(1824), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1282), 2, + STATE(666), 2, sym_attribute, sym_subscript, - STATE(1388), 3, + STATE(1693), 2, sym_tuple_pattern, sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(850), 5, + ACTIONS(349), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - anon_sym_await, - STATE(1273), 13, + STATE(2329), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30707,72 +32334,85 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - ACTIONS(852), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [2809] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(297), 1, - anon_sym_TILDE, - ACTIONS(303), 1, + sym_await, + [2901] = 29, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(786), 1, sym_identifier, - ACTIONS(846), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(848), 1, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(794), 1, anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_in, - STATE(875), 1, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, + anon_sym_yield, + ACTIONS(804), 1, + anon_sym_await, + ACTIONS(872), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1373), 1, + STATE(1063), 1, sym_primary_expression, - STATE(1385), 1, + STATE(1505), 1, + sym_list_splat_pattern, + STATE(1758), 1, + sym_expression, + STATE(2257), 1, sym_pattern, - ACTIONS(295), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(301), 2, + STATE(2399), 1, + sym__patterns, + STATE(2410), 1, + sym__collection_elements, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(1282), 2, + STATE(1504), 2, sym_attribute, sym_subscript, - STATE(1388), 3, + STATE(2326), 2, sym_tuple_pattern, sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(2258), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(850), 5, + ACTIONS(792), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - anon_sym_await, - STATE(1273), 13, + STATE(1506), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1507), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30786,81 +32426,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - ACTIONS(858), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [2908] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 1, + sym_await, + [3022] = 29, + ACTIONS(632), 1, + sym_identifier, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(862), 1, - sym_identifier, - ACTIONS(864), 1, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(770), 1, anon_sym_LPAREN, - ACTIONS(866), 1, - anon_sym_RPAREN, - ACTIONS(868), 1, - anon_sym_COMMA, - ACTIONS(870), 1, + ACTIONS(774), 1, anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(776), 1, anon_sym_STAR_STAR, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, + anon_sym_yield, + ACTIONS(874), 1, + anon_sym_COMMA, ACTIONS(876), 1, - anon_sym_await, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + anon_sym_RBRACE, + STATE(1037), 1, sym_string, - STATE(1422), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1728), 1, sym_expression, - STATE(1834), 1, - sym_parenthesized_list_splat, - STATE(2123), 1, + STATE(1862), 1, + sym_pair, + STATE(2219), 1, + sym_dictionary_splat, + STATE(2343), 1, + sym__collection_elements, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1833), 3, + STATE(2157), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(647), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(872), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + ACTIONS(652), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30868,8 +32502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30885,65 +32518,79 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3016] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + sym_await, + [3143] = 31, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(862), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(806), 1, sym_identifier, - ACTIONS(864), 1, + ACTIONS(808), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(876), 1, + ACTIONS(816), 1, + anon_sym_LBRACK, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(824), 1, anon_sym_await, ACTIONS(878), 1, anon_sym_RPAREN, - ACTIONS(880), 1, - anon_sym_COMMA, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + STATE(1095), 1, sym_string, - STATE(1437), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1453), 1, + sym_list_splat_pattern, + STATE(1738), 1, sym_expression, - STATE(1891), 1, + STATE(2100), 1, + sym_yield, + STATE(2130), 1, sym_parenthesized_list_splat, - STATE(2123), 1, + STATE(2131), 1, + sym_list_splat, + STATE(2142), 1, + sym_pattern, + STATE(2484), 1, + sym__collection_elements, + STATE(2486), 1, + sym__patterns, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + STATE(1451), 2, + sym_attribute, + sym_subscript, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1890), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(647), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(872), 4, + ACTIONS(814), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30951,12 +32598,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30968,65 +32612,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3124] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 1, + sym_await, + [3268] = 27, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(69), 1, + anon_sym_yield, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(862), 1, - sym_identifier, - ACTIONS(864), 1, - anon_sym_LPAREN, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(876), 1, + ACTIONS(77), 1, anon_sym_await, - ACTIONS(882), 1, - anon_sym_RPAREN, - ACTIONS(884), 1, - anon_sym_COMMA, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(79), 1, + sym_string_start, + STATE(661), 1, + sym_list_splat_pattern, + STATE(1034), 1, sym_string, - STATE(1438), 1, + STATE(1161), 1, + sym_primary_expression, + STATE(1707), 1, + sym_pattern, + STATE(1714), 1, + sym_pattern_list, + STATE(1824), 1, sym_expression, - STATE(1909), 1, - sym_parenthesized_list_splat, - STATE(2123), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + STATE(666), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1913), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(647), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(872), 4, + ACTIONS(349), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(2281), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31034,12 +32688,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1344), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31051,65 +32702,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3232] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + sym_await, + [3385] = 30, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(806), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(808), 1, anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_RPAREN, - ACTIONS(892), 1, - anon_sym_COMMA, - ACTIONS(896), 1, + ACTIONS(812), 1, + anon_sym_STAR, + ACTIONS(816), 1, + anon_sym_LBRACK, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(824), 1, anon_sym_await, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(880), 1, + anon_sym_RPAREN, + STATE(1095), 1, sym_string, - STATE(1586), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1453), 1, + sym_list_splat_pattern, + STATE(1748), 1, sym_expression, - STATE(1828), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2125), 1, + sym_yield, + STATE(2142), 1, + sym_pattern, + STATE(2397), 1, + sym__collection_elements, + STATE(2486), 1, + sym__patterns, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + STATE(1451), 2, + sym_attribute, + sym_subscript, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1827), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(814), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31117,12 +32781,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31134,66 +32795,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3340] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [3508] = 29, + ACTIONS(632), 1, sym_identifier, - ACTIONS(633), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(770), 1, anon_sym_LPAREN, - ACTIONS(898), 1, - anon_sym_RPAREN, - ACTIONS(900), 1, + ACTIONS(774), 1, anon_sym_STAR, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, + anon_sym_yield, + ACTIONS(882), 1, + anon_sym_COMMA, + ACTIONS(884), 1, + anon_sym_RBRACE, + STATE(1037), 1, sym_string, - STATE(1433), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1727), 1, sym_expression, - STATE(1788), 1, - sym_with_item, - STATE(1797), 1, - sym_yield, - STATE(2123), 1, + STATE(1892), 1, + sym_pair, + STATE(2266), 1, + sym_dictionary_splat, + STATE(2420), 1, sym__named_expression_lhs, - STATE(2187), 1, + STATE(2529), 1, sym__collection_elements, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - STATE(1847), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(639), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + STATE(2157), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31201,8 +32871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31218,65 +32887,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3450] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + sym_await, + [3629] = 30, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(862), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(806), 1, sym_identifier, - ACTIONS(864), 1, + ACTIONS(808), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(876), 1, + ACTIONS(816), 1, + anon_sym_LBRACK, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(824), 1, anon_sym_await, - ACTIONS(902), 1, + ACTIONS(886), 1, anon_sym_RPAREN, - ACTIONS(904), 1, - anon_sym_COMMA, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + STATE(1095), 1, sym_string, - STATE(1429), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1453), 1, + sym_list_splat_pattern, + STATE(1748), 1, sym_expression, - STATE(1945), 1, - sym_parenthesized_list_splat, - STATE(2123), 1, + STATE(2125), 1, + sym_yield, + STATE(2142), 1, + sym_pattern, + STATE(2397), 1, + sym__collection_elements, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + STATE(2509), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + STATE(1451), 2, + sym_attribute, + sym_subscript, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1944), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(647), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(872), 4, + ACTIONS(814), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31284,12 +32966,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31301,65 +32980,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3558] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + sym_await, + [3752] = 29, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(862), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(786), 1, sym_identifier, - ACTIONS(864), 1, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(876), 1, + ACTIONS(794), 1, + anon_sym_LBRACK, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, + anon_sym_yield, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(906), 1, - anon_sym_RPAREN, - ACTIONS(908), 1, - anon_sym_COMMA, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(888), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1434), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1505), 1, + sym_list_splat_pattern, + STATE(1758), 1, sym_expression, - STATE(1876), 1, - sym_parenthesized_list_splat, - STATE(2123), 1, + STATE(2257), 1, + sym_pattern, + STATE(2410), 1, + sym__collection_elements, + STATE(2458), 1, + sym__patterns, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + STATE(1504), 2, + sym_attribute, + sym_subscript, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1883), 3, + STATE(2258), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(647), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(872), 4, + ACTIONS(792), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31367,12 +33058,74 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1507), 14, sym_binary_operator, sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [3873] = 21, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(894), 1, + anon_sym_LPAREN, + ACTIONS(896), 1, + anon_sym_STAR, + ACTIONS(900), 1, + anon_sym_LBRACK, + ACTIONS(904), 1, + anon_sym_TILDE, + ACTIONS(906), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1478), 1, + sym_list_splat_pattern, + STATE(1681), 1, + sym_pattern, + STATE(1682), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(902), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1477), 2, sym_attribute, sym_subscript, + STATE(1671), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(898), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, sym_call, sym_list, sym_set, @@ -31384,65 +33137,173 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3666] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + sym_await, + ACTIONS(892), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [3977] = 21, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(862), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(890), 1, sym_identifier, - ACTIONS(864), 1, + ACTIONS(894), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(896), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(876), 1, + ACTIONS(900), 1, + anon_sym_LBRACK, + ACTIONS(904), 1, + anon_sym_TILDE, + ACTIONS(906), 1, anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1478), 1, + sym_list_splat_pattern, + STATE(1681), 1, + sym_pattern, + STATE(1682), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(902), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1477), 2, + sym_attribute, + sym_subscript, + STATE(1671), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(898), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + ACTIONS(908), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [4081] = 26, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(782), 1, + anon_sym_yield, ACTIONS(910), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(912), 1, - anon_sym_COMMA, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + anon_sym_LPAREN, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(918), 1, + anon_sym_LBRACK, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + ACTIONS(924), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1425), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1280), 1, + sym_list_splat_pattern, + STATE(1776), 1, sym_expression, - STATE(1943), 1, - sym_parenthesized_list_splat, - STATE(2123), 1, + STATE(2317), 1, + sym_pattern, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + STATE(1282), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1947), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(647), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(872), 4, + ACTIONS(916), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(1989), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31450,12 +33311,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1341), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31467,65 +33325,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3774] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + sym_await, + [4194] = 26, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(862), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(782), 1, + anon_sym_yield, + ACTIONS(910), 1, sym_identifier, - ACTIONS(864), 1, + ACTIONS(912), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(914), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(876), 1, + ACTIONS(918), 1, + anon_sym_LBRACK, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + ACTIONS(924), 1, anon_sym_await, - ACTIONS(890), 1, - anon_sym_RPAREN, - ACTIONS(892), 1, - anon_sym_COMMA, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + STATE(1032), 1, sym_string, - STATE(1419), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1280), 1, + sym_list_splat_pattern, + STATE(1776), 1, sym_expression, - STATE(1828), 1, - sym_parenthesized_list_splat, - STATE(2123), 1, + STATE(2317), 1, + sym_pattern, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + STATE(1282), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1827), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(647), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(872), 4, + ACTIONS(916), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(2015), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31533,12 +33398,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1341), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31550,65 +33412,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3882] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 1, + sym_await, + [4307] = 26, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(862), 1, + ACTIONS(926), 1, sym_identifier, - ACTIONS(864), 1, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(930), 1, + anon_sym_RPAREN, + ACTIONS(932), 1, + anon_sym_COMMA, + ACTIONS(934), 1, anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(876), 1, + ACTIONS(940), 1, anon_sym_await, - ACTIONS(914), 1, - anon_sym_RPAREN, - ACTIONS(916), 1, - anon_sym_COMMA, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + STATE(1095), 1, sym_string, - STATE(1420), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1756), 1, sym_expression, - STATE(1863), 1, + STATE(2173), 1, sym_parenthesized_list_splat, - STATE(2123), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1864), 3, + STATE(2172), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(647), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(872), 4, + ACTIONS(936), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1544), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31616,8 +33482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31633,63 +33498,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3990] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [4419] = 26, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(918), 1, + ACTIONS(946), 1, anon_sym_RPAREN, - STATE(912), 1, + ACTIONS(948), 1, + anon_sym_COMMA, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1863), 1, sym_expression, - STATE(2014), 1, + STATE(2071), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2065), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31697,8 +33568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31714,77 +33584,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4095] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + sym_await, + [4531] = 21, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(904), 1, + anon_sym_TILDE, + ACTIONS(960), 1, + sym_identifier, + ACTIONS(962), 1, anon_sym_LPAREN, - ACTIONS(898), 1, - anon_sym_RPAREN, - ACTIONS(900), 1, + ACTIONS(964), 1, anon_sym_STAR, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(968), 1, + anon_sym_LBRACK, + ACTIONS(970), 1, + anon_sym_await, + STATE(1071), 1, sym_string, - STATE(1428), 1, - sym_expression, - STATE(1797), 1, - sym_yield, - STATE(2123), 1, - sym__named_expression_lhs, - STATE(2187), 1, - sym__collection_elements, - ACTIONS(643), 2, + STATE(1618), 1, + sym_list_splat_pattern, + STATE(1664), 1, + sym_primary_expression, + STATE(1717), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1847), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(639), 3, + ACTIONS(902), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(1615), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(1212), 15, + ACTIONS(966), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31796,64 +33649,85 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4202] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(633), 1, + sym_await, + ACTIONS(892), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [4633] = 26, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(926), 1, + sym_identifier, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(934), 1, anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(940), 1, + anon_sym_await, + ACTIONS(972), 1, anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(974), 1, + anon_sym_COMMA, + STATE(1095), 1, sym_string, - STATE(1415), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1751), 1, sym_expression, - STATE(1872), 1, - sym_yield, - STATE(2078), 1, - sym__collection_elements, - STATE(2123), 1, + STATE(2238), 1, + sym_parenthesized_list_splat, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1847), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(639), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(2235), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(936), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31861,8 +33735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31878,63 +33751,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4309] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(731), 1, + sym_await, + [4745] = 26, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(737), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(745), 1, - anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(764), 1, - anon_sym_yield, - ACTIONS(922), 1, + ACTIONS(926), 1, + sym_identifier, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(924), 1, + ACTIONS(934), 1, anon_sym_STAR, - ACTIONS(926), 1, - anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(940), 1, + anon_sym_await, + ACTIONS(976), 1, + anon_sym_RPAREN, + ACTIONS(978), 1, + anon_sym_COMMA, + STATE(1095), 1, sym_string, - STATE(1427), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1746), 1, sym_expression, - STATE(2099), 1, + STATE(2230), 1, + sym_parenthesized_list_splat, + STATE(2489), 1, sym__named_expression_lhs, - STATE(2210), 1, - sym__collection_elements, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2229), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(729), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + ACTIONS(936), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31942,8 +33821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31959,65 +33837,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4414] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(633), 1, + sym_await, + [4857] = 26, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(926), 1, + sym_identifier, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(934), 1, anon_sym_STAR, - ACTIONS(928), 1, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(940), 1, + anon_sym_await, + ACTIONS(980), 1, anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(982), 1, + anon_sym_COMMA, + STATE(1095), 1, sym_string, - STATE(1432), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1735), 1, sym_expression, - STATE(1835), 1, + STATE(2261), 1, sym_parenthesized_list_splat, - STATE(1837), 1, - sym_list_splat, - STATE(1942), 1, - sym_yield, - STATE(2123), 1, + STATE(2489), 1, sym__named_expression_lhs, - STATE(2148), 1, - sym__collection_elements, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(2260), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(936), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32025,8 +33907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32042,63 +33923,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4523] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [4969] = 26, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(926), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(934), 1, + anon_sym_STAR, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(940), 1, anon_sym_await, - ACTIONS(930), 1, + ACTIONS(984), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(986), 1, + anon_sym_COMMA, + STATE(1095), 1, sym_string, - STATE(1622), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1757), 1, sym_expression, - STATE(2014), 1, + STATE(2113), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2112), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(936), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32106,8 +33993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32123,65 +34009,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4628] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(633), 1, + sym_await, + [5081] = 26, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(926), 1, + sym_identifier, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(934), 1, anon_sym_STAR, - ACTIONS(932), 1, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(940), 1, + anon_sym_await, + ACTIONS(988), 1, anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(990), 1, + anon_sym_COMMA, + STATE(1095), 1, sym_string, - STATE(1424), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1754), 1, sym_expression, - STATE(1865), 1, - sym_yield, - STATE(1918), 1, + STATE(2211), 1, sym_parenthesized_list_splat, - STATE(1921), 1, - sym_list_splat, - STATE(2033), 1, - sym__collection_elements, - STATE(2123), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(2214), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(936), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32189,8 +34079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32206,63 +34095,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4737] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(731), 1, + sym_await, + [5193] = 26, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(737), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(745), 1, - anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(764), 1, - anon_sym_yield, - ACTIONS(922), 1, + ACTIONS(926), 1, + sym_identifier, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(924), 1, - anon_sym_STAR, ACTIONS(934), 1, - anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + anon_sym_STAR, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(940), 1, + anon_sym_await, + ACTIONS(992), 1, + anon_sym_RPAREN, + ACTIONS(994), 1, + anon_sym_COMMA, + STATE(1095), 1, sym_string, - STATE(1439), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1736), 1, sym_expression, - STATE(2044), 1, - sym__collection_elements, - STATE(2099), 1, + STATE(2147), 1, + sym_parenthesized_list_splat, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2145), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(729), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + ACTIONS(936), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32270,8 +34165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32287,64 +34181,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4842] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [5305] = 27, + ACTIONS(658), 1, sym_identifier, - ACTIONS(633), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, + anon_sym_STAR, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(936), 1, + ACTIONS(996), 1, anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + STATE(1095), 1, sym_string, - STATE(1416), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1749), 1, sym_expression, - STATE(1964), 1, + STATE(2125), 1, sym_yield, - STATE(2123), 1, - sym__named_expression_lhs, - STATE(2211), 1, + STATE(2228), 1, + sym_with_item, + STATE(2397), 1, sym__collection_elements, - ACTIONS(643), 2, + STATE(2489), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1847), 2, + STATE(2136), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(639), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32352,8 +34252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32369,76 +34268,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4949] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + sym_await, + [5419] = 21, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(904), 1, + anon_sym_TILDE, + ACTIONS(960), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(962), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(964), 1, + anon_sym_STAR, + ACTIONS(968), 1, + anon_sym_LBRACK, + ACTIONS(970), 1, anon_sym_await, - ACTIONS(938), 1, - anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1071), 1, sym_string, - STATE(1622), 1, - sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, - sym__named_expression_lhs, - ACTIONS(715), 2, + STATE(1618), 1, + sym_list_splat_pattern, + STATE(1664), 1, + sym_primary_expression, + STATE(1717), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(902), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - STATE(2013), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, + STATE(1615), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(966), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1455), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32450,63 +34333,83 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5054] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, + sym_await, + ACTIONS(908), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [5521] = 24, + ACTIONS(606), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(940), 1, - anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + ACTIONS(998), 1, + anon_sym_from, + STATE(1032), 1, sym_string, - STATE(1622), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1768), 1, sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(1975), 1, + sym_expression_list, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(626), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1000), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32514,8 +34417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32531,63 +34433,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5159] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [5629] = 26, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(820), 1, anon_sym_lambda, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(926), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(934), 1, + anon_sym_STAR, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(940), 1, anon_sym_await, - ACTIONS(942), 1, + ACTIONS(946), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(948), 1, + anon_sym_COMMA, + STATE(1095), 1, sym_string, - STATE(1622), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1734), 1, sym_expression, - STATE(2014), 1, + STATE(2071), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2065), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(936), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32595,8 +34503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32612,63 +34519,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5264] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [5741] = 25, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, + anon_sym_yield, + ACTIONS(1002), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(944), 1, - anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(1004), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1622), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1750), 1, sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2461), 1, + sym__collection_elements, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2258), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(710), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32676,8 +34587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32693,63 +34603,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5369] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [5850] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(946), 1, + ACTIONS(1006), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32757,8 +34671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32774,63 +34687,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5474] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [5959] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(948), 1, + ACTIONS(1008), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32838,8 +34755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32855,63 +34771,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5579] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [6068] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1010), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32919,8 +34839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32936,63 +34855,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5684] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [6177] = 25, + ACTIONS(690), 1, sym_identifier, - ACTIONS(731), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(764), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(790), 1, + anon_sym_STAR, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(922), 1, + ACTIONS(1002), 1, anon_sym_LPAREN, - ACTIONS(924), 1, - anon_sym_STAR, - ACTIONS(952), 1, + ACTIONS(1012), 1, anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + STATE(1058), 1, sym_string, - STATE(1430), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1744), 1, sym_expression, - STATE(2080), 1, - sym__collection_elements, - STATE(2099), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + STATE(2544), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2258), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(729), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33000,8 +34923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33017,64 +34939,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5789] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [6286] = 26, + ACTIONS(658), 1, sym_identifier, - ACTIONS(633), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, - anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(928), 1, + anon_sym_LPAREN, + ACTIONS(1014), 1, anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + STATE(1095), 1, sym_string, - STATE(1431), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1738), 1, sym_expression, - STATE(1919), 1, + STATE(2100), 1, sym_yield, - STATE(2048), 1, + STATE(2484), 1, sym__collection_elements, - STATE(2123), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1847), 2, + STATE(2136), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(639), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33082,8 +35008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33099,63 +35024,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5896] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [6397] = 25, + ACTIONS(690), 1, sym_identifier, - ACTIONS(731), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(764), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(790), 1, + anon_sym_STAR, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(922), 1, + ACTIONS(1002), 1, anon_sym_LPAREN, - ACTIONS(924), 1, - anon_sym_STAR, - ACTIONS(956), 1, + ACTIONS(1016), 1, anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + STATE(1058), 1, sym_string, - STATE(1436), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1753), 1, sym_expression, - STATE(2099), 1, - sym__named_expression_lhs, - STATE(2181), 1, + STATE(2500), 1, sym__collection_elements, - ACTIONS(739), 2, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2258), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(729), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33163,8 +35092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33180,63 +35108,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6001] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [6506] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1018), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33244,8 +35176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33261,63 +35192,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6106] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [6615] = 26, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(960), 1, + ACTIONS(1020), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1622), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1752), 1, sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2086), 1, + sym_yield, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + STATE(2506), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(680), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33325,8 +35261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33342,63 +35277,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6211] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [6726] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(962), 1, + ACTIONS(1022), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33406,8 +35345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33423,63 +35361,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6316] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [6835] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(964), 1, + ACTIONS(1024), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33487,8 +35429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33504,63 +35445,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6421] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [6944] = 27, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(966), 1, + ACTIONS(1026), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1622), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1741), 1, sym_expression, - STATE(2014), 1, + STATE(2076), 1, + sym_list_splat, + STATE(2114), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2146), 1, + sym_yield, + STATE(2413), 1, + sym__collection_elements, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(680), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33568,8 +35515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33585,63 +35531,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6526] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [7057] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(968), 1, + ACTIONS(1028), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33649,8 +35599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33666,63 +35615,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6631] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [7166] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(970), 1, + ACTIONS(1030), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33730,8 +35683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33747,63 +35699,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6736] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [7275] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(972), 1, + ACTIONS(1032), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33811,8 +35767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33828,63 +35783,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6841] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [7384] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(974), 1, + ACTIONS(1034), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33892,8 +35851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33909,63 +35867,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6946] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(731), 1, + sym_await, + [7493] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(745), 1, - anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(764), 1, - anon_sym_yield, - ACTIONS(922), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(924), 1, + ACTIONS(950), 1, anon_sym_STAR, - ACTIONS(976), 1, - anon_sym_RBRACK, - STATE(883), 1, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1036), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(884), 1, + STATE(1157), 1, sym_string, - STATE(1435), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2090), 1, - sym__collection_elements, - STATE(2099), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2274), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(729), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33973,8 +35935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33990,64 +35951,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7051] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(633), 1, + sym_await, + [7602] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(950), 1, anon_sym_STAR, - ACTIONS(932), 1, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1038), 1, anon_sym_RPAREN, - STATE(863), 1, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1424), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(1865), 1, - sym_yield, - STATE(2033), 1, - sym__collection_elements, - STATE(2123), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - STATE(1847), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34055,8 +36019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34072,64 +36035,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7158] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [7711] = 27, + ACTIONS(658), 1, sym_identifier, - ACTIONS(633), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, + anon_sym_STAR, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(978), 1, + ACTIONS(1040), 1, anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + STATE(1095), 1, sym_string, - STATE(1418), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1755), 1, sym_expression, - STATE(1926), 1, + STATE(2109), 1, + sym_list_splat, + STATE(2110), 1, + sym_parenthesized_list_splat, + STATE(2224), 1, sym_yield, - STATE(2038), 1, + STATE(2439), 1, sym__collection_elements, - STATE(2123), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1847), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(639), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34137,8 +36105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34154,63 +36121,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7265] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [7824] = 25, + ACTIONS(690), 1, sym_identifier, - ACTIONS(731), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(764), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(790), 1, + anon_sym_STAR, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(922), 1, + ACTIONS(1002), 1, anon_sym_LPAREN, - ACTIONS(924), 1, - anon_sym_STAR, - ACTIONS(980), 1, + ACTIONS(1042), 1, anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + STATE(1058), 1, sym_string, - STATE(1426), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1743), 1, sym_expression, - STATE(2099), 1, - sym__named_expression_lhs, - STATE(2209), 1, + STATE(2481), 1, sym__collection_elements, - ACTIONS(739), 2, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2258), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(729), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34218,8 +36189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34235,65 +36205,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7370] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(633), 1, + sym_await, + [7933] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(950), 1, anon_sym_STAR, - ACTIONS(978), 1, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1044), 1, anon_sym_RPAREN, - STATE(863), 1, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1418), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(1835), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(1837), 1, - sym_list_splat, - STATE(1926), 1, - sym_yield, - STATE(2038), 1, - sym__collection_elements, - STATE(2123), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34301,8 +36273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34318,63 +36289,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7479] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [8042] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(982), 1, + ACTIONS(1046), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34382,8 +36357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34399,63 +36373,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7584] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [8151] = 26, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(984), 1, + ACTIONS(1048), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1622), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1745), 1, sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2204), 1, + sym_yield, + STATE(2362), 1, + sym__collection_elements, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(680), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34463,8 +36442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34480,63 +36458,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7689] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [8262] = 26, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(986), 1, + ACTIONS(1040), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1622), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1755), 1, sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2224), 1, + sym_yield, + STATE(2439), 1, + sym__collection_elements, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(680), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34544,8 +36527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34561,63 +36543,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7794] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [8373] = 25, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, + anon_sym_yield, + ACTIONS(1002), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(988), 1, - anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(1050), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1622), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1740), 1, sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2338), 1, + sym__collection_elements, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2258), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(710), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34625,8 +36611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34642,63 +36627,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7899] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [8482] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(990), 1, + ACTIONS(1052), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34706,8 +36695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34723,63 +36711,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8004] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [8591] = 27, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(992), 1, + ACTIONS(1048), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1622), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1745), 1, sym_expression, - STATE(2014), 1, + STATE(2076), 1, + sym_list_splat, + STATE(2114), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2204), 1, + sym_yield, + STATE(2362), 1, + sym__collection_elements, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(680), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34787,8 +36781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34804,63 +36797,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8109] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [8704] = 27, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(994), 1, + ACTIONS(1020), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1622), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1752), 1, sym_expression, - STATE(2014), 1, + STATE(2086), 1, + sym_yield, + STATE(2109), 1, + sym_list_splat, + STATE(2110), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + STATE(2506), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(680), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34868,8 +36867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34885,63 +36883,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8214] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [8817] = 25, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, + anon_sym_yield, + ACTIONS(1002), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(996), 1, - anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(1054), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1622), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1747), 1, sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2408), 1, + sym__collection_elements, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2258), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(710), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34949,8 +36951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34966,63 +36967,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8319] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [8926] = 26, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(998), 1, + ACTIONS(1056), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1622), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1742), 1, sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2259), 1, + sym_yield, + STATE(2427), 1, + sym__collection_elements, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(680), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35030,8 +37036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35047,63 +37052,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8424] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [9037] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(1000), 1, + ACTIONS(1058), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35111,8 +37120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35128,64 +37136,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8529] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(633), 1, + sym_await, + [9146] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(950), 1, anon_sym_STAR, - ACTIONS(928), 1, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1060), 1, anon_sym_RPAREN, - STATE(863), 1, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1432), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(1942), 1, - sym_yield, - STATE(2123), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - STATE(2148), 1, - sym__collection_elements, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - STATE(1847), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35193,8 +37204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35210,146 +37220,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8636] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(731), 1, + sym_await, + [9255] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(745), 1, - anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(764), 1, - anon_sym_yield, - ACTIONS(922), 1, - anon_sym_LPAREN, - ACTIONS(924), 1, - anon_sym_STAR, - ACTIONS(1002), 1, - anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, - sym_string, - STATE(1421), 1, - sym_expression, - STATE(2040), 1, - sym__collection_elements, - STATE(2099), 1, - sym__named_expression_lhs, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1853), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(729), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1520), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [8741] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, sym_identifier, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(944), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(956), 1, anon_sym_lambda, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, - anon_sym_LPAREN, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(1004), 1, + ACTIONS(1062), 1, anon_sym_RPAREN, - STATE(863), 1, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1417), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(1875), 1, - sym_yield, - STATE(1918), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(1921), 1, - sym_list_splat, - STATE(2077), 1, - sym__collection_elements, - STATE(2123), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35357,8 +37288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35374,65 +37304,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8850] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(633), 1, + sym_await, + [9364] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(950), 1, anon_sym_STAR, - ACTIONS(936), 1, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1064), 1, anon_sym_RPAREN, - STATE(863), 1, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1416), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(1816), 1, - sym_list_splat, - STATE(1817), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(1964), 1, - sym_yield, - STATE(2123), 1, + STATE(2406), 1, sym__named_expression_lhs, - STATE(2211), 1, - sym__collection_elements, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35440,8 +37372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35457,63 +37388,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8959] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(731), 1, + sym_await, + [9473] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(745), 1, - anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(764), 1, - anon_sym_yield, - ACTIONS(922), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(924), 1, + ACTIONS(950), 1, anon_sym_STAR, - ACTIONS(1006), 1, - anon_sym_RBRACK, - STATE(883), 1, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1066), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(884), 1, + STATE(1157), 1, sym_string, - STATE(1423), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2099), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - STATE(2206), 1, - sym__collection_elements, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1853), 3, + STATE(2274), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(729), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35521,8 +37456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35538,65 +37472,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9064] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(633), 1, + sym_await, + [9582] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(950), 1, anon_sym_STAR, ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1068), 1, anon_sym_RPAREN, - STATE(863), 1, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1431), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(1816), 1, - sym_list_splat, - STATE(1817), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(1919), 1, - sym_yield, - STATE(2048), 1, - sym__collection_elements, - STATE(2123), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35604,8 +37540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35621,64 +37556,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9173] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(633), 1, + sym_await, + [9691] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(864), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(950), 1, anon_sym_STAR, - ACTIONS(1004), 1, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1070), 1, anon_sym_RPAREN, - STATE(863), 1, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1417), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(1875), 1, - sym_yield, - STATE(2077), 1, - sym__collection_elements, - STATE(2123), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - STATE(1847), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35686,8 +37624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35703,61 +37640,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9280] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [9800] = 25, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(611), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(956), 1, anon_sym_lambda, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(1008), 1, - anon_sym_from, - STATE(836), 1, + ACTIONS(1072), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(844), 1, + STATE(1157), 1, sym_string, - STATE(1446), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(1701), 1, - sym_expression_list, - STATE(2217), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(621), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1010), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1480), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35765,8 +37708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35782,63 +37724,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9381] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [9909] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(1012), 1, + ACTIONS(1074), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35846,8 +37792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35863,63 +37808,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9486] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [10018] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(1014), 1, + ACTIONS(1076), 1, anon_sym_RPAREN, - STATE(912), 1, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35927,8 +37876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35944,63 +37892,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9591] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [10127] = 26, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(1016), 1, + ACTIONS(1026), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1622), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1741), 1, sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2146), 1, + sym_yield, + STATE(2413), 1, + sym__collection_elements, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(680), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36008,8 +37961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36025,63 +37977,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9696] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [10238] = 25, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(790), 1, anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_STAR_STAR, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, + anon_sym_yield, + ACTIONS(1002), 1, anon_sym_LPAREN, - ACTIONS(896), 1, - anon_sym_await, - ACTIONS(1018), 1, - anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(1078), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1622), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1739), 1, sym_expression, - STATE(2014), 1, - sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2359), 1, + sym__collection_elements, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2258), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(894), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(710), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36089,8 +38045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36106,61 +38061,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9801] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [10347] = 26, + ACTIONS(658), 1, sym_identifier, - ACTIONS(707), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(780), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, + anon_sym_STAR, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(888), 1, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(1020), 1, + ACTIONS(996), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1651), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1748), 1, sym_expression, - STATE(2035), 1, + STATE(2125), 1, + sym_yield, + STATE(2397), 1, + sym__collection_elements, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2019), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(705), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36168,8 +38130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36185,61 +38146,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9903] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [10458] = 25, + ACTIONS(690), 1, sym_identifier, - ACTIONS(609), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(611), 1, - anon_sym_not, - ACTIONS(615), 1, - anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(812), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(790), 1, + anon_sym_STAR, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(802), 1, anon_sym_yield, - ACTIONS(1022), 1, + ACTIONS(1002), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, - anon_sym_STAR, - ACTIONS(1026), 1, - anon_sym_RBRACE, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + ACTIONS(1080), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1676), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1758), 1, sym_expression, - STATE(2217), 1, + STATE(2410), 1, + sym__collection_elements, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1992), 3, + STATE(2258), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(607), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36247,8 +38214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36264,61 +38230,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10005] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - sym_identifier, - ACTIONS(609), 1, + sym_await, + [10567] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(611), 1, - anon_sym_not, - ACTIONS(615), 1, - anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(812), 1, - anon_sym_yield, - ACTIONS(1020), 1, - anon_sym_RBRACE, - ACTIONS(1022), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(950), 1, anon_sym_STAR, - STATE(836), 1, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1082), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(844), 1, + STATE(1157), 1, sym_string, - STATE(1676), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2217), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1992), 3, + STATE(2274), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(607), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(621), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36326,8 +38298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36343,61 +38314,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10107] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + sym_await, + [10676] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(870), 1, - anon_sym_STAR, - ACTIONS(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, anon_sym_STAR_STAR, - ACTIONS(886), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(958), 1, anon_sym_await, - STATE(912), 1, + ACTIONS(1084), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1622), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2014), 1, + STATE(2271), 1, sym_parenthesized_list_splat, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2013), 3, + STATE(2274), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(894), 4, + ACTIONS(952), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36405,8 +38382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36422,61 +38398,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10209] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [10785] = 27, + ACTIONS(658), 1, sym_identifier, - ACTIONS(683), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(764), 1, - anon_sym_yield, - ACTIONS(924), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, anon_sym_STAR, - ACTIONS(1020), 1, - anon_sym_RBRACK, - ACTIONS(1028), 1, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(928), 1, anon_sym_LPAREN, - STATE(989), 1, + ACTIONS(1014), 1, + anon_sym_RPAREN, + STATE(1095), 1, sym_string, - STATE(992), 1, + STATE(1101), 1, sym_primary_expression, - STATE(1635), 1, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1738), 1, sym_expression, - STATE(2073), 1, + STATE(2100), 1, + sym_yield, + STATE(2130), 1, + sym_parenthesized_list_splat, + STATE(2131), 1, + sym_list_splat, + STATE(2484), 1, + sym__collection_elements, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2020), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(681), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36484,8 +38468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36501,61 +38484,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10311] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [10898] = 27, + ACTIONS(658), 1, sym_identifier, - ACTIONS(707), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(780), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(812), 1, + anon_sym_STAR, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(888), 1, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(1026), 1, + ACTIONS(1056), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1651), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1742), 1, sym_expression, - STATE(2035), 1, + STATE(2130), 1, + sym_parenthesized_list_splat, + STATE(2131), 1, + sym_list_splat, + STATE(2259), 1, + sym_yield, + STATE(2427), 1, + sym__collection_elements, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2019), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(705), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36563,8 +38554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36580,61 +38570,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10413] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(683), 1, + sym_await, + [11011] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(956), 1, anon_sym_lambda, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(764), 1, - anon_sym_yield, - ACTIONS(924), 1, - anon_sym_STAR, - ACTIONS(1026), 1, - anon_sym_RBRACK, - ACTIONS(1028), 1, - anon_sym_LPAREN, - STATE(989), 1, - sym_string, - STATE(992), 1, + ACTIONS(1086), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(1635), 1, + STATE(1157), 1, + sym_string, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2073), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2020), 3, + STATE(2274), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(695), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36642,8 +38638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36659,59 +38654,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10515] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(683), 1, + sym_await, + [11120] = 25, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(956), 1, anon_sym_lambda, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(764), 1, - anon_sym_yield, - ACTIONS(924), 1, - anon_sym_STAR, - ACTIONS(1028), 1, - anon_sym_LPAREN, - STATE(989), 1, - sym_string, - STATE(992), 1, + ACTIONS(1088), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(1635), 1, + STATE(1157), 1, + sym_string, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2073), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2020), 3, + STATE(2274), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(695), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36719,8 +38722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36736,61 +38738,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10614] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(285), 1, + sym_await, + [11229] = 25, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(956), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1030), 1, - anon_sym_if, - ACTIONS(1032), 1, - anon_sym_COLON, - STATE(874), 1, + ACTIONS(1090), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(875), 1, + STATE(1157), 1, sym_string, - STATE(1685), 1, - sym_expression, - STATE(1879), 1, + STATE(1516), 1, sym_list_splat_pattern, - STATE(2062), 1, - sym_if_clause, - STATE(2190), 1, + STATE(1907), 1, + sym_expression, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36798,8 +38806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36815,57 +38822,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10717] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [11338] = 25, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(611), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(956), 1, anon_sym_lambda, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, + ACTIONS(1092), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(844), 1, + STATE(1157), 1, sym_string, - STATE(1482), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2217), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(621), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1034), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1480), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36873,8 +38890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36890,59 +38906,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10812] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [11447] = 26, + ACTIONS(658), 1, sym_identifier, - ACTIONS(609), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(611), 1, - anon_sym_not, - ACTIONS(615), 1, - anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, + ACTIONS(684), 1, + sym_string_start, ACTIONS(812), 1, + anon_sym_STAR, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(822), 1, anon_sym_yield, - ACTIONS(1022), 1, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, - anon_sym_STAR, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + ACTIONS(1094), 1, + anon_sym_RPAREN, + STATE(1095), 1, sym_string, - STATE(1676), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1737), 1, sym_expression, - STATE(2217), 1, + STATE(2149), 1, + sym_yield, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + STATE(2505), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + STATE(2136), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1992), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(607), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36950,8 +38975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36967,59 +38991,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10911] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [11558] = 25, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(659), 1, - anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, anon_sym_not, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(1038), 1, + ACTIONS(956), 1, anon_sym_lambda, - ACTIONS(1040), 1, - anon_sym_RBRACE, - STATE(839), 1, + ACTIONS(958), 1, + anon_sym_await, + ACTIONS(1096), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(841), 1, + STATE(1157), 1, sym_string, - STATE(1538), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2053), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - STATE(1732), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(657), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(663), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1036), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(671), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37027,8 +39059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37044,59 +39075,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11010] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [11667] = 24, + ACTIONS(690), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(669), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(1038), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1102), 1, + anon_sym_RBRACK, + ACTIONS(1104), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + STATE(1058), 1, sym_string, - STATE(1538), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1817), 1, sym_expression, - STATE(2053), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(1732), 2, + STATE(2025), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(657), 3, + ACTIONS(696), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(663), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1042), 3, + ACTIONS(1100), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(671), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37104,8 +39141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37121,59 +39157,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11109] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [11773] = 24, + ACTIONS(658), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(741), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(1048), 1, - anon_sym_RBRACK, - ACTIONS(1050), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(1106), 1, + anon_sym_RPAREN, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + STATE(1095), 1, sym_string, - STATE(1555), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1834), 1, sym_expression, - STATE(2099), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1709), 2, + STATE(1992), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(729), 3, + ACTIONS(664), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(735), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1046), 3, + ACTIONS(1110), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(743), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37181,8 +39223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37198,59 +39239,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11208] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [11879] = 24, + ACTIONS(716), 1, sym_identifier, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(1048), 1, - anon_sym_RPAREN, - ACTIONS(1052), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(944), 1, + anon_sym_LPAREN, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, anon_sym_lambda, - STATE(863), 1, + ACTIONS(1114), 1, + anon_sym_RPAREN, + ACTIONS(1116), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1546), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1927), 1, sym_expression, - STATE(2123), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - STATE(1727), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(631), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1046), 3, - anon_sym_if, + STATE(2311), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(722), 4, + anon_sym_print, + anon_sym_match, anon_sym_async, - anon_sym_for, - ACTIONS(647), 4, + anon_sym_exec, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37258,8 +39305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37275,59 +39321,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11307] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [11985] = 24, + ACTIONS(690), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(669), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(1038), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1104), 1, anon_sym_lambda, - ACTIONS(1056), 1, - anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(1120), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1538), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1817), 1, sym_expression, - STATE(2053), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(1732), 2, + STATE(2025), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(657), 3, + ACTIONS(696), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(663), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1054), 3, + ACTIONS(1118), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(671), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37335,8 +39387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37352,61 +39403,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11406] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(285), 1, + sym_await, + [12091] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1030), 1, - anon_sym_if, - ACTIONS(1058), 1, - anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(802), 1, + anon_sym_yield, + ACTIONS(1114), 1, + anon_sym_RBRACK, + ACTIONS(1122), 1, + anon_sym_LPAREN, + ACTIONS(1124), 1, + anon_sym_STAR, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + STATE(1132), 1, sym_string, - STATE(1685), 1, - sym_expression, - STATE(1879), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, sym_list_splat_pattern, - STATE(2103), 1, - sym_if_clause, - STATE(2190), 1, + STATE(1962), 1, + sym_expression, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + STATE(2321), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37414,8 +39469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37431,134 +39485,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11509] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [12197] = 22, + ACTIONS(606), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(741), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(1044), 1, - anon_sym_RBRACK, - ACTIONS(1050), 1, - anon_sym_lambda, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, - sym_string, - STATE(1555), 1, - sym_expression, - STATE(2099), 1, - sym__named_expression_lhs, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - STATE(1709), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(729), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1042), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(743), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1520), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [11608] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - sym_identifier, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(611), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(922), 1, anon_sym_lambda, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + STATE(1032), 1, sym_string, - STATE(1482), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1788), 1, sym_expression, - STATE(2217), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1060), 5, + ACTIONS(1130), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - STATE(1480), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37566,8 +39549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37583,59 +39565,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11703] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [12299] = 24, + ACTIONS(606), 1, sym_identifier, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(645), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(1040), 1, - anon_sym_RPAREN, - ACTIONS(1052), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(782), 1, + anon_sym_yield, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, anon_sym_lambda, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(1114), 1, + anon_sym_RBRACE, + ACTIONS(1132), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, + anon_sym_STAR, + STATE(1032), 1, sym_string, - STATE(1546), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1939), 1, sym_expression, - STATE(2123), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - STATE(1727), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(631), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(639), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1036), 3, - anon_sym_if, + STATE(2283), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(612), 4, + anon_sym_print, + anon_sym_match, anon_sym_async, - anon_sym_for, - ACTIONS(647), 4, + anon_sym_exec, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37643,8 +39631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37660,59 +39647,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11802] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [12405] = 24, + ACTIONS(658), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(645), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(1044), 1, - anon_sym_RPAREN, - ACTIONS(1052), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(1120), 1, + anon_sym_RPAREN, + STATE(1095), 1, sym_string, - STATE(1546), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1834), 1, sym_expression, - STATE(2123), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1727), 2, + STATE(1992), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(631), 3, + ACTIONS(664), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(639), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1042), 3, + ACTIONS(1118), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(647), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37720,8 +39713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37737,61 +39729,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11901] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(285), 1, + sym_await, + [12511] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1030), 1, - anon_sym_if, - ACTIONS(1062), 1, - anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(802), 1, + anon_sym_yield, + ACTIONS(1122), 1, + anon_sym_LPAREN, + ACTIONS(1124), 1, + anon_sym_STAR, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1136), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1685), 1, - sym_expression, - STATE(1879), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, sym_list_splat_pattern, - STATE(2155), 1, - sym_if_clause, - STATE(2190), 1, + STATE(1962), 1, + sym_expression, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + STATE(2321), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37799,8 +39795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37816,61 +39811,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12004] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(285), 1, + sym_await, + [12617] = 24, + ACTIONS(606), 1, sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1030), 1, - anon_sym_if, - ACTIONS(1064), 1, - anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(782), 1, + anon_sym_yield, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + ACTIONS(1132), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, + anon_sym_STAR, + ACTIONS(1136), 1, + anon_sym_RBRACE, + STATE(1032), 1, sym_string, - STATE(1685), 1, - sym_expression, - STATE(1879), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, sym_list_splat_pattern, - STATE(2190), 1, + STATE(1939), 1, + sym_expression, + STATE(2363), 1, sym__named_expression_lhs, - STATE(2225), 1, - sym_if_clause, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + STATE(2283), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37878,8 +39877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37895,59 +39893,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12107] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [12723] = 24, + ACTIONS(632), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(741), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(1040), 1, - anon_sym_RBRACK, - ACTIONS(1050), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(1102), 1, + anon_sym_RBRACE, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1140), 1, anon_sym_lambda, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + STATE(1037), 1, sym_string, - STATE(1555), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1810), 1, sym_expression, - STATE(2099), 1, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - STATE(1709), 2, + STATE(2017), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(729), 3, + ACTIONS(638), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(735), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1036), 3, + ACTIONS(1100), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(743), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37955,8 +39959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37972,61 +39975,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12206] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(285), 1, + sym_await, + [12829] = 24, + ACTIONS(716), 1, sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1030), 1, - anon_sym_if, - ACTIONS(1066), 1, - anon_sym_COLON, - STATE(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(822), 1, + anon_sym_yield, + ACTIONS(944), 1, + anon_sym_LPAREN, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1116), 1, + anon_sym_STAR, + ACTIONS(1136), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(875), 1, + STATE(1157), 1, sym_string, - STATE(1685), 1, - sym_expression, - STATE(1879), 1, + STATE(1516), 1, sym_list_splat_pattern, - STATE(2161), 1, - sym_if_clause, - STATE(2190), 1, + STATE(1927), 1, + sym_expression, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + STATE(2311), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38034,8 +40041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38051,59 +40057,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12309] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [12935] = 24, + ACTIONS(632), 1, sym_identifier, - ACTIONS(707), 1, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(780), 1, - anon_sym_yield, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(1138), 1, anon_sym_STAR, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(1140), 1, + anon_sym_lambda, + ACTIONS(1144), 1, + anon_sym_RBRACE, + STATE(1037), 1, sym_string, - STATE(1651), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1810), 1, sym_expression, - STATE(2035), 1, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + STATE(2017), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(638), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2019), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(705), 4, - anon_sym_print, - anon_sym_match, + ACTIONS(1142), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(719), 4, + anon_sym_for, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38111,8 +40123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38128,59 +40139,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12408] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [13041] = 24, + ACTIONS(632), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(741), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(1050), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(1106), 1, + anon_sym_RBRACE, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1140), 1, anon_sym_lambda, - ACTIONS(1056), 1, - anon_sym_RBRACK, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + STATE(1037), 1, sym_string, - STATE(1555), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1810), 1, sym_expression, - STATE(2099), 1, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - STATE(1709), 2, + STATE(2017), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(729), 3, + ACTIONS(638), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(735), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1054), 3, + ACTIONS(1110), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(743), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38188,8 +40205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38205,59 +40221,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12507] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [13147] = 24, + ACTIONS(632), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(669), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(1038), 1, - anon_sym_lambda, - ACTIONS(1048), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(1120), 1, anon_sym_RBRACE, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1140), 1, + anon_sym_lambda, + STATE(1037), 1, sym_string, - STATE(1538), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1810), 1, sym_expression, - STATE(2053), 1, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - STATE(1732), 2, + STATE(2017), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(657), 3, + ACTIONS(638), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(663), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1046), 3, + ACTIONS(1118), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(671), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38265,8 +40287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38282,61 +40303,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12606] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(285), 1, + sym_await, + [13253] = 24, + ACTIONS(690), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1030), 1, - anon_sym_if, - ACTIONS(1068), 1, - anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1104), 1, + anon_sym_lambda, + ACTIONS(1144), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1685), 1, - sym_expression, - STATE(1879), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, sym_list_splat_pattern, - STATE(2162), 1, - sym_if_clause, - STATE(2190), 1, + STATE(1817), 1, + sym_expression, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + STATE(2025), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(696), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, + ACTIONS(1142), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + anon_sym_for, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38344,8 +40369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38361,59 +40385,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12709] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [13359] = 24, + ACTIONS(658), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(645), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(1052), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1056), 1, + ACTIONS(1144), 1, anon_sym_RPAREN, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + STATE(1095), 1, sym_string, - STATE(1546), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1834), 1, sym_expression, - STATE(2123), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1727), 2, + STATE(1992), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(631), 3, + ACTIONS(664), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(639), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1054), 3, + ACTIONS(1142), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(647), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38421,8 +40451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38438,121 +40467,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12808] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(1070), 1, - anon_sym_for, - ACTIONS(1072), 1, - anon_sym_with, - ACTIONS(1074), 1, - anon_sym_def, - ACTIONS(279), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(281), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(268), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(266), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, + sym_await, + [13465] = 24, + ACTIONS(724), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [12882] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(938), 1, + anon_sym_STAR_STAR, + ACTIONS(942), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(944), 1, anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(611), 1, + ACTIONS(950), 1, + anon_sym_STAR, + ACTIONS(954), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(956), 1, anon_sym_lambda, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(958), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(812), 1, - anon_sym_yield, - STATE(836), 1, + STATE(1152), 1, sym_primary_expression, - STATE(844), 1, + STATE(1157), 1, sym_string, - STATE(1459), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1907), 1, sym_expression, - STATE(2217), 1, + STATE(2271), 1, + sym_parenthesized_list_splat, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1734), 3, - sym_expression_list, - sym_yield, - sym__f_expression, - ACTIONS(607), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(621), 4, + STATE(2274), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + ACTIONS(952), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38560,8 +40533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38577,58 +40549,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12978] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [13571] = 24, + ACTIONS(658), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(1076), 1, - anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(1102), 1, + anon_sym_RPAREN, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1112), 1, + anon_sym_lambda, + STATE(1095), 1, sym_string, - STATE(1726), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1834), 1, sym_expression, - STATE(2190), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1996), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(297), 3, + STATE(1992), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(664), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, + ACTIONS(1100), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + anon_sym_for, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38636,8 +40615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38653,58 +40631,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13076] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [13677] = 22, + ACTIONS(606), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(1078), 1, - anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + STATE(1032), 1, sym_string, - STATE(1726), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1788), 1, sym_expression, - STATE(2190), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - STATE(1996), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(297), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(1146), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38712,8 +40695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38729,58 +40711,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13174] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [13779] = 24, + ACTIONS(690), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(1080), 1, - anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1104), 1, + anon_sym_lambda, + ACTIONS(1106), 1, + anon_sym_RBRACK, + STATE(1058), 1, sym_string, - STATE(1726), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1817), 1, sym_expression, - STATE(2190), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(1996), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(297), 3, + STATE(2025), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(696), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, + ACTIONS(1110), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + anon_sym_for, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38788,8 +40777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38805,58 +40793,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13272] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [13885] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, anon_sym_STAR_STAR, - ACTIONS(1082), 1, + ACTIONS(1148), 1, anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1071), 1, sym_string, - STATE(1726), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1996), 2, + STATE(2333), 2, sym_dictionary_splat, sym_pair, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38864,8 +40858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38881,58 +40874,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13370] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [13990] = 24, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - ACTIONS(1084), 1, - anon_sym_from, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(1150), 1, + anon_sym_RBRACE, + STATE(1071), 1, sym_string, - STATE(1503), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2005), 1, - sym_expression_list, - STATE(2184), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(1010), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(63), 3, + STATE(2333), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38940,8 +40939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38957,57 +40955,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13468] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [14095] = 23, + ACTIONS(716), 1, sym_identifier, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(611), 1, - anon_sym_not, - ACTIONS(615), 1, - anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(812), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(822), 1, anon_sym_yield, - STATE(836), 1, + ACTIONS(944), 1, + anon_sym_LPAREN, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1116), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(844), 1, + STATE(1157), 1, sym_string, - STATE(1459), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1927), 1, sym_expression, - STATE(2217), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1708), 3, - sym_expression_list, + STATE(2311), 3, + sym_list_splat, + sym_parenthesized_list_splat, sym_yield, - sym__f_expression, - ACTIONS(607), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39015,8 +41019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39032,58 +41035,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13564] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [14198] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, anon_sym_STAR_STAR, - ACTIONS(1086), 1, + ACTIONS(1152), 1, anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1071), 1, sym_string, - STATE(1726), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1996), 2, + STATE(2333), 2, sym_dictionary_splat, sym_pair, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39091,8 +41100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39108,58 +41116,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13662] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [14303] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, anon_sym_STAR_STAR, - ACTIONS(1088), 1, + ACTIONS(1154), 1, anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1071), 1, sym_string, - STATE(1726), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1996), 2, + STATE(2333), 2, sym_dictionary_splat, sym_pair, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39167,8 +41181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39184,58 +41197,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13760] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, + sym_await, + [14408] = 24, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(1090), 1, - anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1158), 1, + anon_sym_from, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1726), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1787), 1, sym_expression, - STATE(2190), 1, + STATE(2180), 1, + sym_expression_list, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1996), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(297), 3, + ACTIONS(1156), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39243,8 +41262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39260,58 +41278,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13858] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [14513] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(1092), 1, - anon_sym_from, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(1162), 1, + anon_sym_RBRACE, + STATE(1071), 1, sym_string, - STATE(1596), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2024), 1, - sym_expression_list, - STATE(2035), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(1010), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(711), 3, + STATE(2333), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39319,8 +41343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39336,58 +41359,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13956] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [14618] = 24, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - ACTIONS(1096), 1, - anon_sym_from, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(1164), 1, + anon_sym_RBRACE, + STATE(1071), 1, sym_string, - STATE(1476), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(1916), 1, - sym_expression_list, - STATE(2184), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(1094), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(63), 3, + STATE(2333), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39395,8 +41424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39412,58 +41440,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14054] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [14723] = 24, + ACTIONS(716), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(1098), 1, - anon_sym_RBRACE, - STATE(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1166), 1, + anon_sym_from, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(875), 1, + STATE(1157), 1, sym_string, - STATE(1726), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1879), 1, sym_expression, - STATE(2190), 1, + STATE(2302), 1, + sym_expression_list, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - STATE(1996), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(297), 3, + ACTIONS(1000), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39471,8 +41505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39488,58 +41521,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14152] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [14828] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(1100), 1, - anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1170), 1, + anon_sym_from, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(1726), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1873), 1, sym_expression, - STATE(2190), 1, + STATE(2289), 1, + sym_expression_list, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1996), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(297), 3, + ACTIONS(1000), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39547,8 +41586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39564,67 +41602,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14250] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, + sym_await, + [14933] = 24, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(1102), 1, - anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1174), 1, + anon_sym_from, + STATE(1034), 1, sym_string, - STATE(1726), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1823), 1, sym_expression, - STATE(2190), 1, + STATE(2293), 1, + sym_expression_list, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1996), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(297), 3, + ACTIONS(1000), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, - sym_named_expression, - sym_as_pattern, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39640,58 +41683,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14348] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [15038] = 23, + ACTIONS(606), 1, sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(1104), 1, - anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(782), 1, + anon_sym_yield, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + ACTIONS(1132), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, + anon_sym_STAR, + STATE(1032), 1, sym_string, - STATE(1726), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1939), 1, sym_expression, - STATE(2190), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - STATE(1996), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(297), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + STATE(2283), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39699,8 +41747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39716,58 +41763,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14446] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [15141] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, anon_sym_STAR_STAR, - ACTIONS(1106), 1, + ACTIONS(1176), 1, anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1071), 1, sym_string, - STATE(1726), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1996), 2, + STATE(2333), 2, sym_dictionary_splat, sym_pair, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39775,8 +41828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39792,58 +41844,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14544] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [15246] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1178), 1, anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1071), 1, sym_string, - STATE(1726), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1996), 2, + STATE(2333), 2, sym_dictionary_splat, sym_pair, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39851,8 +41909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39868,58 +41925,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14642] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [15351] = 23, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - ACTIONS(1110), 1, - anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(802), 1, + anon_sym_yield, + ACTIONS(1122), 1, + anon_sym_LPAREN, + ACTIONS(1124), 1, + anon_sym_STAR, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + STATE(1132), 1, sym_string, - STATE(1726), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1962), 1, sym_expression, - STATE(2190), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1996), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + STATE(2321), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39927,8 +41989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39944,122 +42005,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14740] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(1112), 1, - anon_sym_for, - ACTIONS(1114), 1, - anon_sym_with, - ACTIONS(1116), 1, - anon_sym_def, - ACTIONS(279), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(281), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(268), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(266), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [14814] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [15454] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, anon_sym_STAR_STAR, - ACTIONS(1118), 1, + ACTIONS(1180), 1, anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1071), 1, sym_string, - STATE(1726), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1996), 2, + STATE(2333), 2, sym_dictionary_splat, sym_pair, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40067,8 +42070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40084,58 +42086,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14912] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [15559] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, anon_sym_STAR_STAR, - ACTIONS(1120), 1, + ACTIONS(1182), 1, anon_sym_RBRACE, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1071), 1, sym_string, - STATE(1726), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1996), 2, + STATE(2333), 2, sym_dictionary_splat, sym_pair, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40143,8 +42151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40160,58 +42167,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15010] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [15664] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1122), 1, - anon_sym_from, - STATE(989), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(1184), 1, + anon_sym_RBRACE, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1607), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2010), 1, - sym_expression_list, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(1010), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(687), 3, + STATE(2333), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40219,8 +42232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40236,57 +42248,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15108] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [15769] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - ACTIONS(1126), 1, - anon_sym_RBRACK, - STATE(989), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(1186), 1, + anon_sym_RBRACE, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2016), 1, - sym_slice, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + STATE(2333), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40294,8 +42313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40311,57 +42329,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15205] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [15874] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - ACTIONS(1128), 1, - anon_sym_RBRACK, - STATE(989), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(1188), 1, + anon_sym_RBRACE, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2016), 1, - sym_slice, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + STATE(2333), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40369,8 +42394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40386,56 +42410,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15302] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [15979] = 24, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - ACTIONS(1130), 1, - anon_sym_from, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(1190), 1, + anon_sym_RBRACE, + STATE(1071), 1, sym_string, - STATE(1543), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2184), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(1034), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(63), 3, + STATE(2333), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40443,8 +42475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40460,57 +42491,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15397] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [16084] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - ACTIONS(1132), 1, - anon_sym_RBRACK, - STATE(989), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(1192), 1, + anon_sym_RBRACE, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2016), 1, - sym_slice, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + STATE(2333), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40518,8 +42556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40535,57 +42572,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15494] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [16189] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - ACTIONS(1134), 1, - anon_sym_RBRACK, - STATE(989), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + ACTIONS(1194), 1, + anon_sym_RBRACE, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2016), 1, - sym_slice, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + STATE(2333), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40593,8 +42637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40610,57 +42653,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15591] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [16294] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1136), 1, + ACTIONS(1198), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40668,8 +42717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40685,56 +42733,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15688] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [16398] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(810), 1, - anon_sym_STAR_STAR, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1200), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1726), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2190), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1996), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40742,8 +42797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40759,57 +42813,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15783] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [16502] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1138), 1, + ACTIONS(1202), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40817,8 +42877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40834,57 +42893,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15880] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [16606] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1206), 1, + anon_sym_if, + ACTIONS(1208), 1, anon_sym_COLON, - ACTIONS(1140), 1, - anon_sym_RBRACK, - STATE(989), 1, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1918), 1, sym_expression, - STATE(2016), 1, - sym_slice, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + STATE(2527), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40892,8 +42957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40909,57 +42973,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [15977] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [16710] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1142), 1, + ACTIONS(1210), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40967,8 +43037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40984,57 +43053,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16074] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [16814] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1144), 1, + ACTIONS(1212), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41042,8 +43117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41059,57 +43133,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16171] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [16918] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1146), 1, + ACTIONS(1214), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41117,8 +43197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41134,56 +43213,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16268] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [17022] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1150), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1206), 1, + anon_sym_if, + ACTIONS(1216), 1, anon_sym_COLON, - STATE(989), 1, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1613), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1918), 1, sym_expression, - STATE(2073), 1, + STATE(2372), 1, + sym_if_clause, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(1148), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(687), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41191,8 +43277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41208,57 +43293,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16363] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [17126] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1152), 1, + ACTIONS(1218), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41266,8 +43357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41283,57 +43373,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16460] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [17230] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1154), 1, + ACTIONS(1220), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41341,8 +43437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41358,57 +43453,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16557] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [17334] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1156), 1, + ACTIONS(1222), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41416,8 +43517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41433,57 +43533,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16654] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [17438] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1206), 1, + anon_sym_if, + ACTIONS(1224), 1, anon_sym_COLON, - ACTIONS(1158), 1, - anon_sym_RBRACK, - STATE(989), 1, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1918), 1, sym_expression, - STATE(2016), 1, - sym_slice, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + STATE(2457), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41491,8 +43597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41508,56 +43613,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16751] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [17542] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1162), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - STATE(989), 1, + ACTIONS(1226), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1563), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2073), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1160), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41565,8 +43677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41582,57 +43693,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16846] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [17646] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1164), 1, + ACTIONS(1228), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41640,8 +43757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41657,57 +43773,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16943] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [17750] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1166), 1, + ACTIONS(1230), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41715,8 +43837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41732,57 +43853,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17040] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [17854] = 24, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1206), 1, + anon_sym_if, + ACTIONS(1232), 1, anon_sym_COLON, - ACTIONS(1168), 1, - anon_sym_RBRACK, - STATE(989), 1, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1918), 1, sym_expression, - STATE(2016), 1, - sym_slice, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + STATE(2453), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41790,8 +43917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41807,57 +43933,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17137] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [17958] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1170), 1, + ACTIONS(1234), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41865,8 +43997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41882,57 +44013,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17234] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [18062] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1236), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41940,8 +44077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41957,118 +44093,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17331] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(1174), 1, - sym__string_start, - STATE(1950), 1, - sym_string, - ACTIONS(279), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(281), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(268), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(266), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + sym_await, + [18166] = 24, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, + ACTIONS(750), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [17402] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - ACTIONS(1176), 1, - anon_sym_from, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1238), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1543), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2184), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1060), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(63), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(762), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42076,8 +44157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42093,57 +44173,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17497] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [18270] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1178), 1, + ACTIONS(1240), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42151,8 +44237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42168,57 +44253,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17594] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(685), 1, + sym_await, + [18374] = 23, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - ACTIONS(1180), 1, - anon_sym_RBRACK, - STATE(989), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_from, + STATE(1034), 1, sym_string, - STATE(992), 1, + STATE(1036), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1816), 1, sym_expression, - STATE(2016), 1, - sym_slice, - STATE(2073), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(1146), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42226,8 +44316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42243,57 +44332,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17691] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [18476] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1182), 1, + ACTIONS(1244), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42301,8 +44396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42318,57 +44412,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17788] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [18580] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1184), 1, + ACTIONS(1246), 1, anon_sym_RBRACK, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2016), 1, + STATE(2273), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42376,8 +44476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42393,57 +44492,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17885] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [18684] = 23, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(318), 1, + anon_sym_STAR, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - ACTIONS(1186), 1, - anon_sym_RBRACK, - STATE(989), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(776), 1, + anon_sym_STAR_STAR, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2000), 1, sym_expression, - STATE(2016), 1, - sym_slice, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + STATE(2333), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42451,8 +44555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42468,56 +44571,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17982] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + sym_await, + [18786] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_await, - ACTIONS(311), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1248), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1534), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2032), 1, - sym_expression_list, - STATE(2184), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1188), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(63), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(762), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42525,8 +44635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42542,176 +44651,143 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18077] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - ACTIONS(1196), 1, - anon_sym_except_STAR, - ACTIONS(1198), 1, - anon_sym_finally, - STATE(658), 1, - sym_else_clause, - STATE(808), 1, - sym_finally_clause, - STATE(484), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1190), 12, - sym__string_start, - ts_builtin_sym_end, + sym_await, + [18890] = 24, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(750), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(760), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1192), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, anon_sym_not, + ACTIONS(1128), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18147] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - ACTIONS(1198), 1, - anon_sym_finally, - ACTIONS(1204), 1, - anon_sym_except, - STATE(668), 1, - sym_else_clause, - STATE(769), 1, - sym_finally_clause, - STATE(483), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1200), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1172), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_RBRACK, + STATE(1132), 1, + sym_string, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, + sym_expression, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1202), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(748), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(762), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [18217] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18994] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(741), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(1050), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_lambda, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1252), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1542), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2099), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1712), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(735), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42719,8 +44795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42736,55 +44811,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18309] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(285), 1, + sym_await, + [19098] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1254), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1685), 1, - sym_expression, - STATE(1879), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, sym_list_splat_pattern, - STATE(2190), 1, + STATE(1895), 1, + sym_expression, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42792,8 +44875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42809,54 +44891,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18403] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [19202] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(669), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(1038), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_lambda, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1256), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1509), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2053), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1729), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(663), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42864,8 +44955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42881,55 +44971,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18495] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [19306] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1206), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(1258), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1642), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(1991), 1, - sym_with_item, - STATE(2190), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42937,8 +45035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42954,54 +45051,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18589] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + sym_await, + [19410] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_await, - ACTIONS(311), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1260), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1559), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2184), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1208), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(63), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(762), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43009,8 +45115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43026,54 +45131,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18681] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [19514] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(741), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(1050), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_lambda, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1262), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1555), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2099), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1663), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(735), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43081,8 +45195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43098,54 +45211,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18773] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + sym_await, + [19618] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_await, - ACTIONS(311), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1264), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1559), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2184), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1210), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(63), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(762), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43153,8 +45275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43170,55 +45291,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18865] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, + sym_await, + [19722] = 23, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1266), 1, + anon_sym_from, + STATE(1034), 1, sym_string, - STATE(1508), 1, - sym_expression, - STATE(1738), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, sym_list_splat_pattern, - STATE(2190), 1, + STATE(1816), 1, + sym_expression, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(1130), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43226,8 +45354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43243,54 +45370,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18959] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [19824] = 23, + ACTIONS(742), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(741), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(1050), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_lambda, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1270), 1, + anon_sym_COLON, + STATE(1132), 1, sym_string, - STATE(1552), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1891), 1, sym_expression, - STATE(2099), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1722), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(735), 3, + ACTIONS(1268), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43298,8 +45433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43315,55 +45449,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19051] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, + sym_await, + [19926] = 23, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1212), 1, + ACTIONS(302), 1, anon_sym_LPAREN, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1642), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1832), 1, sym_expression, - STATE(1936), 1, - sym_with_item, - STATE(2124), 1, - sym_with_clause, - STATE(2190), 1, + STATE(2318), 1, + sym_expression_list, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(1272), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43371,8 +45512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43388,55 +45528,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19145] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [20028] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(291), 1, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1212), 1, - anon_sym_LPAREN, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1274), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1642), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(1936), 1, - sym_with_item, - STATE(2126), 1, - sym_with_clause, - STATE(2190), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43444,8 +45592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43461,55 +45608,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19239] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(285), 1, + sym_await, + [20132] = 23, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1278), 1, + anon_sym_COLON, + STATE(1132), 1, sym_string, - STATE(1540), 1, - sym_expression, - STATE(1736), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, sym_list_splat_pattern, - STATE(2190), 1, + STATE(1896), 1, + sym_expression, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(1276), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43517,8 +45671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43534,54 +45687,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19333] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [20234] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(645), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(1052), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_lambda, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1280), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1548), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2123), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1723), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(639), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43589,8 +45751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43606,54 +45767,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19425] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [20338] = 24, + ACTIONS(742), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(645), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(1052), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_lambda, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + ACTIONS(1282), 1, + anon_sym_RBRACK, + STATE(1132), 1, sym_string, - STATE(1546), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2123), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1727), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(639), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43661,8 +45831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43678,54 +45847,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19517] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(685), 1, + sym_await, + [20442] = 22, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(992), 1, + STATE(1036), 1, sym_primary_expression, - STATE(1679), 1, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1866), 1, sym_expression, - STATE(2073), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(1160), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(687), 3, + ACTIONS(1284), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43733,8 +45908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43750,55 +45924,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19609] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [20541] = 22, + ACTIONS(690), 1, sym_identifier, - ACTIONS(291), 1, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1212), 1, - anon_sym_LPAREN, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1104), 1, + anon_sym_lambda, + STATE(1058), 1, sym_string, - STATE(1642), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1801), 1, sym_expression, - STATE(1936), 1, - sym_with_item, - STATE(2120), 1, - sym_with_clause, - STATE(2190), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + STATE(1969), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43806,8 +45985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43823,55 +46001,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19703] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [20640] = 22, + ACTIONS(690), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - STATE(989), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1104), 1, + anon_sym_lambda, + STATE(1058), 1, sym_string, - STATE(992), 1, + STATE(1063), 1, sym_primary_expression, - STATE(1556), 1, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1804), 1, sym_expression, - STATE(1850), 1, - sym_slice, - STATE(2073), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + STATE(1987), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43879,8 +46062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43896,54 +46078,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19797] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [20739] = 23, + ACTIONS(314), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(645), 1, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(1052), 1, - anon_sym_lambda, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1286), 1, + anon_sym_COLON, + STATE(1071), 1, sym_string, - STATE(1546), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1938), 1, sym_expression, - STATE(2123), 1, + STATE(2270), 1, + sym_with_item, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1631), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(639), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43951,8 +46140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43968,55 +46156,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19889] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [20840] = 23, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1533), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1844), 1, sym_expression, - STATE(1905), 1, + STATE(2210), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44024,8 +46218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44041,54 +46234,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19983] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [20941] = 22, + ACTIONS(716), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(992), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(1657), 1, + STATE(1157), 1, + sym_string, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1963), 1, sym_expression, - STATE(2073), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(1034), 2, + ACTIONS(1146), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(687), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44096,8 +46295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44113,55 +46311,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20075] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [21040] = 22, + ACTIONS(632), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - STATE(989), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1140), 1, + anon_sym_lambda, + STATE(1037), 1, sym_string, - STATE(992), 1, + STATE(1038), 1, sym_primary_expression, - STATE(1517), 1, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1810), 1, sym_expression, - STATE(1941), 1, - sym_slice, - STATE(2073), 1, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + STATE(1930), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44169,8 +46372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44186,54 +46388,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20169] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, + sym_await, + [21139] = 22, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(741), 1, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(1050), 1, - anon_sym_lambda, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1555), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1816), 1, sym_expression, - STATE(2099), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1646), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(735), 3, + ACTIONS(1288), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44241,8 +46449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44258,55 +46465,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20261] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [21238] = 22, + ACTIONS(658), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - STATE(989), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1112), 1, + anon_sym_lambda, + STATE(1095), 1, sym_string, - STATE(992), 1, + STATE(1101), 1, sym_primary_expression, - STATE(1505), 1, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1812), 1, sym_expression, - STATE(1948), 1, - sym_slice, - STATE(2073), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + STATE(2002), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44314,8 +46526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44331,55 +46542,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20355] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [21337] = 23, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1498), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1829), 1, sym_expression, - STATE(1894), 1, + STATE(2171), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44387,8 +46604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44404,55 +46620,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20449] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(685), 1, + sym_await, + [21438] = 22, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - STATE(989), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(992), 1, + STATE(1036), 1, sym_primary_expression, - STATE(1536), 1, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1816), 1, sym_expression, - STATE(1831), 1, - sym_slice, - STATE(2073), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(1290), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44460,8 +46681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44477,55 +46697,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20543] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [21537] = 23, + ACTIONS(742), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(1214), 1, - anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + STATE(1132), 1, sym_string, - STATE(1655), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1840), 1, sym_expression, - STATE(2021), 1, - sym_with_item, - STATE(2035), 1, + STATE(2187), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44533,8 +46759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44550,115 +46775,125 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20637] = 9, - ACTIONS(3), 1, + sym_await, + [21638] = 10, + ACTIONS(275), 1, + anon_sym_COMMA, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(1292), 1, + anon_sym_for, + ACTIONS(1294), 1, + anon_sym_with, + ACTIONS(1296), 1, + anon_sym_def, + ACTIONS(3), 2, sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - ACTIONS(1196), 1, - anon_sym_except_STAR, - ACTIONS(1198), 1, - anon_sym_finally, - STATE(668), 1, - sym_else_clause, - STATE(769), 1, - sym_finally_clause, - STATE(484), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1200), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + sym_line_continuation, + ACTIONS(287), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(298), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(270), 15, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1202), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(268), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [21713] = 22, + ACTIONS(716), 1, sym_identifier, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(738), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [20707] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(956), 1, anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(837), 1, + STATE(1157), 1, sym_string, - STATE(1543), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1963), 1, sym_expression, - STATE(2184), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(1216), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(63), 3, + ACTIONS(1130), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(736), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44666,8 +46901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44683,55 +46917,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20799] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [21812] = 23, + ACTIONS(716), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - STATE(989), 1, - sym_string, - STATE(992), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1298), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(1497), 1, + STATE(1157), 1, + sym_string, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1946), 1, sym_expression, - STATE(1874), 1, - sym_slice, - STATE(2073), 1, + STATE(2275), 1, + sym_with_item, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44739,8 +46979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44756,55 +46995,137 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20893] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, + sym_await, + [21913] = 22, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1212), 1, + ACTIONS(302), 1, anon_sym_LPAREN, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1642), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1866), 1, sym_expression, - STATE(1936), 1, - sym_with_item, - STATE(2097), 1, - sym_with_clause, - STATE(2190), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(1300), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, + ACTIONS(75), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22012] = 22, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_string, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1866), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(1302), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44812,8 +47133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44829,55 +47149,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20987] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [22111] = 23, + ACTIONS(742), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(1218), 1, - anon_sym_RPAREN, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + STATE(1132), 1, sym_string, - STATE(1655), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1821), 1, sym_expression, - STATE(2021), 1, - sym_with_item, - STATE(2035), 1, + STATE(2265), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44885,8 +47211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44902,54 +47227,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21081] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [22212] = 23, + ACTIONS(716), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(1052), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, anon_sym_lambda, - STATE(863), 1, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1304), 1, + anon_sym_RPAREN, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1513), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1946), 1, sym_expression, - STATE(2123), 1, + STATE(2275), 1, + sym_with_item, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - STATE(1688), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44957,8 +47289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44974,54 +47305,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21173] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [22313] = 23, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1306), 1, + anon_sym_COLON, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1657), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1938), 1, sym_expression, - STATE(2073), 1, + STATE(2270), 1, + sym_with_item, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(1060), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(687), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45029,8 +47367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45046,55 +47383,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21265] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [22414] = 22, + ACTIONS(658), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, - anon_sym_COLON, - STATE(989), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1112), 1, + anon_sym_lambda, + STATE(1095), 1, sym_string, - STATE(992), 1, + STATE(1101), 1, sym_primary_expression, - STATE(1595), 1, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1834), 1, sym_expression, - STATE(2016), 1, - sym_slice, - STATE(2073), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + STATE(1992), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45102,8 +47444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45119,55 +47460,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21359] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [22513] = 22, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1220), 1, - anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(1642), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1933), 1, sym_expression, - STATE(1991), 1, - sym_with_item, - STATE(2190), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(1130), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45175,8 +47521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45192,54 +47537,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21453] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [22612] = 22, + ACTIONS(690), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(741), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(1050), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1104), 1, anon_sym_lambda, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + STATE(1058), 1, sym_string, - STATE(1555), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1817), 1, sym_expression, - STATE(2099), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(1709), 2, + STATE(1911), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(735), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45247,8 +47598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45264,54 +47614,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21545] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [22711] = 22, + ACTIONS(632), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1140), 1, + anon_sym_lambda, + STATE(1037), 1, sym_string, - STATE(992), 1, + STATE(1038), 1, sym_primary_expression, - STATE(1654), 1, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1810), 1, sym_expression, - STATE(2073), 1, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(1222), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(687), 3, + STATE(1926), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45319,8 +47675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45336,54 +47691,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21637] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [22810] = 23, + ACTIONS(314), 1, sym_identifier, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1308), 1, + anon_sym_LPAREN, + STATE(1071), 1, sym_string, - STATE(1667), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1938), 1, sym_expression, - STATE(2035), 1, + STATE(2209), 1, + sym_with_item, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + STATE(2543), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(1060), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(711), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45391,8 +47753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45408,176 +47769,216 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21729] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - ACTIONS(1226), 1, - anon_sym_except, - ACTIONS(1228), 1, - anon_sym_finally, - STATE(653), 1, - sym_else_clause, - STATE(751), 1, - sym_finally_clause, - STATE(539), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1200), 12, - sym__dedent, - sym__string_start, + sym_await, + [22911] = 23, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(750), 1, anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + STATE(1132), 1, + sym_string, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1841), 1, + sym_expression, + STATE(2246), 1, + sym_slice, + STATE(2376), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1202), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(748), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(762), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [21799] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - ACTIONS(1198), 1, - anon_sym_finally, - ACTIONS(1204), 1, - anon_sym_except, - STATE(658), 1, - sym_else_clause, - STATE(808), 1, - sym_finally_clause, - STATE(483), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1190), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23012] = 23, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(750), 1, anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + STATE(1132), 1, + sym_string, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1825), 1, + sym_expression, + STATE(2233), 1, + sym_slice, + STATE(2376), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1192), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(748), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(762), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [21869] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23113] = 22, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(311), 1, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1543), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1866), 1, sym_expression, - STATE(2184), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(1230), 2, + ACTIONS(1310), 2, sym__newline, anon_sym_SEMI, - ACTIONS(63), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(273), 4, + ACTIONS(281), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45585,8 +47986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45602,116 +48002,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21961] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - ACTIONS(1228), 1, - anon_sym_finally, - ACTIONS(1232), 1, - anon_sym_except_STAR, - STATE(653), 1, - sym_else_clause, - STATE(751), 1, - sym_finally_clause, - STATE(538), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1200), 12, - sym__dedent, - sym__string_start, + sym_await, + [23212] = 23, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(750), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(760), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1202), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(764), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [22031] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(1128), 1, anon_sym_lambda, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(697), 1, - anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1124), 1, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - STATE(989), 1, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1843), 1, sym_expression, - STATE(1852), 1, + STATE(2176), 1, sym_slice, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45719,8 +48064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45736,176 +48080,359 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22125] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - ACTIONS(1226), 1, - anon_sym_except, - ACTIONS(1228), 1, - anon_sym_finally, - STATE(656), 1, - sym_else_clause, - STATE(791), 1, - sym_finally_clause, - STATE(539), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1190), 12, - sym__dedent, - sym__string_start, + sym_await, + [23313] = 22, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(750), 1, anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_string, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1933), 1, + sym_expression, + STATE(2376), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(1146), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1192), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(748), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(762), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [22195] = 9, - ACTIONS(3), 1, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23412] = 10, + ACTIONS(275), 1, + anon_sym_COMMA, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_string_start, + STATE(2225), 1, + sym_string, + ACTIONS(3), 2, sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - ACTIONS(1228), 1, - anon_sym_finally, - ACTIONS(1232), 1, - anon_sym_except_STAR, - STATE(656), 1, - sym_else_clause, - STATE(791), 1, - sym_finally_clause, - STATE(538), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1190), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(287), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(268), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(298), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(270), 22, + anon_sym_as, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + [23487] = 23, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + STATE(1132), 1, + sym_string, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1849), 1, + sym_expression, + STATE(2116), 1, + sym_slice, + STATE(2376), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, sym_float, - ACTIONS(1192), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(748), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(762), 4, sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23588] = 23, + ACTIONS(314), 1, sym_identifier, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1308), 1, + anon_sym_LPAREN, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1938), 1, + sym_expression, + STATE(2209), 1, + sym_with_item, + STATE(2379), 1, + sym__named_expression_lhs, + STATE(2418), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(320), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 4, + sym_integer, sym_true, sym_false, sym_none, - [22265] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [23689] = 23, + ACTIONS(742), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(645), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(1052), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_lambda, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + STATE(1132), 1, sym_string, - STATE(1546), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1836), 1, sym_expression, - STATE(2123), 1, + STATE(2075), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1669), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(639), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45913,8 +48440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45930,54 +48456,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22357] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [23790] = 22, + ACTIONS(742), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(669), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(1038), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_lambda, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(1538), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1950), 1, sym_expression, - STATE(2053), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1732), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(663), 3, + ACTIONS(1268), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45985,8 +48517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46002,54 +48533,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22449] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [23889] = 22, + ACTIONS(658), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(669), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(1038), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + STATE(1095), 1, sym_string, - STATE(1515), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1811), 1, sym_expression, - STATE(2053), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1719), 2, + STATE(1971), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(663), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46057,8 +48594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46074,54 +48610,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22541] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [23988] = 22, + ACTIONS(658), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(669), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(1038), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + STATE(1095), 1, sym_string, - STATE(1538), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1834), 1, sym_expression, - STATE(2053), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - STATE(1641), 2, + STATE(1931), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(663), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46129,8 +48671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46146,54 +48687,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22633] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [24087] = 22, + ACTIONS(690), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(669), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(1038), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1104), 1, anon_sym_lambda, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + STATE(1058), 1, sym_string, - STATE(1538), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1817), 1, sym_expression, - STATE(2053), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - STATE(1661), 2, + STATE(2025), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(663), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46201,8 +48748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46218,54 +48764,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22725] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [24186] = 22, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1626), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1922), 1, sym_expression, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1234), 2, + ACTIONS(1316), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46273,8 +48825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46290,54 +48841,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22817] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + sym_await, + [24285] = 23, + ACTIONS(742), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_await, - ACTIONS(311), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_COLON, + STATE(1132), 1, sym_string, - STATE(1559), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1895), 1, sym_expression, - STATE(2184), 1, + STATE(2273), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1236), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(63), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(762), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46345,8 +48903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46362,54 +48919,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22909] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + sym_await, + [24386] = 22, + ACTIONS(690), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_await, - ACTIONS(311), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1104), 1, + anon_sym_lambda, + STATE(1058), 1, sym_string, - STATE(1559), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1817), 1, sym_expression, - STATE(2184), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(1238), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(63), 3, + STATE(1903), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(710), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46417,8 +48980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46434,54 +48996,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23001] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [24485] = 22, + ACTIONS(742), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(1667), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1932), 1, sym_expression, - STATE(2035), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1034), 2, - anon_sym_RPAREN, + ACTIONS(1318), 2, anon_sym_COMMA, - ACTIONS(711), 3, + anon_sym_RBRACK, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46489,8 +49057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46506,277 +49073,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23093] = 7, - ACTIONS(3), 1, + sym_await, + [24584] = 23, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1308), 1, + anon_sym_LPAREN, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1938), 1, + sym_expression, + STATE(2209), 1, + sym_with_item, + STATE(2379), 1, + sym__named_expression_lhs, + STATE(2425), 1, + sym_with_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1242), 1, - anon_sym_COMMA, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1249), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1251), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1245), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1240), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [23158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1253), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23215] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(279), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(281), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(268), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(266), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [23280] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1253), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23337] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(307), 1, - anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1257), 1, - anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, - sym_string, - STATE(1632), 1, - sym_expression, - STATE(2190), 1, - sym__named_expression_lhs, - ACTIONS(301), 2, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46784,8 +49135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46801,53 +49151,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23428] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [24685] = 22, + ACTIONS(632), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1060), 1, - anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1140), 1, + anon_sym_lambda, + STATE(1037), 1, sym_string, - STATE(1670), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1810), 1, sym_expression, - STATE(2190), 1, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + STATE(2017), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46855,8 +49212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46872,53 +49228,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23519] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [24784] = 22, + ACTIONS(632), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1259), 1, - anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1140), 1, + anon_sym_lambda, + STATE(1037), 1, sym_string, - STATE(1632), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1848), 1, sym_expression, - STATE(2190), 1, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + STATE(2008), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46926,8 +49289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46943,53 +49305,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23610] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [24883] = 23, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1308), 1, + anon_sym_LPAREN, + STATE(1071), 1, sym_string, - STATE(1642), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1938), 1, sym_expression, - STATE(1991), 1, + STATE(2209), 1, sym_with_item, - STATE(2190), 1, + STATE(2356), 1, + sym_with_clause, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46997,8 +49367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47014,53 +49383,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23701] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [24984] = 23, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1034), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1196), 1, anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1132), 1, sym_string, - STATE(1670), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1803), 1, sym_expression, - STATE(2190), 1, + STATE(2148), 1, + sym_slice, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47068,8 +49445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47085,124 +49461,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23792] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [25085] = 22, + ACTIONS(658), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, - sym_string, - STATE(1601), 1, - sym_expression, - STATE(1906), 1, - sym_type, - STATE(2035), 1, - sym__named_expression_lhs, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(705), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1567), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [23883] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, - sym_identifier, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(721), 1, - anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1095), 1, sym_string, - STATE(1601), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1834), 1, sym_expression, - STATE(2028), 1, - sym_type, - STATE(2035), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + STATE(1945), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47210,8 +49522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47227,15 +49538,43 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23974] = 3, - ACTIONS(3), 1, + sym_await, + [25184] = 10, + ACTIONS(275), 1, + anon_sym_COMMA, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(1320), 1, + anon_sym_for, + ACTIONS(1322), 1, + anon_sym_with, + ACTIONS(1324), 1, + anon_sym_def, + ACTIONS(3), 2, sym_comment, - ACTIONS(1263), 16, + sym_line_continuation, + ACTIONS(287), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(298), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(270), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -47247,16 +49586,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1261), 33, + ACTIONS(268), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -47268,66 +49604,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24031] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + [25259] = 22, + ACTIONS(632), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1140), 1, + anon_sym_lambda, + STATE(1037), 1, sym_string, - STATE(1588), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1838), 1, sym_expression, - STATE(2153), 1, - sym_type, - STATE(2190), 1, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + STATE(2019), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47335,8 +49664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47352,53 +49680,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24122] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [25358] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1604), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1882), 1, sym_expression, - STATE(2114), 1, - sym_expression_list, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + STATE(2445), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47406,8 +49740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47423,53 +49756,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24213] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [25456] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1588), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1861), 1, sym_expression, - STATE(2116), 1, - sym_type, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + STATE(2441), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47477,8 +49816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47494,53 +49832,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24304] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [25554] = 22, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1568), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1874), 1, sym_expression, - STATE(1796), 1, - sym_type, - STATE(2184), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + STATE(2433), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47548,8 +49892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47565,161 +49908,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1267), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1265), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24452] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1267), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1265), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24509] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [25652] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1269), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1146), 1, anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1664), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1910), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47727,8 +49968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47744,53 +49984,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24600] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [25750] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1271), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1130), 1, anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1673), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1910), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47798,8 +50044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47815,53 +50060,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24691] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [25848] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1273), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1326), 1, anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1071), 1, sym_string, - STATE(1632), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1936), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47869,8 +50120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47886,107 +50136,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1275), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24839] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, + sym_await, + [25946] = 22, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1573), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1837), 1, sym_expression, - STATE(2166), 1, + STATE(2320), 1, sym_expression_list, - STATE(2190), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47994,8 +50196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48011,53 +50212,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24930] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [26044] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1279), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1328), 1, anon_sym_COLON, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1071), 1, sym_string, - STATE(1632), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1904), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48065,8 +50272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48082,53 +50288,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25021] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [26142] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1608), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1858), 1, sym_expression, - STATE(2133), 1, + STATE(2354), 1, sym_expression_list, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48136,8 +50348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48153,53 +50364,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25112] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [26240] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1655), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1938), 1, sym_expression, - STATE(2021), 1, + STATE(2270), 1, sym_with_item, - STATE(2035), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48207,8 +50424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48224,107 +50440,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1283), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1281), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25260] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [26338] = 22, + ACTIONS(716), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(875), 1, + STATE(1157), 1, sym_string, - STATE(1588), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1890), 1, sym_expression, - STATE(2067), 1, + STATE(2325), 1, sym_type, - STATE(2190), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48332,8 +50500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48349,53 +50516,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25351] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [26436] = 22, + ACTIONS(716), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(875), 1, + STATE(1157), 1, sym_string, - STATE(1614), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1946), 1, sym_expression, - STATE(2142), 1, - sym_expression_list, - STATE(2190), 1, + STATE(2275), 1, + sym_with_item, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48403,8 +50576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48420,53 +50592,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25442] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [26534] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1588), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1882), 1, sym_expression, - STATE(2146), 1, - sym_type, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + STATE(2510), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48474,8 +50652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48491,53 +50668,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25533] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [26632] = 22, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1330), 1, + anon_sym_COLON, + STATE(1071), 1, sym_string, - STATE(1531), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1936), 1, sym_expression, - STATE(2030), 1, - sym_expression_list, - STATE(2184), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48545,8 +50728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48562,51 +50744,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25624] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [26730] = 22, + ACTIONS(716), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(875), 1, + STATE(1157), 1, sym_string, - STATE(1504), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1890), 1, sym_expression, - STATE(2190), 1, + STATE(2143), 1, + sym_type, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48614,8 +50804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48631,51 +50820,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25712] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [26828] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1657), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1883), 1, sym_expression, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + STATE(2475), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48683,8 +50880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48700,51 +50896,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25800] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(733), 1, + sym_await, + [26926] = 22, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(737), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1593), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1854), 1, sym_expression, - STATE(2099), 1, + STATE(2191), 1, + sym_type, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48752,8 +50956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48769,51 +50972,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25888] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [27024] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(669), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1332), 1, + anon_sym_COLON, + STATE(1071), 1, sym_string, - STATE(1477), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1936), 1, sym_expression, - STATE(2053), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48821,8 +51032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48838,51 +51048,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25976] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [27122] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(669), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1334), 1, + anon_sym_COLON, + STATE(1071), 1, sym_string, - STATE(1461), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1957), 1, sym_expression, - STATE(2053), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48890,8 +51108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48907,51 +51124,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26064] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [27220] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, - sym_string, - STATE(1562), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1882), 1, sym_expression, - STATE(2123), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + STATE(2530), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48959,8 +51184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48976,51 +51200,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26152] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [27318] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(669), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1336), 1, + anon_sym_COLON, + STATE(1071), 1, sym_string, - STATE(1462), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1936), 1, sym_expression, - STATE(2053), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49028,8 +51260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49045,51 +51276,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26240] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [27416] = 22, + ACTIONS(314), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1647), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1882), 1, sym_expression, - STATE(2035), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + STATE(2451), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49097,8 +51336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49114,51 +51352,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26328] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [27514] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(875), 1, + STATE(1157), 1, sym_string, - STATE(1696), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1885), 1, sym_expression, - STATE(2190), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49166,8 +51410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49183,51 +51426,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26416] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [27609] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + STATE(1032), 1, sym_string, - STATE(1512), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1793), 1, sym_expression, - STATE(2099), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49235,8 +51484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49252,51 +51500,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26504] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [27704] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(992), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(686), 1, + anon_sym_not, + ACTIONS(688), 1, + anon_sym_lambda, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1048), 1, sym_primary_expression, - STATE(1611), 1, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1484), 1, sym_expression, - STATE(2073), 1, + STATE(2366), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49304,8 +51558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49321,51 +51574,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26592] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + sym_await, + [27799] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_await, - ACTIONS(311), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - STATE(835), 1, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(686), 1, + anon_sym_not, + ACTIONS(688), 1, + anon_sym_lambda, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1048), 1, sym_primary_expression, - STATE(837), 1, + STATE(1071), 1, sym_string, - STATE(1537), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1425), 1, sym_expression, - STATE(2184), 1, + STATE(2366), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49373,8 +51632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49390,51 +51648,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26680] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [27894] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(992), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(686), 1, + anon_sym_not, + ACTIONS(688), 1, + anon_sym_lambda, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1048), 1, sym_primary_expression, - STATE(1600), 1, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1423), 1, sym_expression, - STATE(2073), 1, + STATE(2366), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49442,8 +51706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49459,51 +51722,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26768] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [27989] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - STATE(883), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(686), 1, + anon_sym_not, + ACTIONS(688), 1, + anon_sym_lambda, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1048), 1, sym_primary_expression, - STATE(884), 1, + STATE(1071), 1, sym_string, - STATE(1528), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1415), 1, sym_expression, - STATE(2099), 1, + STATE(2366), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49511,8 +51780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49528,51 +51796,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26856] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [28084] = 21, + ACTIONS(690), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, sym_string, - STATE(1550), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1500), 1, sym_expression, - STATE(2099), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49580,8 +51854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49597,51 +51870,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26944] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [28179] = 21, + ACTIONS(690), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(700), 1, anon_sym_not, - ACTIONS(737), 1, + ACTIONS(704), 1, anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, sym_string, - STATE(1554), 1, + STATE(1059), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1410), 1, sym_expression, - STATE(2099), 1, + STATE(2385), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49649,8 +51928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49666,51 +51944,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27032] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [28274] = 21, + ACTIONS(658), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, sym_string, - STATE(1501), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1819), 1, sym_expression, - STATE(2099), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49718,8 +52002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49735,51 +52018,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27120] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [28369] = 21, + ACTIONS(690), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(733), 1, - anon_sym_not, - ACTIONS(737), 1, - anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, sym_string, - STATE(1557), 1, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1872), 1, sym_expression, - STATE(2099), 1, + STATE(2526), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49787,8 +52076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49804,51 +52092,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27208] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [28464] = 21, + ACTIONS(658), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(670), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(674), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, sym_string, - STATE(992), 1, + STATE(1098), 1, sym_primary_expression, - STATE(1583), 1, + STATE(1394), 1, sym_expression, - STATE(2073), 1, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(2415), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49856,8 +52150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49873,51 +52166,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27296] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [28559] = 21, + ACTIONS(690), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(700), 1, anon_sym_not, - ACTIONS(737), 1, + ACTIONS(704), 1, anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, sym_string, - STATE(1525), 1, + STATE(1059), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1406), 1, sym_expression, - STATE(2099), 1, + STATE(2385), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49925,8 +52224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49942,51 +52240,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27384] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [28654] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + STATE(1032), 1, sym_string, - STATE(1730), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1967), 1, sym_expression, - STATE(2190), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49994,8 +52298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50011,51 +52314,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27472] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [28749] = 21, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(700), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(704), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, sym_string, - STATE(1559), 1, + STATE(1059), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1403), 1, sym_expression, - STATE(2184), 1, + STATE(2385), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(710), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50063,8 +52372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50080,51 +52388,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27560] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [28844] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(308), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(312), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(307), 1, - anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1686), 1, + STATE(1046), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1330), 1, sym_expression, - STATE(2190), 1, + STATE(2411), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50132,8 +52446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50149,51 +52462,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27648] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [28939] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(665), 1, - anon_sym_lambda, - ACTIONS(669), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - STATE(839), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(841), 1, + STATE(1157), 1, sym_string, - STATE(1502), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1951), 1, sym_expression, - STATE(2053), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50201,8 +52520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50218,51 +52536,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27736] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [29034] = 21, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(700), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(704), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, sym_string, - STATE(1491), 1, + STATE(1059), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1452), 1, sym_expression, - STATE(2184), 1, + STATE(2385), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(710), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50270,8 +52594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50287,51 +52610,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27824] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [29129] = 21, + ACTIONS(690), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(700), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(704), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, sym_string, - STATE(992), 1, + STATE(1059), 1, sym_primary_expression, - STATE(1582), 1, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1402), 1, sym_expression, - STATE(2073), 1, + STATE(2385), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50339,8 +52668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50356,167 +52684,131 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [27912] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - ACTIONS(1289), 1, - anon_sym_elif, - STATE(589), 1, - aux_sym_if_statement_repeat1, - STATE(669), 1, - sym_elif_clause, - STATE(750), 1, - sym_else_clause, - ACTIONS(1285), 12, - sym__string_start, - ts_builtin_sym_end, + sym_await, + [29224] = 21, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(692), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(698), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1287), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + ACTIONS(700), 1, anon_sym_not, + ACTIONS(704), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(712), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [27978] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - ACTIONS(1289), 1, - anon_sym_elif, - STATE(544), 1, - aux_sym_if_statement_repeat1, - STATE(669), 1, - sym_elif_clause, - STATE(757), 1, - sym_else_clause, - ACTIONS(1291), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1058), 1, + sym_string, + STATE(1059), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1400), 1, + sym_expression, + STATE(2385), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1293), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(696), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(710), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [28044] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + STATE(1506), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [29319] = 21, + ACTIONS(690), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(700), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(704), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, sym_string, - STATE(1714), 1, + STATE(1059), 1, + sym_primary_expression, + STATE(1396), 1, sym_expression, - STATE(2190), 1, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(2385), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50524,8 +52816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50541,109 +52832,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [28132] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - ACTIONS(1289), 1, - anon_sym_elif, - STATE(463), 1, - aux_sym_if_statement_repeat1, - STATE(669), 1, - sym_elif_clause, - STATE(763), 1, - sym_else_clause, - ACTIONS(1295), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1297), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28198] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [29414] = 21, + ACTIONS(632), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(646), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, sym_string, - STATE(1721), 1, + STATE(1045), 1, + sym_primary_expression, + STATE(1185), 1, sym_expression, - STATE(2190), 1, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50651,8 +52890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50668,51 +52906,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [28286] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [29509] = 21, + ACTIONS(632), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(646), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, sym_string, - STATE(992), 1, + STATE(1045), 1, sym_primary_expression, - STATE(1581), 1, + STATE(1195), 1, sym_expression, - STATE(2073), 1, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50720,8 +52964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50737,51 +52980,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [28374] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [29604] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(308), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(312), 1, anon_sym_lambda, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(697), 1, - anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(992), 1, + STATE(1046), 1, sym_primary_expression, - STATE(1580), 1, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1352), 1, sym_expression, - STATE(2073), 1, + STATE(2411), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50789,8 +53038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50806,51 +53054,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [28462] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(685), 1, + sym_await, + [29699] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(992), 1, + STATE(1036), 1, sym_primary_expression, - STATE(1576), 1, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1866), 1, sym_expression, - STATE(2073), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50858,8 +53112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50875,51 +53128,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [28550] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [29794] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1632), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2018), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50927,8 +53186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50944,51 +53202,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [28638] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [29889] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(308), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(312), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(307), 1, - anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1694), 1, + STATE(1046), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1204), 1, sym_expression, - STATE(2190), 1, + STATE(2411), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50996,8 +53260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51013,51 +53276,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [28726] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [29984] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(308), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(312), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(307), 1, - anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1697), 1, + STATE(1046), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1350), 1, sym_expression, - STATE(2190), 1, + STATE(2411), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51065,8 +53334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51082,51 +53350,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [28814] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, + sym_await, + [30079] = 21, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(311), 1, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(308), 1, + anon_sym_not, + ACTIONS(312), 1, + anon_sym_lambda, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1739), 1, + STATE(1046), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1348), 1, sym_expression, - STATE(2184), 1, + STATE(2411), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(273), 4, + ACTIONS(281), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51134,8 +53408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51151,51 +53424,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [28902] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [30174] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(311), 1, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1553), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1204), 1, sym_expression, - STATE(2184), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(273), 4, + ACTIONS(281), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51203,8 +53482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51220,51 +53498,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [28990] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + sym_await, + [30269] = 21, + ACTIONS(658), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_await, - ACTIONS(311), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, sym_string, - STATE(1488), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1815), 1, sym_expression, - STATE(2184), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(680), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51272,8 +53556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51289,51 +53572,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [29078] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [30364] = 21, + ACTIONS(632), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(646), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, sym_string, - STATE(1530), 1, + STATE(1045), 1, + sym_primary_expression, + STATE(1196), 1, sym_expression, - STATE(2190), 1, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51341,8 +53630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51358,51 +53646,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [29166] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, + sym_await, + [30459] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1731), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1816), 1, sym_expression, - STATE(2190), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51410,8 +53704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51427,51 +53720,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [29254] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [30554] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1602), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1959), 1, sym_expression, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51479,8 +53778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51496,51 +53794,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [29342] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [30649] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1702), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1936), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51548,8 +53852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51565,51 +53868,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [29430] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [30744] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1652), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1947), 1, sym_expression, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51617,8 +53926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51634,51 +53942,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [29518] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [30839] = 21, + ACTIONS(632), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(646), 1, anon_sym_lambda, - ACTIONS(669), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, sym_string, - STATE(1473), 1, + STATE(1045), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1342), 1, sym_expression, - STATE(2053), 1, + STATE(2390), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51686,8 +54000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51703,161 +54016,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [29606] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1303), 1, - anon_sym_except, - STATE(483), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1299), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1301), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29666] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - anon_sym_except_STAR, - STATE(484), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1306), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + sym_await, + [30934] = 21, + ACTIONS(73), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1308), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, + ACTIONS(300), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [29726] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(287), 1, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(308), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(312), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(307), 1, - anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1710), 1, + STATE(1046), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1347), 1, sym_expression, - STATE(2190), 1, + STATE(2411), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51865,8 +54074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51882,51 +54090,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [29814] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [31029] = 21, + ACTIONS(632), 1, + sym_identifier, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(646), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, sym_string, - STATE(1479), 1, + STATE(1045), 1, + sym_primary_expression, + STATE(1197), 1, sym_expression, - STATE(2184), 1, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(652), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51934,8 +54148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51951,51 +54164,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [29902] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [31124] = 21, + ACTIONS(632), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(646), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, sym_string, - STATE(1735), 1, + STATE(1045), 1, + sym_primary_expression, + STATE(1198), 1, sym_expression, - STATE(2190), 1, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52003,8 +54222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52020,51 +54238,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [29990] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [31219] = 21, + ACTIONS(632), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(646), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, sym_string, - STATE(1737), 1, + STATE(1045), 1, + sym_primary_expression, + STATE(1199), 1, sym_expression, - STATE(2190), 1, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52072,8 +54296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52089,51 +54312,119 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30078] = 19, - ACTIONS(3), 1, + sym_await, + [31314] = 9, + ACTIONS(1342), 1, + anon_sym_else, + ACTIONS(1344), 1, + anon_sym_except, + ACTIONS(1346), 1, + anon_sym_finally, + STATE(750), 1, + sym_else_clause, + STATE(896), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(285), 1, + sym_line_continuation, + STATE(674), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1340), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1338), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31385] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(616), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(620), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + STATE(1032), 1, sym_string, - STATE(1524), 1, + STATE(1044), 1, + sym_primary_expression, + STATE(1216), 1, sym_expression, - STATE(2190), 1, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(2395), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52141,8 +54432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52158,51 +54448,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30166] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, - sym_identifier, - ACTIONS(655), 1, + sym_await, + [31480] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(1128), 1, anon_sym_lambda, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1348), 1, + sym_identifier, + ACTIONS(1352), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + STATE(1132), 1, sym_string, - STATE(1468), 1, + STATE(1234), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1920), 1, sym_expression, - STATE(2053), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + STATE(1409), 2, + sym_attribute, + sym_subscript, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + ACTIONS(1350), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52210,12 +54509,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1580), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -52227,51 +54523,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30254] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [31577] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(611), 1, + ACTIONS(616), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(620), 1, anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + STATE(1032), 1, sym_string, - STATE(1621), 1, + STATE(1044), 1, + sym_primary_expression, + STATE(1221), 1, sym_expression, - STATE(2217), 1, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(2395), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52279,8 +54581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52296,51 +54597,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30342] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [31672] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(616), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(620), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + STATE(1032), 1, sym_string, - STATE(1689), 1, + STATE(1044), 1, + sym_primary_expression, + STATE(1225), 1, sym_expression, - STATE(2190), 1, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(2395), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52348,8 +54655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52365,51 +54671,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30430] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [31767] = 21, + ACTIONS(658), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, sym_string, - STATE(1670), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1394), 1, sym_expression, - STATE(2190), 1, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52417,8 +54729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52434,51 +54745,119 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30518] = 19, - ACTIONS(3), 1, + sym_await, + [31862] = 9, + ACTIONS(1342), 1, + anon_sym_else, + ACTIONS(1346), 1, + anon_sym_finally, + ACTIONS(1354), 1, + anon_sym_except_STAR, + STATE(750), 1, + sym_else_clause, + STATE(896), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(653), 1, - sym_identifier, - ACTIONS(655), 1, + sym_line_continuation, + STATE(676), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1340), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(659), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(661), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1338), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, anon_sym_not, - ACTIONS(665), 1, anon_sym_lambda, - ACTIONS(669), 1, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31933] = 21, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, sym_string, - STATE(1492), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1839), 1, sym_expression, - STATE(2053), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52486,8 +54865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52503,51 +54881,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30606] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [32028] = 21, + ACTIONS(606), 1, + sym_identifier, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(616), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(620), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + STATE(1032), 1, sym_string, - STATE(1665), 1, + STATE(1044), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1252), 1, sym_expression, - STATE(2184), 1, + STATE(2395), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(626), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52555,8 +54939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52572,51 +54955,181 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30694] = 19, - ACTIONS(3), 1, + sym_await, + [32123] = 9, + ACTIONS(1360), 1, + anon_sym_else, + ACTIONS(1362), 1, + anon_sym_except, + ACTIONS(1364), 1, + anon_sym_finally, + STATE(754), 1, + sym_else_clause, + STATE(878), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(285), 1, + sym_line_continuation, + STATE(665), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1356), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1358), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32194] = 9, + ACTIONS(1360), 1, + anon_sym_else, + ACTIONS(1364), 1, + anon_sym_finally, + ACTIONS(1366), 1, + anon_sym_except_STAR, + STATE(754), 1, + sym_else_clause, + STATE(878), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(667), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1356), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1358), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32265] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1511), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1458), 1, sym_expression, - STATE(2190), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52624,8 +55137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52641,51 +55153,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30782] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [32360] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(1527), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1884), 1, sym_expression, - STATE(2190), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52693,8 +55211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52710,51 +55227,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30870] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [32455] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(1496), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1900), 1, sym_expression, - STATE(2190), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52762,8 +55285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52779,54 +55301,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [30958] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, + sym_await, + [32550] = 21, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1313), 1, - sym_identifier, - ACTIONS(1317), 1, + ACTIONS(764), 1, anon_sym_await, - STATE(989), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1671), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1859), 1, sym_expression, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(1344), 2, - sym_attribute, - sym_subscript, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(695), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1315), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1598), 8, + ACTIONS(762), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52834,10 +55359,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 13, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -52849,51 +55375,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31048] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [32645] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(311), 1, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1543), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1917), 1, sym_expression, - STATE(2184), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(273), 4, + ACTIONS(281), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52901,8 +55433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52918,51 +55449,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31136] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [32740] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(1659), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1562), 1, sym_expression, - STATE(2190), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52970,8 +55507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52987,51 +55523,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31224] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [32835] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, - sym_string, - STATE(1609), 1, - sym_expression, - STATE(2035), 1, - sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_string, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1877), 1, + sym_expression, + STATE(2376), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53039,8 +55581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53056,51 +55597,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31312] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [32930] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(1507), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1855), 1, sym_expression, - STATE(2190), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53108,8 +55655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53125,51 +55671,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31400] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [33025] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(1728), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1856), 1, sym_expression, - STATE(2190), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53177,8 +55729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53194,51 +55745,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31488] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [33120] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(616), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(620), 1, anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + STATE(1032), 1, sym_string, - STATE(1628), 1, + STATE(1044), 1, + sym_primary_expression, + STATE(1183), 1, sym_expression, - STATE(2035), 1, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(2395), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53246,8 +55803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53263,107 +55819,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31576] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 1, - anon_sym_COMMA, - ACTIONS(1249), 1, - anon_sym_EQ, - ACTIONS(1251), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1245), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1240), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [31638] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [33215] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(992), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1658), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1934), 1, sym_expression, - STATE(2073), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53371,8 +55877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53388,51 +55893,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31726] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [33310] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(616), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(620), 1, anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + STATE(1032), 1, sym_string, - STATE(1667), 1, + STATE(1044), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1241), 1, sym_expression, - STATE(2035), 1, + STATE(2395), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53440,8 +55951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53457,51 +55967,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31814] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [33405] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(1597), 1, + STATE(1153), 1, + sym_primary_expression, + STATE(1596), 1, sym_expression, - STATE(2035), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53509,8 +56025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53526,51 +56041,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31902] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [33500] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(726), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(730), 1, anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1104), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1594), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1603), 1, sym_expression, - STATE(2035), 1, + STATE(2400), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53578,8 +56099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53595,51 +56115,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [31990] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [33595] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(726), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(730), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1104), 1, sym_primary_expression, - STATE(875), 1, + STATE(1157), 1, sym_string, - STATE(1690), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1599), 1, sym_expression, - STATE(2190), 1, + STATE(2400), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53647,8 +56173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53664,107 +56189,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32078] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1321), 1, - anon_sym_COMMA, - ACTIONS(1328), 1, - anon_sym_EQ, - ACTIONS(1326), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1324), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1319), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [32140] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [33690] = 21, + ACTIONS(658), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, sym_string, - STATE(1526), 1, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1833), 1, sym_expression, - STATE(2190), 1, + STATE(2489), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53772,8 +56247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53789,51 +56263,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32228] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [33785] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(992), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(686), 1, + anon_sym_not, + ACTIONS(688), 1, + anon_sym_lambda, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1048), 1, sym_primary_expression, - STATE(1671), 1, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1430), 1, sym_expression, - STATE(2073), 1, + STATE(2366), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53841,8 +56321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53858,54 +56337,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32316] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, + sym_await, + [33880] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(1330), 1, - sym_identifier, - ACTIONS(1334), 1, + ACTIONS(338), 1, anon_sym_await, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1638), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1985), 1, sym_expression, - STATE(2035), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1345), 2, - sym_attribute, - sym_subscript, - ACTIONS(711), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(719), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1332), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1567), 8, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53913,10 +56395,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 13, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -53928,51 +56411,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32406] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, - sym_identifier, - ACTIONS(655), 1, - anon_sym_LPAREN, - ACTIONS(659), 1, - anon_sym_LBRACK, - ACTIONS(661), 1, + sym_await, + [33975] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(669), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1575), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1827), 1, sym_expression, - STATE(2053), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53980,8 +56469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53997,51 +56485,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32494] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, + sym_await, + [34070] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(679), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(685), 1, - anon_sym_not, - ACTIONS(689), 1, - anon_sym_lambda, - ACTIONS(693), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(697), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, sym_string, - STATE(992), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1587), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1933), 1, sym_expression, - STATE(2073), 1, + STATE(2376), 1, sym__named_expression_lhs, - ACTIONS(691), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(687), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(695), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1598), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54049,8 +56543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1301), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54066,51 +56559,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32582] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + sym_await, + [34165] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_await, - ACTIONS(311), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - STATE(835), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(738), 1, + anon_sym_await, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(837), 1, + STATE(1157), 1, sym_string, - STATE(1561), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1865), 1, sym_expression, - STATE(2184), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(736), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54118,8 +56617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54135,51 +56633,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32670] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(653), 1, + sym_await, + [34260] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(661), 1, - anon_sym_not, - ACTIONS(665), 1, - anon_sym_lambda, - ACTIONS(669), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - STATE(839), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(841), 1, + STATE(1157), 1, sym_string, - STATE(1489), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1860), 1, sym_expression, - STATE(2053), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54187,8 +56691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54204,51 +56707,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32758] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [34355] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(726), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(730), 1, anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - STATE(863), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1104), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1518), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1585), 1, sym_expression, - STATE(2123), 1, + STATE(2400), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54256,8 +56765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54273,51 +56781,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32846] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [34450] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(611), 1, - anon_sym_not, - ACTIONS(615), 1, - anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(844), 1, + STATE(1157), 1, sym_string, - STATE(1483), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1538), 1, sym_expression, - STATE(2217), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54325,8 +56839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54342,51 +56855,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32934] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [34545] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1666), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1850), 1, sym_expression, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54394,8 +56913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54411,51 +56929,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33022] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [34640] = 21, + ACTIONS(716), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(726), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(730), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1104), 1, sym_primary_expression, - STATE(837), 1, + STATE(1157), 1, sym_string, - STATE(1640), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1538), 1, sym_expression, - STATE(2184), 1, + STATE(2400), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(736), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54463,8 +56987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54480,51 +57003,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33110] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [34735] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - STATE(863), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1506), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1871), 1, sym_expression, - STATE(2123), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54532,8 +57061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54549,51 +57077,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33198] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [34830] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1529), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1981), 1, sym_expression, - STATE(2123), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54601,8 +57135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54618,51 +57151,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33286] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [34925] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(611), 1, - anon_sym_not, - ACTIONS(615), 1, - anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(686), 1, + anon_sym_not, + ACTIONS(688), 1, + anon_sym_lambda, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1048), 1, sym_primary_expression, - STATE(844), 1, + STATE(1071), 1, sym_string, - STATE(1469), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1432), 1, sym_expression, - STATE(2217), 1, + STATE(2366), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54670,8 +57209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54687,189 +57225,119 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33374] = 19, - ACTIONS(3), 1, + sym_await, + [35020] = 9, + ACTIONS(1342), 1, + anon_sym_else, + ACTIONS(1344), 1, + anon_sym_except, + ACTIONS(1346), 1, + anon_sym_finally, + STATE(770), 1, + sym_else_clause, + STATE(891), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(603), 1, - sym_identifier, - ACTIONS(605), 1, + sym_line_continuation, + STATE(674), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1356), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(609), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(611), 1, - anon_sym_not, - ACTIONS(615), 1, - anon_sym_lambda, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, - sym_string, - STATE(1466), 1, - sym_expression, - STATE(2217), 1, - sym__named_expression_lhs, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1358), 31, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(621), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1480), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [33462] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + anon_sym_class, anon_sym_not, - ACTIONS(65), 1, anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(283), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, - sym_string, - STATE(1630), 1, - sym_expression, - STATE(2184), 1, - sym__named_expression_lhs, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, sym_true, sym_false, sym_none, - ACTIONS(273), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1478), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [33550] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + [35091] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(611), 1, - anon_sym_not, - ACTIONS(615), 1, - anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(844), 1, + STATE(1157), 1, sym_string, - STATE(1465), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1887), 1, sym_expression, - STATE(2217), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54877,8 +57345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54894,51 +57361,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33638] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [35186] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(726), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(730), 1, anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - STATE(863), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1104), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1523), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1570), 1, sym_expression, - STATE(2123), 1, + STATE(2400), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54946,8 +57419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54963,51 +57435,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33726] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [35281] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(726), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(730), 1, anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1104), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1591), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1565), 1, sym_expression, - STATE(2035), 1, + STATE(2400), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55015,8 +57493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55032,22 +57509,27 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33814] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, + sym_await, + [35376] = 9, + ACTIONS(1342), 1, anon_sym_else, - ACTIONS(1340), 1, - anon_sym_elif, - STATE(574), 1, - aux_sym_if_statement_repeat1, - STATE(652), 1, - sym_elif_clause, - STATE(801), 1, + ACTIONS(1346), 1, + anon_sym_finally, + ACTIONS(1354), 1, + anon_sym_except_STAR, + STATE(770), 1, sym_else_clause, - ACTIONS(1338), 12, + STATE(891), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(676), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1356), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -55058,7 +57540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1336), 31, + ACTIONS(1358), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -55090,51 +57572,56 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33880] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + [35447] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(726), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(730), 1, anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - STATE(863), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1104), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, - STATE(1521), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1561), 1, sym_expression, - STATE(2123), 1, + STATE(2400), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55142,8 +57629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55159,51 +57645,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33968] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [35542] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(752), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1107), 1, sym_primary_expression, - STATE(914), 1, + STATE(1132), 1, sym_string, - STATE(1570), 1, + STATE(1519), 1, sym_expression, - STATE(2035), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(2405), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55211,8 +57703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55228,51 +57719,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [34056] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [35637] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(611), 1, - anon_sym_not, - ACTIONS(615), 1, - anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + STATE(1032), 1, sym_string, - STATE(1464), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1783), 1, sym_expression, - STATE(2217), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55280,8 +57777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55297,51 +57793,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [34144] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [35732] = 21, + ACTIONS(690), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(698), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(700), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(704), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(712), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, sym_string, - STATE(1682), 1, + STATE(1059), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1500), 1, sym_expression, - STATE(2190), 1, + STATE(2385), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(696), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(710), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1506), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55349,8 +57851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1507), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55366,51 +57867,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [34232] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - sym_identifier, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(611), 1, + sym_await, + [35827] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1472), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1908), 1, sym_expression, - STATE(2217), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55418,8 +57925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55435,161 +57941,131 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [34320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - anon_sym_except_STAR, - STATE(538), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1306), 12, - sym__dedent, - sym__string_start, + sym_await, + [35922] = 21, + ACTIONS(606), 1, + sym_identifier, + ACTIONS(608), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(614), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(624), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1308), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + ACTIONS(628), 1, + anon_sym_await, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, anon_sym_not, + ACTIONS(922), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [34380] = 5, - ACTIONS(3), 1, + STATE(1032), 1, + sym_string, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1795), 1, + sym_expression, + STATE(2363), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, sym_comment, - ACTIONS(1345), 1, - anon_sym_except, - STATE(539), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1299), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1301), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(612), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(626), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [34440] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + STATE(1343), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36017] = 21, + ACTIONS(658), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(611), 1, + ACTIONS(670), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(674), 1, anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, sym_string, - STATE(1470), 1, + STATE(1098), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1441), 1, sym_expression, - STATE(2217), 1, + STATE(2415), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55597,8 +58073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55614,51 +58089,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [34528] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [36112] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - STATE(863), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(866), 1, + STATE(1157), 1, sym_string, STATE(1516), 1, + sym_list_splat_pattern, + STATE(1921), 1, sym_expression, - STATE(2123), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55666,8 +58147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55683,107 +58163,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [34616] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 1, - anon_sym_COMMA, - ACTIONS(1357), 1, - anon_sym_EQ, - ACTIONS(1355), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1353), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1348), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [34678] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [36207] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(611), 1, - anon_sym_not, - ACTIONS(615), 1, - anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(844), 1, + STATE(1157), 1, sym_string, - STATE(1467), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1928), 1, sym_expression, - STATE(2217), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55791,8 +58221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55808,109 +58237,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [34766] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - ACTIONS(1289), 1, - anon_sym_elif, - STATE(589), 1, - aux_sym_if_statement_repeat1, - STATE(669), 1, - sym_elif_clause, - STATE(760), 1, - sym_else_clause, - ACTIONS(1338), 12, - sym__string_start, - ts_builtin_sym_end, + sym_await, + [36302] = 21, + ACTIONS(606), 1, + sym_identifier, + ACTIONS(608), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(614), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(624), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1336), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(628), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [34832] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, - sym_identifier, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(709), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(922), 1, anon_sym_lambda, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(721), 1, - anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + STATE(1032), 1, sym_string, - STATE(1624), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1791), 1, sym_expression, - STATE(2035), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55918,8 +58295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55935,51 +58311,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [34920] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, + sym_await, + [36397] = 21, + ACTIONS(658), 1, sym_identifier, - ACTIONS(727), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(733), 1, + ACTIONS(670), 1, anon_sym_not, - ACTIONS(737), 1, + ACTIONS(674), 1, anon_sym_lambda, - ACTIONS(741), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(745), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(747), 1, - sym__string_start, - STATE(883), 1, - sym_primary_expression, - STATE(884), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, sym_string, - STATE(1547), 1, + STATE(1098), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1442), 1, sym_expression, - STATE(2099), 1, + STATE(2415), 1, sym__named_expression_lhs, - ACTIONS(739), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(735), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(729), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1520), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55987,8 +58369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1181), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56004,51 +58385,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [35008] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [36492] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + STATE(1032), 1, sym_string, - STATE(1589), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1785), 1, sym_expression, - STATE(2035), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56056,8 +58443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56073,51 +58459,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [35096] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + sym_await, + [36587] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_await, - ACTIONS(311), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, + anon_sym_await, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + STATE(1032), 1, sym_string, - STATE(1484), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1252), 1, sym_expression, - STATE(2184), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(626), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56125,8 +58517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56142,51 +58533,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [35184] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [36682] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(293), 1, - anon_sym_not, - ACTIONS(299), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + STATE(1032), 1, sym_string, - STATE(1672), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1790), 1, sym_expression, - STATE(2190), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56194,8 +58591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56211,109 +58607,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [35272] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - ACTIONS(1340), 1, - anon_sym_elif, - STATE(532), 1, - aux_sym_if_statement_repeat1, - STATE(652), 1, - sym_elif_clause, - STATE(770), 1, - sym_else_clause, - ACTIONS(1291), 12, - sym__dedent, - sym__string_start, + sym_await, + [36777] = 21, + ACTIONS(606), 1, + sym_identifier, + ACTIONS(608), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(614), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(624), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1293), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(628), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [35338] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(922), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(307), 1, - anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + STATE(1032), 1, sym_string, - STATE(1724), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1792), 1, sym_expression, - STATE(2190), 1, + STATE(2363), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56321,8 +58665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56338,51 +58681,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [35426] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym_identifier, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(293), 1, + sym_await, + [36872] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1720), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1852), 1, sym_expression, - STATE(2190), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56390,8 +58739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56407,109 +58755,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [35514] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - ACTIONS(1340), 1, - anon_sym_elif, - STATE(574), 1, - aux_sym_if_statement_repeat1, - STATE(652), 1, - sym_elif_clause, - STATE(762), 1, - sym_else_clause, - ACTIONS(1285), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1287), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + sym_await, + [36967] = 21, + ACTIONS(63), 1, anon_sym_not, + ACTIONS(67), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, + ACTIONS(300), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [35580] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(629), 1, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(641), 1, - anon_sym_lambda, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - STATE(863), 1, - sym_primary_expression, - STATE(866), 1, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1551), 1, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1796), 1, sym_expression, - STATE(2123), 1, + STATE(2504), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56517,8 +58813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56534,51 +58829,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [35668] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [37062] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, sym_primary_expression, - STATE(914), 1, + STATE(1157), 1, sym_string, - STATE(1585), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1963), 1, sym_expression, - STATE(2035), 1, + STATE(2406), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56586,8 +58887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56603,51 +58903,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [35756] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [37157] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(686), 1, + anon_sym_not, + ACTIONS(688), 1, + anon_sym_lambda, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1048), 1, sym_primary_expression, - STATE(914), 1, + STATE(1071), 1, sym_string, - STATE(1668), 1, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1429), 1, sym_expression, - STATE(2035), 1, + STATE(2366), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56655,8 +58961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56672,51 +58977,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [35844] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [37252] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1475), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2024), 1, sym_expression, - STATE(2184), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56724,8 +59035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56741,51 +59051,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [35932] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [37347] = 21, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(752), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1107), 1, sym_primary_expression, - STATE(837), 1, + STATE(1132), 1, sym_string, - STATE(1474), 1, + STATE(1524), 1, sym_expression, - STATE(2184), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(2405), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(762), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56793,8 +59109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56810,51 +59125,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36020] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [37442] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(611), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1482), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1913), 1, sym_expression, - STATE(2217), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56862,8 +59183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56879,51 +59199,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36108] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [37537] = 21, + ACTIONS(632), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(611), 1, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(646), 1, anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, sym_string, - STATE(1662), 1, + STATE(1045), 1, + sym_primary_expression, + STATE(1296), 1, sym_expression, - STATE(2217), 1, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56931,8 +59257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56948,51 +59273,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36196] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [37632] = 21, + ACTIONS(606), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(614), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(616), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(620), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(624), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(628), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + STATE(1032), 1, sym_string, - STATE(1733), 1, + STATE(1044), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1290), 1, sym_expression, - STATE(2190), 1, + STATE(2395), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(612), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(626), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1343), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57000,8 +59331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1341), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57017,51 +59347,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36284] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [37727] = 21, + ACTIONS(716), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(726), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(730), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1104), 1, sym_primary_expression, - STATE(875), 1, + STATE(1157), 1, sym_string, - STATE(1700), 1, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1583), 1, sym_expression, - STATE(2190), 1, + STATE(2400), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(722), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(736), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1606), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57069,8 +59405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1552), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57086,51 +59421,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36372] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [37822] = 21, + ACTIONS(658), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(660), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(670), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(674), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, - sym_primary_expression, - STATE(875), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, sym_string, - STATE(1675), 1, + STATE(1098), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1443), 1, sym_expression, - STATE(2190), 1, + STATE(2415), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(664), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(680), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1454), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57138,8 +59479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1385), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57155,51 +59495,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36460] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, + sym_await, + [37917] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(65), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1471), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2011), 1, sym_expression, - STATE(2184), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(273), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57207,8 +59553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57224,51 +59569,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36548] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, + sym_await, + [38012] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(291), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(293), 1, + ACTIONS(752), 1, anon_sym_not, - ACTIONS(299), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(309), 1, - sym__string_start, - STATE(874), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1107), 1, sym_primary_expression, - STATE(875), 1, + STATE(1132), 1, sym_string, - STATE(1715), 1, + STATE(1532), 1, sym_expression, - STATE(2190), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(2405), 1, sym__named_expression_lhs, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(297), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(289), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(305), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1535), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57276,8 +59627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1273), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57293,51 +59643,131 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36636] = 19, - ACTIONS(3), 1, + sym_await, + [38107] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_string, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1784), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, sym_comment, - ACTIONS(603), 1, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(75), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38202] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(611), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1644), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1835), 1, sym_expression, - STATE(2217), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57345,8 +59775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57362,51 +59791,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36724] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, + sym_await, + [38297] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(605), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(609), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(611), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(615), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(619), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - STATE(836), 1, - sym_primary_expression, - STATE(844), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1481), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2012), 1, sym_expression, - STATE(2217), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(613), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(621), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1480), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57414,8 +59849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1156), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57431,51 +59865,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36812] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + sym_await, + [38392] = 21, + ACTIONS(632), 1, sym_identifier, - ACTIONS(703), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(707), 1, + ACTIONS(640), 1, anon_sym_LBRACK, - ACTIONS(709), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_lambda, - ACTIONS(717), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(654), 1, anon_sym_await, - ACTIONS(723), 1, - sym__string_start, - STATE(912), 1, - sym_primary_expression, - STATE(914), 1, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, sym_string, - STATE(1638), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1780), 1, sym_expression, - STATE(2035), 1, + STATE(2420), 1, sym__named_expression_lhs, - ACTIONS(715), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, sym_ellipsis, sym_float, - ACTIONS(711), 3, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(705), 4, + ACTIONS(638), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(719), 4, + ACTIONS(652), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1567), 8, + STATE(1278), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57483,8 +59923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1290), 15, + STATE(1277), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57500,51 +59939,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36900] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + sym_await, + [38487] = 21, + ACTIONS(742), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(750), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(752), 1, anon_sym_not, - ACTIONS(641), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(645), 1, + ACTIONS(760), 1, anon_sym_LBRACE, - ACTIONS(649), 1, + ACTIONS(764), 1, anon_sym_await, - ACTIONS(651), 1, - sym__string_start, - STATE(863), 1, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1107), 1, sym_primary_expression, - STATE(866), 1, + STATE(1132), 1, sym_string, - STATE(1532), 1, + STATE(1596), 1, sym_expression, - STATE(2123), 1, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(2405), 1, sym__named_expression_lhs, - ACTIONS(643), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(639), 3, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(631), 4, + ACTIONS(748), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(647), 4, + ACTIONS(762), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1544), 8, + STATE(1581), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57552,8 +59997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1212), 15, + STATE(1580), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57569,51 +60013,131 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36988] = 19, - ACTIONS(3), 1, + sym_await, + [38582] = 21, + ACTIONS(606), 1, + sym_identifier, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, + anon_sym_await, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + STATE(1032), 1, + sym_string, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1788), 1, + sym_expression, + STATE(2363), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, sym_comment, - ACTIONS(653), 1, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(612), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1343), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38677] = 21, + ACTIONS(314), 1, sym_identifier, - ACTIONS(655), 1, + ACTIONS(316), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(661), 1, + ACTIONS(324), 1, anon_sym_not, - ACTIONS(665), 1, + ACTIONS(330), 1, anon_sym_lambda, - ACTIONS(669), 1, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(338), 1, anon_sym_await, - ACTIONS(675), 1, - sym__string_start, - STATE(839), 1, - sym_primary_expression, - STATE(841), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, sym_string, - STATE(1486), 1, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1629), 1, sym_expression, - STATE(2053), 1, + STATE(2379), 1, sym__named_expression_lhs, - ACTIONS(667), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - ACTIONS(663), 3, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(657), 4, + ACTIONS(320), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(671), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1485), 8, + STATE(1456), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57621,8 +60145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1047), 15, + STATE(1455), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57638,51 +60161,57 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37076] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_not, - ACTIONS(65), 1, - anon_sym_lambda, - ACTIONS(71), 1, + sym_await, + [38772] = 21, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(264), 1, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(300), 1, anon_sym_await, - ACTIONS(311), 1, + ACTIONS(302), 1, anon_sym_LPAREN, - ACTIONS(313), 1, + ACTIONS(306), 1, anon_sym_LBRACK, - STATE(835), 1, - sym_primary_expression, - STATE(837), 1, + ACTIONS(308), 1, + anon_sym_not, + ACTIONS(312), 1, + anon_sym_lambda, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1463), 1, + STATE(1046), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1311), 1, sym_expression, - STATE(2184), 1, + STATE(2411), 1, sym__named_expression_lhs, - ACTIONS(69), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(63), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(73), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(273), 4, + ACTIONS(281), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1478), 8, + STATE(1329), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57690,8 +60219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - sym_await, - STATE(1157), 15, + STATE(1344), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57707,3820 +60235,4766 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37164] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - ACTIONS(1340), 1, - anon_sym_elif, - STATE(553), 1, - aux_sym_if_statement_repeat1, - STATE(652), 1, - sym_elif_clause, - STATE(746), 1, - sym_else_clause, - ACTIONS(1295), 12, - sym__dedent, - sym__string_start, + sym_await, + [38867] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2007), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1297), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [37230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [38962] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1948), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1361), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [37285] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1367), 1, - anon_sym_elif, - STATE(574), 1, - aux_sym_if_statement_repeat1, - STATE(652), 1, - sym_elif_clause, - ACTIONS(1365), 12, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39057] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1973), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1363), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [37346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39152] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2020), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1372), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [37401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1267), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1265), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1267), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1265), 31, - anon_sym_DOT, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39247] = 21, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(660), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, + ACTIONS(666), 1, anon_sym_LBRACK, + ACTIONS(670), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 16, + ACTIONS(674), 1, + anon_sym_lambda, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1253), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37566] = 3, - ACTIONS(3), 1, + STATE(1095), 1, + sym_string, + STATE(1098), 1, + sym_primary_expression, + STATE(1371), 1, + sym_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(2415), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1253), 31, - anon_sym_DOT, + anon_sym_TILDE, + ACTIONS(664), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1454), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39342] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, + ACTIONS(306), 1, anon_sym_LBRACK, + ACTIONS(308), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 16, + ACTIONS(312), 1, + anon_sym_lambda, + ACTIONS(1160), 1, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1261), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37676] = 3, - ACTIONS(3), 1, + STATE(1034), 1, + sym_string, + STATE(1046), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1258), 1, + sym_expression, + STATE(2411), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, sym_comment, - ACTIONS(1283), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1281), 31, - anon_sym_DOT, + anon_sym_TILDE, + ACTIONS(75), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39437] = 22, + ACTIONS(718), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, + ACTIONS(724), 1, anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(1368), 1, + sym_identifier, + ACTIONS(1372), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1189), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1923), 1, + sym_expression, + STATE(2406), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + STATE(1399), 2, + sym_attribute, + sym_subscript, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1376), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(736), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1370), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, + STATE(1606), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1552), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39534] = 21, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(670), 1, anon_sym_not, + ACTIONS(674), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [37786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1095), 1, + sym_string, + STATE(1098), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1444), 1, + sym_expression, + STATE(2415), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1361), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(664), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(680), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [37841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1372), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, - anon_sym_case, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + STATE(1454), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39629] = 21, + ACTIONS(314), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [37896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1275), 31, - anon_sym_DOT, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1625), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1380), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 12, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39724] = 21, + ACTIONS(632), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(640), 1, anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, + sym_string, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1800), 1, + sym_expression, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1380), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(638), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(652), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 12, - sym__dedent, - sym__string_start, + STATE(1278), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39819] = 21, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(660), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(666), 1, anon_sym_LBRACK, + ACTIONS(670), 1, + anon_sym_not, + ACTIONS(674), 1, + anon_sym_lambda, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, + sym_string, + STATE(1098), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1446), 1, + sym_expression, + STATE(2415), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1376), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(664), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(680), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38116] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 1, - anon_sym_elif, - STATE(589), 1, - aux_sym_if_statement_repeat1, - STATE(669), 1, - sym_elif_clause, - ACTIONS(1365), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1454), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [39914] = 21, + ACTIONS(632), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(640), 1, anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, + sym_string, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1797), 1, + sym_expression, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1363), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(638), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(652), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1387), 12, - sym__dedent, - sym__string_start, + STATE(1278), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40009] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1978), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1385), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1387), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40104] = 21, + ACTIONS(632), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(640), 1, anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, + sym_string, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1342), 1, + sym_expression, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1385), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(638), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(652), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1389), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1278), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40199] = 21, + ACTIONS(632), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(640), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(650), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1391), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, anon_sym_not, + ACTIONS(780), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [38341] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1397), 1, - anon_sym_case, - STATE(635), 1, - aux_sym_match_statement_repeat2, - STATE(691), 1, - sym_case_clause, - ACTIONS(1393), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1138), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1037), 1, + sym_string, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1781), 1, + sym_expression, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1395), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(638), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(652), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38401] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - anon_sym_case, - STATE(612), 1, - aux_sym_match_statement_repeat2, - STATE(688), 1, - sym_case_clause, - ACTIONS(1401), 12, - sym__dedent, - sym__string_start, + STATE(1278), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40294] = 21, + ACTIONS(632), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(640), 1, anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, + sym_string, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1782), 1, + sym_expression, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1399), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(638), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(652), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38461] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - anon_sym_case, - STATE(612), 1, - aux_sym_match_statement_repeat2, - STATE(688), 1, - sym_case_clause, - ACTIONS(1393), 12, - sym__dedent, - sym__string_start, + STATE(1278), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40389] = 21, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(750), 1, anon_sym_LBRACK, + ACTIONS(752), 1, + anon_sym_not, + ACTIONS(756), 1, + anon_sym_lambda, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1107), 1, + sym_primary_expression, + STATE(1132), 1, + sym_string, + STATE(1562), 1, + sym_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(2405), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1395), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(748), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(762), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1407), 12, - sym__dedent, - sym__string_start, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40484] = 21, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(750), 1, anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1132), 1, + sym_string, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1954), 1, + sym_expression, + STATE(2376), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1405), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(748), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(762), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 12, - sym__dedent, - sym__string_start, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40579] = 21, + ACTIONS(632), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(640), 1, anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, + sym_string, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1789), 1, + sym_expression, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1409), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(638), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(652), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 12, - sym__dedent, - sym__string_start, + STATE(1278), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40674] = 21, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(660), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(666), 1, anon_sym_LBRACK, + ACTIONS(670), 1, + anon_sym_not, + ACTIONS(674), 1, + anon_sym_lambda, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, + sym_string, + STATE(1098), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1450), 1, + sym_expression, + STATE(2415), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1413), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(664), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(680), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 13, - sym__dedent, - sym__string_start, + STATE(1454), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40769] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1628), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1417), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 13, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40864] = 21, + ACTIONS(632), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(640), 1, anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, + sym_string, + STATE(1038), 1, + sym_primary_expression, + STATE(1296), 1, + sym_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1361), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(638), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(652), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1389), 12, - sym__dedent, - sym__string_start, + STATE(1278), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [40959] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1484), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1391), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 13, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41054] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(750), 1, anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1126), 1, + anon_sym_not, + ACTIONS(1128), 1, + anon_sym_lambda, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1352), 1, + anon_sym_await, + ACTIONS(1374), 1, + sym_identifier, + STATE(1132), 1, + sym_string, + STATE(1153), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1920), 1, + sym_expression, + STATE(2376), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + STATE(1611), 2, + sym_attribute, + sym_subscript, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1421), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(762), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1376), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41151] = 21, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(752), 1, anon_sym_not, + ACTIONS(756), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [38899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1427), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1107), 1, + sym_primary_expression, + STATE(1132), 1, + sym_string, + STATE(1535), 1, + sym_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(2405), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1425), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(748), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(762), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [38953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1431), 13, - sym__dedent, - sym__string_start, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41246] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(686), 1, + anon_sym_not, + ACTIONS(688), 1, + anon_sym_lambda, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1048), 1, + sym_primary_expression, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1458), 1, + sym_expression, + STATE(2366), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1429), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 12, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41341] = 21, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(750), 1, anon_sym_LBRACK, + ACTIONS(752), 1, + anon_sym_not, + ACTIONS(756), 1, + anon_sym_lambda, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1107), 1, + sym_primary_expression, + STATE(1132), 1, + sym_string, + STATE(1540), 1, + sym_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(2405), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1433), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(748), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(762), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1439), 13, - sym__dedent, - sym__string_start, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41436] = 21, + ACTIONS(632), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(640), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(650), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1437), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + ACTIONS(654), 1, + anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, anon_sym_not, + ACTIONS(780), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [39115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1439), 13, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1138), 1, anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1037), 1, + sym_string, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1820), 1, + sym_expression, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1437), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(638), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(652), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 13, - sym__string_start, - ts_builtin_sym_end, + STATE(1278), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41531] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2027), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1372), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1435), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41626] = 21, + ACTIONS(716), 1, + sym_identifier, + ACTIONS(718), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(724), 1, anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(738), 1, + anon_sym_await, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, + sym_primary_expression, + STATE(1157), 1, + sym_string, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1583), 1, + sym_expression, + STATE(2406), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1433), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(722), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(736), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39277] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - anon_sym_case, - STATE(612), 1, - aux_sym_match_statement_repeat2, - STATE(688), 1, - sym_case_clause, - ACTIONS(1443), 12, - sym__dedent, - sym__string_start, + STATE(1606), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41721] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(306), 1, anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_string, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1949), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1441), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(75), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(281), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41816] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, + ACTIONS(330), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [39337] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1397), 1, - anon_sym_case, - STATE(641), 1, - aux_sym_match_statement_repeat2, - STATE(691), 1, - sym_case_clause, - ACTIONS(1445), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1977), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1447), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39397] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_case, - STATE(612), 1, - aux_sym_match_statement_repeat2, - STATE(688), 1, - sym_case_clause, - ACTIONS(1451), 12, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41911] = 21, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(692), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(698), 1, anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, + sym_string, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1831), 1, + sym_expression, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1449), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(696), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(710), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 12, - sym__dedent, - sym__string_start, + STATE(1506), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42006] = 21, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(660), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(666), 1, anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, + sym_string, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1894), 1, + sym_expression, + STATE(2489), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1380), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(664), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(680), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 13, - sym__dedent, - sym__string_start, + STATE(1454), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42101] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1627), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1376), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1431), 13, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42196] = 21, + ACTIONS(606), 1, + sym_identifier, + ACTIONS(608), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(614), 1, anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, + anon_sym_await, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + STATE(1032), 1, + sym_string, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1290), 1, + sym_expression, + STATE(2363), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1429), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(612), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(626), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1343), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42291] = 21, + ACTIONS(606), 1, + sym_identifier, + ACTIONS(608), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(614), 1, anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, + anon_sym_await, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + STATE(1032), 1, + sym_string, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1952), 1, + sym_expression, + STATE(2363), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1409), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(612), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(626), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39673] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1397), 1, - anon_sym_case, - STATE(633), 1, - aux_sym_match_statement_repeat2, - STATE(691), 1, - sym_case_clause, - ACTIONS(1456), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1343), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42386] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2010), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1458), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1427), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42481] = 21, + ACTIONS(716), 1, + sym_identifier, + ACTIONS(718), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(724), 1, anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(738), 1, + anon_sym_await, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + STATE(1152), 1, + sym_primary_expression, + STATE(1157), 1, + sym_string, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1915), 1, + sym_expression, + STATE(2406), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1425), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(722), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(736), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1606), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42576] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1996), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1413), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39841] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - anon_sym_case, - STATE(612), 1, - aux_sym_match_statement_repeat2, - STATE(688), 1, - sym_case_clause, - ACTIONS(1462), 12, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42671] = 21, + ACTIONS(742), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(750), 1, anon_sym_LBRACK, + ACTIONS(752), 1, + anon_sym_not, + ACTIONS(756), 1, + anon_sym_lambda, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(764), 1, + anon_sym_await, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + STATE(1107), 1, + sym_primary_expression, + STATE(1132), 1, + sym_string, + STATE(1545), 1, + sym_expression, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(2405), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1460), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(748), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(762), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39901] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - anon_sym_case, - STATE(595), 1, - aux_sym_match_statement_repeat2, - STATE(688), 1, - sym_case_clause, - ACTIONS(1466), 12, - sym__dedent, - sym__string_start, + STATE(1581), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42766] = 21, + ACTIONS(606), 1, + sym_identifier, + ACTIONS(608), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(614), 1, anon_sym_LBRACK, + ACTIONS(616), 1, + anon_sym_not, + ACTIONS(620), 1, + anon_sym_lambda, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(628), 1, + anon_sym_await, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + STATE(1032), 1, + sym_string, + STATE(1044), 1, + sym_primary_expression, + STATE(1227), 1, + sym_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(2395), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1464), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(612), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(626), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [39961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 13, - sym__string_start, - ts_builtin_sym_end, + STATE(1343), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42861] = 21, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(660), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(666), 1, anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, + sym_string, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1814), 1, + sym_expression, + STATE(2489), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1417), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(664), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(680), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 13, - sym__dedent, - sym__string_start, + STATE(1454), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42956] = 21, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(692), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(698), 1, anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, + sym_string, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1805), 1, + sym_expression, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1361), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(696), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(710), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1506), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43051] = 21, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(660), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(666), 1, anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, + sym_string, + STATE(1101), 1, + sym_primary_expression, + STATE(1371), 1, + sym_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(2489), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1376), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(664), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(680), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 13, - sym__dedent, - sym__string_start, + STATE(1454), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43146] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2006), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1380), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1387), 13, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43241] = 21, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(692), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(698), 1, anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, + sym_string, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1830), 1, + sym_expression, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1385), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(696), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(710), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 12, - sym__dedent, - sym__string_start, + STATE(1506), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43336] = 22, + ACTIONS(608), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(614), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(624), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1372), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, anon_sym_not, + ACTIONS(922), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1378), 1, sym_identifier, + ACTIONS(1382), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [40285] = 3, - ACTIONS(3), 1, + STATE(1032), 1, + sym_string, + STATE(1033), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1960), 1, + sym_expression, + STATE(2363), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, sym_comment, - ACTIONS(1387), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + STATE(1609), 2, + sym_attribute, + sym_subscript, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1385), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(626), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1380), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + STATE(1343), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1341), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43433] = 21, + ACTIONS(690), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [40339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1387), 12, - sym__dedent, - sym__string_start, + ACTIONS(692), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(698), 1, anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, + sym_string, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1452), 1, + sym_expression, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1385), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(696), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(710), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 12, - sym__dedent, - sym__string_start, + STATE(1506), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43528] = 21, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(692), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(698), 1, anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, + sym_string, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1828), 1, + sym_expression, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1376), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(696), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(710), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40447] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1397), 1, - anon_sym_case, - STATE(635), 1, - aux_sym_match_statement_repeat2, - STATE(691), 1, - sym_case_clause, - ACTIONS(1401), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1506), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43623] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1910), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1399), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1397), 1, - anon_sym_case, - STATE(631), 1, - aux_sym_match_statement_repeat2, - STATE(691), 1, - sym_case_clause, - ACTIONS(1468), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43718] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(306), 1, anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_string, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1794), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1470), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(75), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(281), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43813] = 21, + ACTIONS(690), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [40567] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1397), 1, - anon_sym_case, - STATE(635), 1, - aux_sym_match_statement_repeat2, - STATE(691), 1, - sym_case_clause, - ACTIONS(1443), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(692), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(698), 1, anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, + sym_string, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1813), 1, + sym_expression, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1441), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(696), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(710), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40627] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1397), 1, - anon_sym_case, - STATE(593), 1, - aux_sym_match_statement_repeat2, - STATE(691), 1, - sym_case_clause, - ACTIONS(1466), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1506), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43908] = 21, + ACTIONS(658), 1, + sym_identifier, + ACTIONS(660), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(666), 1, anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(820), 1, + anon_sym_lambda, + ACTIONS(1108), 1, + anon_sym_STAR, + STATE(1095), 1, + sym_string, + STATE(1101), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + STATE(1809), 1, + sym_expression, + STATE(2489), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1464), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(664), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(680), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40687] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1472), 1, - anon_sym_case, - STATE(635), 1, - aux_sym_match_statement_repeat2, - STATE(691), 1, - sym_case_clause, - ACTIONS(1451), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1454), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44003] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1991), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1449), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 13, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44098] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1822), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1421), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1370), 13, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44193] = 21, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(692), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(698), 1, anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(712), 1, + anon_sym_await, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(800), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + anon_sym_STAR, + STATE(1058), 1, + sym_string, + STATE(1063), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + STATE(1806), 1, + sym_expression, + STATE(2526), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1372), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(696), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(710), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40855] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - anon_sym_case, - STATE(620), 1, - aux_sym_match_statement_repeat2, - STATE(688), 1, - sym_case_clause, - ACTIONS(1445), 12, - sym__dedent, - sym__string_start, + STATE(1506), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44288] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2009), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1447), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [40915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1407), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44383] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(306), 1, anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_string, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1799), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1405), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(75), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(281), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44478] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, + ACTIONS(330), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [40969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2003), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1361), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41023] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1397), 1, - anon_sym_case, - STATE(635), 1, - aux_sym_match_statement_repeat2, - STATE(691), 1, - sym_case_clause, - ACTIONS(1462), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44573] = 22, + ACTIONS(718), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(724), 1, anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(954), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_lambda, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1372), 1, + anon_sym_await, + ACTIONS(1384), 1, + sym_identifier, + STATE(1152), 1, + sym_primary_expression, + STATE(1157), 1, + sym_string, + STATE(1516), 1, + sym_list_splat_pattern, + STATE(1923), 1, + sym_expression, + STATE(2406), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + STATE(1607), 2, + sym_attribute, + sym_subscript, + ACTIONS(728), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1460), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(736), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1386), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, + STATE(1606), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1552), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44670] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, + ACTIONS(330), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [41083] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - anon_sym_case, - STATE(610), 1, - aux_sym_match_statement_repeat2, - STATE(688), 1, - sym_case_clause, - ACTIONS(1456), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1988), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1458), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41143] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - anon_sym_case, - STATE(594), 1, - aux_sym_match_statement_repeat2, - STATE(688), 1, - sym_case_clause, - ACTIONS(1468), 12, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44765] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1626), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1470), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44860] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1995), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1380), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41257] = 3, - ACTIONS(3), 1, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44955] = 9, + ACTIONS(1360), 1, + anon_sym_else, + ACTIONS(1364), 1, + anon_sym_finally, + ACTIONS(1366), 1, + anon_sym_except_STAR, + STATE(751), 1, + sym_else_clause, + STATE(831), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1370), 12, - sym__string_start, + sym_line_continuation, + STATE(667), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1340), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -61532,7 +65006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1372), 34, + ACTIONS(1338), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -61544,14 +65018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -61567,318 +65038,767 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [41311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 13, - sym__string_start, - ts_builtin_sym_end, + [45026] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(2028), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1376), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [45121] = 22, + ACTIONS(608), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(614), 1, anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(920), 1, + anon_sym_not, + ACTIONS(922), 1, + anon_sym_lambda, + ACTIONS(1382), 1, + anon_sym_await, + ACTIONS(1388), 1, + sym_identifier, + STATE(1032), 1, + sym_string, + STATE(1236), 1, + sym_list_splat_pattern, + STATE(1316), 1, + sym_primary_expression, + STATE(1960), 1, + sym_expression, + STATE(2363), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + STATE(1186), 2, + sym_attribute, + sym_subscript, + ACTIONS(618), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1361), 34, - anon_sym_import, - anon_sym_from, + ACTIONS(626), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1390), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, + STATE(1343), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1341), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [45218] = 21, + ACTIONS(63), 1, anon_sym_not, + ACTIONS(67), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, + ACTIONS(300), 1, anon_sym_await, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_string, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1786), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(75), 4, + sym_integer, sym_true, sym_false, sym_none, - [41419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1387), 13, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [45313] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1994), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1385), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 13, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [45408] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1984), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1380), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41527] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - STATE(796), 1, - sym_else_clause, - ACTIONS(1475), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [45503] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1953), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1477), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [45598] = 21, + ACTIONS(632), 1, sym_identifier, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, anon_sym_await, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(778), 1, + anon_sym_not, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_STAR, + STATE(1037), 1, + sym_string, + STATE(1038), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + STATE(1853), 1, + sym_expression, + STATE(2420), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(638), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 4, + sym_integer, sym_true, sym_false, sym_none, - [41584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1278), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [45693] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1976), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, + ACTIONS(320), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [45788] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1979), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, sym_float, - ACTIONS(1481), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [45883] = 21, + ACTIONS(63), 1, anon_sym_not, + ACTIONS(67), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, + ACTIONS(300), 1, anon_sym_await, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_string, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1842), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(75), 4, + sym_integer, sym_true, sym_false, sym_none, - [41637] = 3, - ACTIONS(3), 1, + ACTIONS(281), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [45978] = 9, + ACTIONS(1360), 1, + anon_sym_else, + ACTIONS(1362), 1, + anon_sym_except, + ACTIONS(1364), 1, + anon_sym_finally, + STATE(751), 1, + sym_else_clause, + STATE(831), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1485), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + STATE(665), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1340), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -61889,7 +65809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1483), 33, + ACTIONS(1338), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -61901,8 +65821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -61923,635 +65841,732 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [41690] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1228), 1, - anon_sym_finally, - STATE(789), 1, - sym_finally_clause, - ACTIONS(1489), 12, - sym__dedent, - sym__string_start, + [46049] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1487), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1999), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41747] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - STATE(743), 1, - sym_else_clause, - ACTIONS(1493), 12, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [46144] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1624), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1491), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41804] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - STATE(813), 1, - sym_else_clause, - ACTIONS(1475), 12, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [46239] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(322), 1, anon_sym_LBRACK, + ACTIONS(324), 1, + anon_sym_not, + ACTIONS(330), 1, + anon_sym_lambda, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_await, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1974), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1477), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41861] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1228), 1, - anon_sym_finally, - STATE(755), 1, - sym_finally_clause, - ACTIONS(1497), 12, - sym__dedent, - sym__string_start, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [46334] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(306), 1, anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_string, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1311), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1495), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(75), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(281), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [46429] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, + ACTIONS(330), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [41918] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - STATE(754), 1, - sym_else_clause, - ACTIONS(1501), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1918), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1499), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [41975] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1198), 1, - anon_sym_finally, - STATE(793), 1, - sym_finally_clause, - ACTIONS(1497), 12, - sym__string_start, - ts_builtin_sym_end, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [46524] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(300), 1, + anon_sym_await, + ACTIONS(302), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(306), 1, anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_string, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(1798), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1495), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(75), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(281), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [46619] = 21, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(324), 1, anon_sym_not, + ACTIONS(330), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [42032] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - STATE(785), 1, - sym_else_clause, - ACTIONS(1505), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + STATE(1071), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1997), 1, + sym_expression, + STATE(2379), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1503), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(320), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [42089] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - STATE(747), 1, - sym_else_clause, - ACTIONS(1507), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1509), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + STATE(1456), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [46714] = 21, + ACTIONS(63), 1, anon_sym_not, + ACTIONS(67), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(266), 1, sym_identifier, + ACTIONS(300), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [42146] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - STATE(788), 1, - sym_else_clause, - ACTIONS(1513), 12, - sym__dedent, - sym__string_start, + ACTIONS(302), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(306), 1, anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(1034), 1, + sym_string, + STATE(1036), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + STATE(2029), 1, + sym_expression, + STATE(2504), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1511), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(75), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [42203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1517), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1515), 33, - anon_sym_import, - anon_sym_from, + ACTIONS(281), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42256] = 5, - ACTIONS(3), 1, + STATE(1329), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [46809] = 7, + ACTIONS(1394), 1, + anon_sym_COMMA, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1224), 1, - anon_sym_else, - STATE(800), 1, - sym_else_clause, - ACTIONS(1507), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + sym_line_continuation, + ACTIONS(1401), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1403), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1397), 15, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1509), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42313] = 3, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46875] = 7, + ACTIONS(275), 1, + anon_sym_COMMA, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1479), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + sym_line_continuation, + ACTIONS(287), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(298), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(270), 15, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1481), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(268), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42366] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46941] = 8, + ACTIONS(1360), 1, anon_sym_else, - STATE(766), 1, + ACTIONS(1409), 1, + anon_sym_elif, + STATE(654), 1, + aux_sym_if_statement_repeat1, + STATE(768), 1, + sym_elif_clause, + STATE(829), 1, sym_else_clause, - ACTIONS(1501), 12, - sym__string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1405), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -62563,7 +66578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1499), 31, + ACTIONS(1407), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -62595,117 +66610,76 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [42423] = 3, - ACTIONS(3), 1, + [47008] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1517), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + sym_line_continuation, + ACTIONS(1413), 16, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1515), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1411), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42476] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47065] = 8, + ACTIONS(1360), 1, anon_sym_else, - STATE(774), 1, + ACTIONS(1409), 1, + anon_sym_elif, + STATE(679), 1, + aux_sym_if_statement_repeat1, + STATE(768), 1, + sym_elif_clause, + STATE(852), 1, sym_else_clause, - ACTIONS(1513), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1511), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42533] = 5, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1198), 1, - anon_sym_finally, - STATE(805), 1, - sym_finally_clause, - ACTIONS(1489), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1415), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -62717,7 +66691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1487), 31, + ACTIONS(1417), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -62749,12 +66723,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [42590] = 3, - ACTIONS(3), 1, + [47132] = 8, + ACTIONS(1342), 1, + anon_sym_else, + ACTIONS(1419), 1, + anon_sym_elif, + STATE(683), 1, + aux_sym_if_statement_repeat1, + STATE(761), 1, + sym_elif_clause, + STATE(879), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1485), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1415), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -62765,7 +66750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1483), 33, + ACTIONS(1417), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -62777,8 +66762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -62799,15 +66782,22 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [42643] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 1, + [47199] = 8, + ACTIONS(1360), 1, anon_sym_else, - STATE(803), 1, + ACTIONS(1409), 1, + anon_sym_elif, + STATE(662), 1, + aux_sym_if_statement_repeat1, + STATE(768), 1, + sym_elif_clause, + STATE(880), 1, sym_else_clause, - ACTIONS(1493), 12, - sym__string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1421), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -62819,7 +66809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1491), 31, + ACTIONS(1423), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -62851,161 +66841,302 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [42700] = 5, - ACTIONS(3), 1, + [47266] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(1194), 1, - anon_sym_else, - STATE(807), 1, - sym_else_clause, - ACTIONS(1505), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1427), 3, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1433), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1430), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1503), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1425), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42757] = 3, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47327] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(1521), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(347), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(603), 3, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(344), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1519), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(342), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_match, - anon_sym_case, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42809] = 3, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47388] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1525), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1437), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1435), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47445] = 6, + ACTIONS(1441), 1, + anon_sym_COMMA, + ACTIONS(1448), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1446), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1444), 15, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1439), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47508] = 6, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(1452), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1403), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1455), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1523), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1450), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_match, - anon_sym_case, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42861] = 3, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47571] = 8, + ACTIONS(1360), 1, + anon_sym_else, + ACTIONS(1409), 1, + anon_sym_elif, + STATE(679), 1, + aux_sym_if_statement_repeat1, + STATE(768), 1, + sym_elif_clause, + STATE(830), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1521), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1457), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -63017,7 +67148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1519), 32, + ACTIONS(1459), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63030,7 +67161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -63050,12 +67180,77 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [42913] = 3, - ACTIONS(3), 1, + [47638] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1521), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1463), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1461), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47695] = 8, + ACTIONS(1342), 1, + anon_sym_else, + ACTIONS(1419), 1, + anon_sym_elif, + STATE(669), 1, + aux_sym_if_statement_repeat1, + STATE(761), 1, + sym_elif_clause, + STATE(885), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1421), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63066,7 +67261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1519), 32, + ACTIONS(1423), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63079,7 +67274,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -63099,11 +67293,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [42965] = 3, - ACTIONS(3), 1, + [47762] = 5, + ACTIONS(1469), 1, + anon_sym_except, + ACTIONS(3), 2, sym_comment, - ACTIONS(1527), 12, - sym__string_start, + sym_line_continuation, + STATE(665), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1465), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -63115,7 +67315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1529), 32, + ACTIONS(1467), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63127,12 +67327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63148,11 +67349,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43017] = 3, - ACTIONS(3), 1, + [47823] = 6, + ACTIONS(1394), 1, + anon_sym_COMMA, + ACTIONS(1401), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1403), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1397), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47886] = 5, + ACTIONS(1476), 1, + anon_sym_except_STAR, + ACTIONS(3), 2, sym_comment, - ACTIONS(1521), 12, - sym__string_start, + sym_line_continuation, + STATE(667), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1472), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -63164,7 +67428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1519), 32, + ACTIONS(1474), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63176,12 +67440,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63197,12 +67462,77 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43069] = 3, - ACTIONS(3), 1, + [47947] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1531), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1481), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48004] = 8, + ACTIONS(1342), 1, + anon_sym_else, + ACTIONS(1419), 1, + anon_sym_elif, + STATE(683), 1, + aux_sym_if_statement_repeat1, + STATE(761), 1, + sym_elif_clause, + STATE(834), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1457), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63213,7 +67543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1533), 32, + ACTIONS(1459), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63226,7 +67556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -63246,12 +67575,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43121] = 3, - ACTIONS(3), 1, + [48071] = 8, + ACTIONS(1342), 1, + anon_sym_else, + ACTIONS(1419), 1, + anon_sym_elif, + STATE(655), 1, + aux_sym_if_statement_repeat1, + STATE(761), 1, + sym_elif_clause, + STATE(835), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1535), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1405), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63262,7 +67602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1537), 32, + ACTIONS(1407), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63275,7 +67615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -63295,23 +67634,191 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43173] = 3, - ACTIONS(3), 1, + [48138] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1541), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + sym_line_continuation, + ACTIONS(1481), 16, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48195] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1413), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1411), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48252] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1485), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48309] = 5, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(674), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1465), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1539), 32, + ACTIONS(1467), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63323,6 +67830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -63344,12 +67852,75 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43225] = 3, - ACTIONS(3), 1, + [48370] = 6, + ACTIONS(1492), 1, + anon_sym_COMMA, + ACTIONS(1499), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1543), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1497), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1495), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1490), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [48433] = 5, + ACTIONS(1501), 1, + anon_sym_except_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(676), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1472), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63360,7 +67931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1545), 32, + ACTIONS(1474), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63372,12 +67943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63393,12 +67965,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43277] = 3, - ACTIONS(3), 1, + [48494] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1547), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1506), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63409,7 +67982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1549), 32, + ACTIONS(1504), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63421,12 +67994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63442,12 +68018,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43329] = 3, - ACTIONS(3), 1, + [48550] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1553), 12, + sym_line_continuation, + ACTIONS(1510), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63458,7 +68035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1551), 32, + ACTIONS(1508), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63470,12 +68047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63491,11 +68071,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43381] = 3, - ACTIONS(3), 1, + [48606] = 6, + ACTIONS(1516), 1, + anon_sym_elif, + STATE(679), 1, + aux_sym_if_statement_repeat1, + STATE(768), 1, + sym_elif_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1547), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1512), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -63507,7 +68094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1549), 32, + ACTIONS(1514), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63519,8 +68106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -63540,11 +68127,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43433] = 3, - ACTIONS(3), 1, + [48668] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1521), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1510), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -63556,7 +68144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1519), 32, + ACTIONS(1508), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63568,12 +68156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63589,11 +68180,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43485] = 3, - ACTIONS(3), 1, + [48724] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1555), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1519), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -63605,7 +68197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1557), 32, + ACTIONS(1521), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63617,12 +68209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63638,12 +68233,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43537] = 3, - ACTIONS(3), 1, + [48780] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1559), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1519), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63654,7 +68250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1561), 32, + ACTIONS(1521), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63666,12 +68262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63687,12 +68286,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43589] = 3, - ACTIONS(3), 1, + [48836] = 6, + ACTIONS(1523), 1, + anon_sym_elif, + STATE(683), 1, + aux_sym_if_statement_repeat1, + STATE(761), 1, + sym_elif_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1565), 12, + sym_line_continuation, + ACTIONS(1512), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63703,7 +68309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1563), 32, + ACTIONS(1514), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63715,8 +68321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -63736,11 +68342,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43641] = 3, - ACTIONS(3), 1, + [48898] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1559), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1526), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -63752,7 +68359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1561), 32, + ACTIONS(1528), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63764,12 +68371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63785,11 +68395,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43693] = 3, - ACTIONS(3), 1, + [48954] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1547), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1530), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -63801,7 +68412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1549), 32, + ACTIONS(1532), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63813,12 +68424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63834,12 +68448,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43745] = 3, - ACTIONS(3), 1, + [49010] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1565), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1526), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63850,7 +68465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1563), 32, + ACTIONS(1528), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63862,12 +68477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63883,11 +68501,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43797] = 3, - ACTIONS(3), 1, + [49066] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1547), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1506), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -63899,7 +68518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1549), 32, + ACTIONS(1504), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63911,12 +68530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63932,12 +68554,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43849] = 3, - ACTIONS(3), 1, + [49122] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1569), 12, + sym_line_continuation, + ACTIONS(1530), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63948,7 +68571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1567), 32, + ACTIONS(1532), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63960,7 +68583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -63981,12 +68607,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43901] = 3, - ACTIONS(3), 1, + [49178] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1555), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1510), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -63997,7 +68624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1557), 32, + ACTIONS(1508), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64009,12 +68636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64030,14 +68659,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43953] = 3, - ACTIONS(3), 1, + [49233] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1559), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1506), 13, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -64046,7 +68677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1561), 32, + ACTIONS(1504), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64058,12 +68689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64079,12 +68711,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44005] = 3, - ACTIONS(3), 1, + [49288] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1573), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1534), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64095,7 +68728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1571), 32, + ACTIONS(1536), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64107,12 +68740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64128,14 +68763,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44057] = 3, - ACTIONS(3), 1, + [49343] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1559), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1538), 13, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -64144,7 +68781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1561), 32, + ACTIONS(1540), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64156,12 +68793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64177,12 +68815,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44109] = 3, - ACTIONS(3), 1, + [49398] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1521), 12, + sym_line_continuation, + ACTIONS(1534), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64193,7 +68832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1519), 32, + ACTIONS(1536), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64205,12 +68844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64226,12 +68867,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44161] = 3, - ACTIONS(3), 1, + [49453] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1521), 12, + sym_line_continuation, + ACTIONS(1506), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64242,7 +68884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1519), 32, + ACTIONS(1504), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64254,12 +68896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64275,14 +68919,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44213] = 3, - ACTIONS(3), 1, + [49508] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1521), 12, + sym_line_continuation, + ACTIONS(1544), 13, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -64291,7 +68937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1519), 32, + ACTIONS(1542), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64303,12 +68949,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64324,12 +68971,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44265] = 3, - ACTIONS(3), 1, + [49563] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1525), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1548), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64340,7 +68988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1523), 32, + ACTIONS(1546), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64352,12 +69000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64373,12 +69023,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44317] = 3, - ACTIONS(3), 1, + [49618] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1569), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1526), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64389,7 +69040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1567), 32, + ACTIONS(1528), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64401,11 +69052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -64422,60 +69075,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1575), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1577), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, + [49673] = 6, + ACTIONS(1554), 1, anon_sym_case, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [44421] = 3, - ACTIONS(3), 1, + STATE(747), 1, + aux_sym_match_statement_repeat2, + STATE(797), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1579), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1550), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -64487,7 +69098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1581), 32, + ACTIONS(1552), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64500,7 +69111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -64520,14 +69130,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44473] = 3, - ACTIONS(3), 1, + [49734] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1583), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1558), 13, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -64536,7 +69148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1585), 32, + ACTIONS(1556), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64548,12 +69160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64569,12 +69182,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44525] = 3, - ACTIONS(3), 1, + [49789] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1531), 12, + sym_line_continuation, + ACTIONS(1562), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64585,7 +69199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1533), 32, + ACTIONS(1560), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64597,12 +69211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64618,11 +69234,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44577] = 3, - ACTIONS(3), 1, + [49844] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1583), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1506), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -64634,7 +69251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1585), 32, + ACTIONS(1504), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64646,12 +69263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64667,12 +69286,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44629] = 3, - ACTIONS(3), 1, + [49899] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1587), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1530), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64683,7 +69303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1589), 32, + ACTIONS(1532), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64695,12 +69315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64716,14 +69338,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44681] = 3, - ACTIONS(3), 1, + [49954] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1579), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1566), 13, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -64732,7 +69356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1581), 32, + ACTIONS(1564), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64744,12 +69368,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64765,12 +69390,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44733] = 3, - ACTIONS(3), 1, + [50009] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1583), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1570), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64781,7 +69407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1585), 32, + ACTIONS(1568), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64793,12 +69419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64814,12 +69442,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44785] = 3, - ACTIONS(3), 1, + [50064] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1535), 12, + sym_line_continuation, + ACTIONS(1574), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64830,7 +69459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1537), 32, + ACTIONS(1572), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64842,12 +69471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64863,12 +69494,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44837] = 3, - ACTIONS(3), 1, + [50119] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1583), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1519), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64879,7 +69511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1585), 32, + ACTIONS(1521), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64891,12 +69523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64912,12 +69546,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44889] = 3, - ACTIONS(3), 1, + [50174] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1587), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1578), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64928,7 +69563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1589), 32, + ACTIONS(1576), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64940,12 +69575,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64961,12 +69598,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44941] = 3, - ACTIONS(3), 1, + [50229] = 6, + ACTIONS(1584), 1, + anon_sym_case, + STATE(721), 1, + aux_sym_match_statement_repeat2, + STATE(795), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1543), 12, + sym_line_continuation, + ACTIONS(1582), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -64977,7 +69621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1545), 32, + ACTIONS(1580), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64990,7 +69634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -65010,60 +69653,87 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1591), 12, - sym__string_start, - ts_builtin_sym_end, + [50290] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1586), 1, + sym_identifier, + ACTIONS(1588), 1, anon_sym_LPAREN, + ACTIONS(1590), 1, anon_sym_STAR, - anon_sym_AT, + ACTIONS(1594), 1, anon_sym_LBRACK, + ACTIONS(1596), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1630), 1, + sym_list_splat_pattern, + STATE(1653), 1, + sym_primary_expression, + STATE(2004), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_attribute, + sym_subscript, + STATE(1980), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1593), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_case, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [45045] = 3, - ACTIONS(3), 1, + ACTIONS(908), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1592), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [50379] = 6, + ACTIONS(1554), 1, + anon_sym_case, + STATE(738), 1, + aux_sym_match_statement_repeat2, + STATE(797), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1591), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1582), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -65075,7 +69745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1593), 32, + ACTIONS(1580), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65088,7 +69758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -65108,14 +69777,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45097] = 3, - ACTIONS(3), 1, + [50440] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1547), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1544), 13, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -65124,7 +69795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1549), 32, + ACTIONS(1542), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65136,12 +69807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65157,12 +69829,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45149] = 3, - ACTIONS(3), 1, + [50495] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1547), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1548), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -65173,7 +69846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1549), 32, + ACTIONS(1546), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65185,12 +69858,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65206,14 +69881,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45201] = 3, - ACTIONS(3), 1, + [50550] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1555), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1530), 13, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -65222,7 +69899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1557), 32, + ACTIONS(1532), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65234,12 +69911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65255,14 +69933,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45253] = 3, - ACTIONS(3), 1, + [50605] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1559), 12, + sym_line_continuation, + ACTIONS(1506), 13, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -65271,7 +69951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1561), 32, + ACTIONS(1504), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65283,12 +69963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65304,12 +69985,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45305] = 3, - ACTIONS(3), 1, + [50660] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1559), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1578), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -65320,7 +70002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1561), 32, + ACTIONS(1576), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65332,12 +70014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65353,14 +70037,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45357] = 3, - ACTIONS(3), 1, + [50715] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1547), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1526), 13, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -65369,7 +70055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1549), 32, + ACTIONS(1528), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65381,12 +70067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65402,12 +70089,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45409] = 3, - ACTIONS(3), 1, + [50770] = 6, + ACTIONS(1584), 1, + anon_sym_case, + STATE(721), 1, + aux_sym_match_statement_repeat2, + STATE(795), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1547), 12, + sym_line_continuation, + ACTIONS(1600), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -65418,7 +70112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1549), 32, + ACTIONS(1598), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65431,7 +70125,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -65451,14 +70144,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45461] = 3, - ACTIONS(3), 1, + [50831] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1555), 12, + sym_line_continuation, + ACTIONS(1538), 13, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -65467,7 +70162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1557), 32, + ACTIONS(1540), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65479,12 +70174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65500,12 +70196,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45513] = 3, - ACTIONS(3), 1, + [50886] = 6, + ACTIONS(1584), 1, + anon_sym_case, + STATE(708), 1, + aux_sym_match_statement_repeat2, + STATE(795), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1559), 12, + sym_line_continuation, + ACTIONS(1604), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -65516,7 +70219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1561), 32, + ACTIONS(1602), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65529,7 +70232,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -65549,14 +70251,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45565] = 3, - ACTIONS(3), 1, + [50947] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1559), 12, + sym_line_continuation, + ACTIONS(1526), 13, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -65565,7 +70269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1561), 32, + ACTIONS(1528), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65577,12 +70281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65598,12 +70303,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45617] = 3, - ACTIONS(3), 1, + [51002] = 6, + ACTIONS(1610), 1, + anon_sym_case, + STATE(721), 1, + aux_sym_match_statement_repeat2, + STATE(795), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1575), 12, + sym_line_continuation, + ACTIONS(1608), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -65614,7 +70326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1577), 32, + ACTIONS(1606), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65627,7 +70339,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -65647,12 +70358,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45669] = 3, - ACTIONS(3), 1, + [51063] = 6, + ACTIONS(1584), 1, + anon_sym_case, + STATE(721), 1, + aux_sym_match_statement_repeat2, + STATE(795), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1579), 12, + sym_line_continuation, + ACTIONS(1615), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -65663,7 +70381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1581), 32, + ACTIONS(1613), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65676,7 +70394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -65696,112 +70413,85 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 12, - sym__dedent, - sym__string_start, + [51124] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1586), 1, + sym_identifier, + ACTIONS(1588), 1, anon_sym_LPAREN, + ACTIONS(1590), 1, anon_sym_STAR, - anon_sym_AT, + ACTIONS(1594), 1, anon_sym_LBRACK, + ACTIONS(1596), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1630), 1, + sym_list_splat_pattern, + STATE(1653), 1, + sym_primary_expression, + STATE(2004), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_attribute, + sym_subscript, + STATE(1980), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1585), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_case, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(336), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [45773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1585), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(892), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1592), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45825] = 3, - ACTIONS(3), 1, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [51213] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1587), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1519), 13, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -65810,7 +70500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1589), 32, + ACTIONS(1521), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65822,12 +70512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65843,14 +70534,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45877] = 3, - ACTIONS(3), 1, + [51268] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1579), 12, + sym_line_continuation, + ACTIONS(1510), 13, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -65859,7 +70552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1581), 32, + ACTIONS(1508), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65871,12 +70564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65892,12 +70586,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45929] = 3, - ACTIONS(3), 1, + [51323] = 6, + ACTIONS(1554), 1, + anon_sym_case, + STATE(736), 1, + aux_sym_match_statement_repeat2, + STATE(797), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1583), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1617), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -65908,7 +70609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1585), 32, + ACTIONS(1619), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65921,7 +70622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -65941,12 +70641,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45981] = 3, - ACTIONS(3), 1, + [51384] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1583), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1530), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -65957,7 +70658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1585), 32, + ACTIONS(1532), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65969,12 +70670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65990,14 +70693,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46033] = 3, - ACTIONS(3), 1, + [51439] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1587), 12, + sym_line_continuation, + ACTIONS(1519), 13, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -66006,7 +70711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1589), 32, + ACTIONS(1521), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66018,12 +70723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66039,14 +70745,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46085] = 3, - ACTIONS(3), 1, + [51494] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1591), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1510), 13, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -66055,7 +70763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1593), 32, + ACTIONS(1508), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66067,12 +70775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66088,12 +70797,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46137] = 3, - ACTIONS(3), 1, + [51549] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1591), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1526), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66104,7 +70814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1593), 32, + ACTIONS(1528), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66116,12 +70826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66137,12 +70849,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46189] = 3, - ACTIONS(3), 1, + [51604] = 6, + ACTIONS(1584), 1, + anon_sym_case, + STATE(717), 1, + aux_sym_match_statement_repeat2, + STATE(795), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1527), 12, + sym_line_continuation, + ACTIONS(1617), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66153,7 +70872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1529), 32, + ACTIONS(1619), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66166,7 +70885,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -66186,12 +70904,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46241] = 3, - ACTIONS(3), 1, + [51665] = 6, + ACTIONS(1584), 1, + anon_sym_case, + STATE(721), 1, + aux_sym_match_statement_repeat2, + STATE(795), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1573), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1623), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66202,7 +70927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1571), 32, + ACTIONS(1621), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66215,7 +70940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -66235,12 +70959,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46293] = 3, - ACTIONS(3), 1, + [51726] = 6, + ACTIONS(1584), 1, + anon_sym_case, + STATE(722), 1, + aux_sym_match_statement_repeat2, + STATE(795), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1541), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1627), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66251,7 +70982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1539), 32, + ACTIONS(1625), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66268,7 +70999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66284,11 +71014,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46345] = 3, - ACTIONS(3), 1, + [51787] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1553), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1574), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -66300,7 +71031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1551), 32, + ACTIONS(1572), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66312,12 +71043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66333,12 +71066,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46397] = 3, - ACTIONS(3), 1, + [51842] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1597), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1570), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66349,7 +71083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1595), 31, + ACTIONS(1568), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66361,11 +71095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66381,12 +71118,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46448] = 3, - ACTIONS(3), 1, + [51897] = 6, + ACTIONS(1554), 1, + anon_sym_case, + STATE(738), 1, + aux_sym_match_statement_repeat2, + STATE(797), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1601), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1600), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66397,7 +71141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1599), 31, + ACTIONS(1598), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66429,11 +71173,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46499] = 3, - ACTIONS(3), 1, + [51958] = 6, + ACTIONS(1554), 1, + anon_sym_case, + STATE(710), 1, + aux_sym_match_statement_repeat2, + STATE(797), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1603), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1604), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -66445,7 +71196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1605), 31, + ACTIONS(1602), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66477,11 +71228,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46550] = 3, - ACTIONS(3), 1, + [52019] = 6, + ACTIONS(1629), 1, + anon_sym_case, + STATE(738), 1, + aux_sym_match_statement_repeat2, + STATE(797), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1607), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1608), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -66493,7 +71251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1609), 31, + ACTIONS(1606), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66525,12 +71283,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46601] = 3, - ACTIONS(3), 1, + [52080] = 6, + ACTIONS(1554), 1, + anon_sym_case, + STATE(738), 1, + aux_sym_match_statement_repeat2, + STATE(797), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1613), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1615), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66541,7 +71306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1611), 31, + ACTIONS(1613), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66573,12 +71338,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46652] = 3, - ACTIONS(3), 1, + [52141] = 6, + ACTIONS(1584), 1, + anon_sym_case, + STATE(732), 1, + aux_sym_match_statement_repeat2, + STATE(795), 1, + sym_case_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1615), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1550), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66589,7 +71361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1617), 31, + ACTIONS(1552), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66621,14 +71393,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46703] = 3, - ACTIONS(3), 1, + [52202] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1190), 12, + sym_line_continuation, + ACTIONS(1530), 13, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -66637,7 +71411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1192), 31, + ACTIONS(1532), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66649,11 +71423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66669,14 +71445,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46754] = 3, - ACTIONS(3), 1, + [52257] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1621), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1566), 13, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -66685,7 +71463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1619), 31, + ACTIONS(1564), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66697,11 +71475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66717,14 +71497,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46805] = 3, - ACTIONS(3), 1, + [52312] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1623), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1558), 13, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -66733,7 +71515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1625), 31, + ACTIONS(1556), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66745,11 +71527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66765,12 +71549,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46856] = 3, - ACTIONS(3), 1, + [52367] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1489), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1562), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66781,7 +71566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1487), 31, + ACTIONS(1560), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66793,11 +71578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66813,76 +71601,175 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46907] = 19, - ACTIONS(3), 1, + [52422] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1627), 1, - sym_identifier, - ACTIONS(1629), 1, + sym_line_continuation, + ACTIONS(1510), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1631), 1, - anon_sym_RPAREN, - ACTIONS(1633), 1, anon_sym_STAR, - ACTIONS(1637), 1, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1369), 1, - sym_primary_expression, - STATE(1959), 1, - sym_pattern, - STATE(2141), 1, - sym__patterns, - ACTIONS(301), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, sym_ellipsis, + anon_sym_LBRACE, sym_float, - STATE(1374), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, + ACTIONS(1508), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [52477] = 6, + ACTIONS(1554), 1, + anon_sym_case, + STATE(739), 1, + aux_sym_match_statement_repeat2, + STATE(797), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1627), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1625), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(1635), 5, + [52538] = 6, + ACTIONS(1554), 1, + anon_sym_case, + STATE(738), 1, + aux_sym_match_statement_repeat2, + STATE(797), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1623), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1621), 31, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [46990] = 3, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [52599] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1607), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1519), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66893,7 +71780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1609), 31, + ACTIONS(1521), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66905,11 +71792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66925,12 +71815,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47041] = 3, - ACTIONS(3), 1, + [52654] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1641), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1632), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66941,7 +71832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1639), 31, + ACTIONS(1634), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66953,6 +71844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -66973,12 +71866,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47092] = 3, - ACTIONS(3), 1, + [52708] = 5, + ACTIONS(1346), 1, + anon_sym_finally, + STATE(898), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1645), 12, + sym_line_continuation, + ACTIONS(1638), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -66989,7 +71887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1643), 31, + ACTIONS(1636), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67021,12 +71919,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47143] = 3, - ACTIONS(3), 1, + [52766] = 5, + ACTIONS(1364), 1, + anon_sym_finally, + STATE(823), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1649), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1638), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67037,7 +71940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1647), 31, + ACTIONS(1636), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67069,11 +71972,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47194] = 3, - ACTIONS(3), 1, + [52824] = 5, + ACTIONS(1360), 1, + anon_sym_else, + STATE(836), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1651), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1640), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -67085,7 +71993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1653), 31, + ACTIONS(1642), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67117,12 +72025,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47245] = 3, - ACTIONS(3), 1, + [52882] = 5, + ACTIONS(1360), 1, + anon_sym_else, + STATE(868), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1657), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1644), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67133,7 +72046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1655), 31, + ACTIONS(1646), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67165,12 +72078,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47296] = 3, - ACTIONS(3), 1, + [52940] = 5, + ACTIONS(1364), 1, + anon_sym_finally, + STATE(886), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1661), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1648), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67181,7 +72099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1659), 31, + ACTIONS(1650), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67213,12 +72131,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47347] = 3, - ACTIONS(3), 1, + [52998] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1663), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1654), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67229,7 +72148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1665), 31, + ACTIONS(1652), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67241,6 +72160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -67261,12 +72182,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47398] = 3, - ACTIONS(3), 1, + [53052] = 5, + ACTIONS(1342), 1, + anon_sym_else, + STATE(828), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1669), 12, + sym_line_continuation, + ACTIONS(1658), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67277,7 +72203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1667), 31, + ACTIONS(1656), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67309,12 +72235,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47449] = 3, - ACTIONS(3), 1, + [53110] = 5, + ACTIONS(1342), 1, + anon_sym_else, + STATE(893), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1623), 12, + sym_line_continuation, + ACTIONS(1640), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67325,7 +72256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1625), 31, + ACTIONS(1642), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67357,11 +72288,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47500] = 3, - ACTIONS(3), 1, + [53168] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1613), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1654), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -67373,7 +72305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1611), 31, + ACTIONS(1652), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67385,6 +72317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -67405,12 +72339,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47551] = 3, - ACTIONS(3), 1, + [53222] = 5, + ACTIONS(1342), 1, + anon_sym_else, + STATE(901), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1649), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1644), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67421,7 +72360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1647), 31, + ACTIONS(1646), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67453,11 +72392,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47602] = 3, - ACTIONS(3), 1, + [53280] = 5, + ACTIONS(1360), 1, + anon_sym_else, + STATE(877), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1671), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1658), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -67469,7 +72413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1673), 31, + ACTIONS(1656), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67501,60 +72445,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47653] = 3, - ACTIONS(3), 1, + [53338] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1641), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1639), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1675), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1662), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67565,7 +72462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1677), 31, + ACTIONS(1660), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67577,6 +72474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -67597,11 +72496,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47755] = 3, - ACTIONS(3), 1, + [53392] = 5, + ACTIONS(1360), 1, + anon_sym_else, + STATE(846), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1669), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1664), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -67613,7 +72517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1667), 31, + ACTIONS(1666), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67645,11 +72549,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47806] = 3, - ACTIONS(3), 1, + [53450] = 5, + ACTIONS(1360), 1, + anon_sym_else, + STATE(821), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1489), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1668), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -67661,7 +72570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1487), 31, + ACTIONS(1670), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67693,12 +72602,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47857] = 3, - ACTIONS(3), 1, + [53508] = 5, + ACTIONS(1342), 1, + anon_sym_else, + STATE(875), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1651), 12, + sym_line_continuation, + ACTIONS(1674), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67709,7 +72623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1653), 31, + ACTIONS(1672), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67741,60 +72655,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47908] = 3, - ACTIONS(3), 1, + [53566] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1190), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1192), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1681), 12, + sym_line_continuation, + ACTIONS(1632), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67805,7 +72672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1679), 31, + ACTIONS(1634), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67817,6 +72684,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -67837,12 +72706,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48010] = 3, - ACTIONS(3), 1, + [53620] = 5, + ACTIONS(1342), 1, + anon_sym_else, + STATE(844), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1675), 12, + sym_line_continuation, + ACTIONS(1668), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67853,7 +72727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1677), 31, + ACTIONS(1670), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67885,11 +72759,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48061] = 3, - ACTIONS(3), 1, + [53678] = 5, + ACTIONS(1360), 1, + anon_sym_else, + STATE(881), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1683), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1674), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -67901,7 +72780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1685), 31, + ACTIONS(1672), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67933,11 +72812,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48112] = 3, - ACTIONS(3), 1, + [53736] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1681), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1662), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -67949,7 +72829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1679), 31, + ACTIONS(1660), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67961,6 +72841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -67981,12 +72863,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48163] = 3, - ACTIONS(3), 1, + [53790] = 5, + ACTIONS(1342), 1, + anon_sym_else, + STATE(841), 1, + sym_else_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1603), 12, + sym_line_continuation, + ACTIONS(1664), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67997,7 +72884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1605), 31, + ACTIONS(1666), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68029,12 +72916,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48214] = 3, - ACTIONS(3), 1, + [53848] = 5, + ACTIONS(1346), 1, + anon_sym_finally, + STATE(872), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1687), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1648), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68045,7 +72937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1689), 31, + ACTIONS(1650), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68077,12 +72969,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48265] = 3, - ACTIONS(3), 1, + [53906] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1691), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1678), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68093,7 +72986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1693), 31, + ACTIONS(1676), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68110,6 +73003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68125,12 +73019,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48316] = 3, - ACTIONS(3), 1, + [53959] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1200), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1682), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68141,7 +73036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1202), 31, + ACTIONS(1680), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68154,6 +73049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68173,11 +73069,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48367] = 3, - ACTIONS(3), 1, + [54012] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1695), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1684), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -68189,55 +73086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1697), 31, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [48418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1693), 31, + ACTIONS(1686), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68250,6 +73099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68269,11 +73119,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48469] = 3, - ACTIONS(3), 1, + [54065] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1699), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1688), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -68285,7 +73136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1701), 31, + ACTIONS(1690), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68298,6 +73149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68317,11 +73169,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48520] = 3, - ACTIONS(3), 1, + [54118] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1661), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1678), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -68333,7 +73186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1659), 31, + ACTIONS(1676), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68350,6 +73203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68365,76 +73219,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48571] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1627), 1, - sym_identifier, - ACTIONS(1629), 1, - anon_sym_LPAREN, - ACTIONS(1633), 1, - anon_sym_STAR, - ACTIONS(1637), 1, - anon_sym_LBRACK, - ACTIONS(1703), 1, - anon_sym_RPAREN, - STATE(875), 1, - sym_string, - STATE(1369), 1, - sym_primary_expression, - STATE(1959), 1, - sym_pattern, - STATE(2100), 1, - sym__patterns, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1374), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1635), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [48654] = 3, - ACTIONS(3), 1, + [54171] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1707), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1692), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68445,7 +73236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1705), 31, + ACTIONS(1694), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68458,6 +73249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68477,12 +73269,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48705] = 3, - ACTIONS(3), 1, + [54224] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1711), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1692), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68493,7 +73286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1709), 31, + ACTIONS(1694), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68506,6 +73299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68525,12 +73319,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48756] = 3, - ACTIONS(3), 1, + [54277] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1715), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1696), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68541,7 +73336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1713), 31, + ACTIONS(1698), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68554,6 +73349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68573,12 +73369,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48807] = 3, - ACTIONS(3), 1, + [54330] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1683), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1700), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68589,7 +73386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1685), 31, + ACTIONS(1702), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68602,6 +73399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68621,12 +73419,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48858] = 3, - ACTIONS(3), 1, + [54383] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1719), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1700), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68637,7 +73436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1717), 31, + ACTIONS(1702), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68650,6 +73449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68669,12 +73469,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48909] = 3, - ACTIONS(3), 1, + [54436] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1723), 12, + sym_line_continuation, + ACTIONS(1706), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68685,7 +73486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1721), 31, + ACTIONS(1704), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68702,6 +73503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68717,12 +73519,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48960] = 3, - ACTIONS(3), 1, + [54489] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1497), 12, + sym_line_continuation, + ACTIONS(1710), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68733,7 +73536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1495), 31, + ACTIONS(1708), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68746,6 +73549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68765,12 +73569,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49011] = 3, - ACTIONS(3), 1, + [54542] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1687), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1710), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68781,7 +73586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1689), 31, + ACTIONS(1708), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68794,6 +73599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68813,12 +73619,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49062] = 3, - ACTIONS(3), 1, + [54595] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1645), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1714), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68829,7 +73636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1643), 31, + ACTIONS(1712), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68842,6 +73649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68861,12 +73669,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49113] = 3, - ACTIONS(3), 1, + [54648] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1723), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1684), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68877,7 +73686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1721), 31, + ACTIONS(1686), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68890,6 +73699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68909,12 +73719,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49164] = 3, - ACTIONS(3), 1, + [54701] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1727), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1716), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68925,7 +73736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1725), 31, + ACTIONS(1718), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68938,6 +73749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68957,12 +73769,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49215] = 3, - ACTIONS(3), 1, + [54754] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1729), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1722), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68973,7 +73786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1731), 31, + ACTIONS(1720), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68986,6 +73799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69005,12 +73819,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49266] = 3, - ACTIONS(3), 1, + [54807] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1695), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1724), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69021,7 +73836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1697), 31, + ACTIONS(1726), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69034,6 +73849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69053,11 +73869,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49317] = 3, - ACTIONS(3), 1, + [54860] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1597), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1728), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -69069,7 +73886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1595), 31, + ACTIONS(1730), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69082,6 +73899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69101,12 +73919,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49368] = 3, - ACTIONS(3), 1, + [54913] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1699), 12, + sym_line_continuation, + ACTIONS(1734), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69117,7 +73936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1701), 31, + ACTIONS(1732), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69130,6 +73949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69149,12 +73969,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49419] = 3, - ACTIONS(3), 1, + [54966] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1615), 12, + sym_line_continuation, + ACTIONS(1682), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69165,7 +73986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1617), 31, + ACTIONS(1680), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69178,6 +73999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69197,12 +74019,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49470] = 3, - ACTIONS(3), 1, + [55019] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1663), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1714), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69213,7 +74036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1665), 31, + ACTIONS(1712), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69226,6 +74049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69245,12 +74069,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49521] = 3, - ACTIONS(3), 1, + [55072] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1671), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1722), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69261,7 +74086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1673), 31, + ACTIONS(1720), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69274,6 +74099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69293,11 +74119,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49572] = 3, - ACTIONS(3), 1, + [55125] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1601), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1734), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -69309,7 +74136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1599), 31, + ACTIONS(1732), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69322,6 +74149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69341,12 +74169,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49623] = 3, - ACTIONS(3), 1, + [55178] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1711), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1738), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69357,7 +74186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1709), 31, + ACTIONS(1736), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69370,6 +74199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69389,11 +74219,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49674] = 3, - ACTIONS(3), 1, + [55231] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1719), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1682), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -69405,7 +74236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1717), 31, + ACTIONS(1680), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69418,6 +74249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69437,12 +74269,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49725] = 3, - ACTIONS(3), 1, + [55284] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1200), 12, - sym__dedent, - sym__string_start, + sym_line_continuation, + ACTIONS(1738), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69453,7 +74286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1202), 31, + ACTIONS(1736), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69466,6 +74299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69485,11 +74319,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49776] = 3, - ACTIONS(3), 1, + [55337] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1707), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1728), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -69501,7 +74336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1705), 31, + ACTIONS(1730), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69514,6 +74349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69533,11 +74369,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49827] = 3, - ACTIONS(3), 1, + [55390] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1497), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1740), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -69549,7 +74386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1495), 31, + ACTIONS(1742), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69562,6 +74399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69581,12 +74419,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49878] = 3, - ACTIONS(3), 1, + [55443] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1715), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1746), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69597,7 +74436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1713), 31, + ACTIONS(1744), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69610,6 +74449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69629,11 +74469,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49929] = 3, - ACTIONS(3), 1, + [55496] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1621), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1746), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -69645,7 +74486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1619), 31, + ACTIONS(1744), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69658,6 +74499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69677,11 +74519,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49980] = 3, - ACTIONS(3), 1, + [55549] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1727), 12, - sym__string_start, + sym_line_continuation, + ACTIONS(1682), 12, + sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, @@ -69693,7 +74536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1725), 31, + ACTIONS(1680), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69706,6 +74549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69725,12 +74569,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50031] = 3, - ACTIONS(3), 1, + [55602] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1657), 12, - sym__string_start, - ts_builtin_sym_end, + sym_line_continuation, + ACTIONS(1740), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69741,7 +74586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1655), 31, + ACTIONS(1742), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69754,6 +74599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69773,12 +74619,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50082] = 3, - ACTIONS(3), 1, + [55655] = 21, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1748), 1, + sym_identifier, + ACTIONS(1750), 1, + anon_sym_LPAREN, + ACTIONS(1752), 1, + anon_sym_RPAREN, + ACTIONS(1754), 1, + anon_sym_STAR, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1662), 1, + sym_primary_expression, + STATE(1675), 1, + sym_list_splat_pattern, + STATE(2142), 1, + sym_pattern, + STATE(2423), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1680), 2, + sym_attribute, + sym_subscript, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1756), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [55744] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1729), 12, + sym_line_continuation, + ACTIONS(1700), 12, sym__dedent, - sym__string_start, + sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69789,7 +74704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1731), 31, + ACTIONS(1702), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69802,6 +74717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -69821,365 +74737,310 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50133] = 18, - ACTIONS(3), 1, + [55797] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1733), 1, - sym_identifier, - ACTIONS(1735), 1, + sym_line_continuation, + ACTIONS(1728), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1737), 1, anon_sym_STAR, - ACTIONS(1741), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1743), 1, - anon_sym_RBRACK, - STATE(875), 1, - sym_string, - STATE(1364), 1, - sym_primary_expression, - STATE(1999), 1, - sym_pattern, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1368), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2012), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1739), 5, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1730), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [50213] = 18, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [55850] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, - sym_identifier, - ACTIONS(846), 1, + sym_line_continuation, + ACTIONS(1728), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - STATE(1776), 1, - sym_pattern, - STATE(2224), 1, - sym_pattern_list, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1282), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(850), 5, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1730), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [50293] = 18, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [55903] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, - sym_identifier, - ACTIONS(846), 1, + sym_line_continuation, + ACTIONS(1724), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - STATE(1823), 1, - sym_pattern, - STATE(2131), 1, - sym_pattern_list, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1282), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(850), 5, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1726), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [50373] = 18, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [55956] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, - sym_identifier, - ACTIONS(846), 1, + sym_line_continuation, + ACTIONS(1700), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - STATE(1820), 1, - sym_pattern, - STATE(2138), 1, - sym_pattern_list, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1282), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(850), 5, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1702), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [50453] = 18, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [56009] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, - sym_identifier, - ACTIONS(846), 1, + sym_line_continuation, + ACTIONS(1696), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - STATE(1930), 1, - sym_pattern, - STATE(2112), 1, - sym_pattern_list, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1282), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(850), 5, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1698), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [50533] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(303), 1, + sym_true, + sym_false, + sym_none, + [56062] = 21, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1748), 1, sym_identifier, - ACTIONS(846), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(856), 1, + ACTIONS(1754), 1, + anon_sym_STAR, + ACTIONS(1758), 1, anon_sym_LBRACK, - STATE(875), 1, + ACTIONS(1760), 1, + anon_sym_await, + ACTIONS(1762), 1, + anon_sym_RPAREN, + STATE(1071), 1, sym_string, - STATE(1373), 1, + STATE(1662), 1, sym_primary_expression, - STATE(1775), 1, + STATE(1675), 1, + sym_list_splat_pattern, + STATE(2142), 1, sym_pattern, - STATE(2222), 1, - sym_pattern_list, - ACTIONS(301), 2, + STATE(2486), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1282), 2, + STATE(1680), 2, sym_attribute, sym_subscript, - ACTIONS(297), 3, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(850), 5, + ACTIONS(1756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - anon_sym_await, - STATE(1273), 13, + STATE(1455), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -70193,427 +75054,458 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [50613] = 18, - ACTIONS(3), 1, + sym_await, + [56151] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1733), 1, - sym_identifier, - ACTIONS(1735), 1, + sym_line_continuation, + ACTIONS(1716), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1737), 1, anon_sym_STAR, - ACTIONS(1741), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1745), 1, - anon_sym_RBRACK, - STATE(875), 1, - sym_string, - STATE(1364), 1, - sym_primary_expression, - STATE(1999), 1, - sym_pattern, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1368), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2012), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1739), 5, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1718), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [50693] = 18, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [56204] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1627), 1, - sym_identifier, - ACTIONS(1629), 1, + sym_line_continuation, + ACTIONS(1764), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1633), 1, anon_sym_STAR, - ACTIONS(1637), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(875), 1, - sym_string, - STATE(1369), 1, - sym_primary_expression, - STATE(1984), 1, - sym_pattern, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1374), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1635), 5, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1766), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [50773] = 18, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [56257] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, - sym_identifier, - ACTIONS(846), 1, + sym_line_continuation, + ACTIONS(1692), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - STATE(1933), 1, - sym_pattern, - STATE(2119), 1, - sym_pattern_list, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1282), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(850), 5, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1694), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [50853] = 18, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [56310] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, - sym_identifier, - ACTIONS(846), 1, + sym_line_continuation, + ACTIONS(1706), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - STATE(1779), 1, - sym_pattern, - STATE(2218), 1, - sym_pattern_list, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1282), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(850), 5, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1704), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [50933] = 18, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [56363] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1627), 1, - sym_identifier, - ACTIONS(1629), 1, + sym_line_continuation, + ACTIONS(1692), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1633), 1, anon_sym_STAR, - ACTIONS(1637), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1743), 1, - anon_sym_RPAREN, - STATE(875), 1, - sym_string, - STATE(1369), 1, - sym_primary_expression, - STATE(1984), 1, - sym_pattern, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1374), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1694), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(1635), 5, + [56416] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1688), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1690), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_case, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [51013] = 18, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [56469] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, - sym_identifier, - ACTIONS(846), 1, + sym_line_continuation, + ACTIONS(1764), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - STATE(1802), 1, - sym_pattern, - STATE(2178), 1, - sym_pattern_list, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1282), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1766), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(850), 5, + [56522] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1768), 31, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [51093] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(303), 1, + sym_true, + sym_false, + sym_none, + [56574] = 20, + ACTIONS(334), 1, anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, sym_identifier, - ACTIONS(846), 1, + ACTIONS(1774), 1, anon_sym_LPAREN, - ACTIONS(856), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - STATE(875), 1, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, sym_string, - STATE(1373), 1, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, sym_primary_expression, - STATE(1808), 1, + STATE(2200), 1, sym_pattern, - STATE(2169), 1, + STATE(2360), 1, sym_pattern_list, - ACTIONS(301), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, sym_ellipsis, sym_float, - STATE(1282), 2, + STATE(1686), 2, sym_attribute, sym_subscript, - ACTIONS(297), 3, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, + ACTIONS(336), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(850), 5, + ACTIONS(1776), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - anon_sym_await, - STATE(1273), 13, + STATE(1455), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -70627,263 +75519,17388 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [51173] = 18, - ACTIONS(3), 1, + sym_await, + [56660] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, - sym_identifier, - ACTIONS(846), 1, + sym_line_continuation, + ACTIONS(1782), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - STATE(1806), 1, - sym_pattern, - STATE(2171), 1, - sym_pattern_list, - ACTIONS(301), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, sym_ellipsis, + anon_sym_LBRACE, sym_float, - STATE(1282), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, + ACTIONS(1784), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56712] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1786), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1788), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(850), 5, + [56764] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1790), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1792), 31, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [51253] = 17, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [56816] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(303), 1, + sym_line_continuation, + ACTIONS(1794), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1733), 1, + sym_float, + ACTIONS(1796), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1735), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56868] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1737), 1, anon_sym_STAR, - ACTIONS(1741), 1, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1364), 1, - sym_primary_expression, - STATE(1999), 1, - sym_pattern, - ACTIONS(301), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, sym_ellipsis, + anon_sym_LBRACE, sym_float, - STATE(1368), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, + ACTIONS(1800), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56920] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1802), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2012), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1804), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(1739), 5, + [56972] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1808), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1806), 31, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [51330] = 17, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [57024] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(15), 1, + sym_line_continuation, + ACTIONS(1812), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(303), 1, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(844), 1, + sym_float, + ACTIONS(1810), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(846), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57076] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1814), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(856), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - STATE(1385), 1, - sym_pattern, - ACTIONS(301), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, sym_ellipsis, + anon_sym_LBRACE, sym_float, - STATE(1282), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, + ACTIONS(1816), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1818), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1388), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1820), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(850), 5, + [57180] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1638), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1636), 31, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [51407] = 17, - ACTIONS(3), 1, + sym_true, + sym_false, + sym_none, + [57232] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1822), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1824), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57284] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1340), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1338), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57336] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1818), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1820), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57388] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1814), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1816), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57440] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1826), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1828), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57492] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1830), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1832), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57544] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1834), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1836), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57596] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1838), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1840), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57648] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1846), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_RBRACK, + ACTIONS(1854), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1652), 1, + sym_primary_expression, + STATE(1679), 1, + sym_list_splat_pattern, + STATE(2303), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1678), 2, + sym_attribute, + sym_subscript, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1848), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [57734] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1858), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1856), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57786] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1862), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1860), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57838] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(2069), 1, + sym_pattern, + STATE(2540), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [57924] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1782), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1784), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57976] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1864), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1866), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1858), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1856), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58080] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1748), 1, + sym_identifier, + ACTIONS(1750), 1, + anon_sym_LPAREN, + ACTIONS(1754), 1, + anon_sym_STAR, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_await, + ACTIONS(1868), 1, + anon_sym_RPAREN, + STATE(1071), 1, + sym_string, + STATE(1662), 1, + sym_primary_expression, + STATE(1675), 1, + sym_list_splat_pattern, + STATE(2269), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1680), 2, + sym_attribute, + sym_subscript, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1756), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58166] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1768), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58218] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1870), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1872), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58270] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1340), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1338), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58322] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(2220), 1, + sym_pattern, + STATE(2342), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1874), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1876), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58460] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(2067), 1, + sym_pattern, + STATE(2541), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58546] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1822), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1824), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1356), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1358), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58650] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(2068), 1, + sym_pattern, + STATE(2537), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58736] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1802), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1804), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1830), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1832), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58840] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(2107), 1, + sym_pattern, + STATE(2470), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [58926] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(2108), 1, + sym_pattern, + STATE(2468), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [59012] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1878), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1880), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59064] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1808), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1806), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59116] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + ACTIONS(1882), 1, + anon_sym_in, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(1717), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [59202] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(2063), 1, + sym_pattern, + STATE(2450), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [59288] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1748), 1, + sym_identifier, + ACTIONS(1750), 1, + anon_sym_LPAREN, + ACTIONS(1754), 1, + anon_sym_STAR, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_await, + ACTIONS(1852), 1, + anon_sym_RPAREN, + STATE(1071), 1, + sym_string, + STATE(1662), 1, + sym_primary_expression, + STATE(1675), 1, + sym_list_splat_pattern, + STATE(2269), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1680), 2, + sym_attribute, + sym_subscript, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1756), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [59374] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1800), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59426] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1886), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1884), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59478] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1888), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1890), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59530] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1892), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1894), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59582] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1794), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1796), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59634] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1864), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1866), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59686] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1898), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1896), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1902), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1900), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59790] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1904), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1906), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1910), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1908), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59894] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1892), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1894), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59946] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1812), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1810), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59998] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1648), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1650), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60050] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1874), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1876), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60102] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1912), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1914), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60154] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1910), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1908), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60206] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(2133), 1, + sym_pattern, + STATE(2431), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [60292] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1902), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1900), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60344] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(2129), 1, + sym_pattern, + STATE(2438), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [60430] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1912), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1914), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60482] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1898), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1896), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60534] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1886), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1884), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60586] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1862), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1860), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1786), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1788), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60690] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1904), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1906), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60742] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1648), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1650), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60794] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1918), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1916), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60846] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1826), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1828), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [60898] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1846), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1854), 1, + anon_sym_await, + ACTIONS(1868), 1, + anon_sym_RBRACK, + STATE(1071), 1, + sym_string, + STATE(1652), 1, + sym_primary_expression, + STATE(1679), 1, + sym_list_splat_pattern, + STATE(2303), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1678), 2, + sym_attribute, + sym_subscript, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1848), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [60984] = 20, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + ACTIONS(1920), 1, + anon_sym_in, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(1717), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [61070] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1638), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1636), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1918), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1916), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61174] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1790), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1792), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61226] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1356), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1358), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1878), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1880), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61330] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1888), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1890), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61382] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1834), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1836), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61434] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1870), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1872), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61486] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1838), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1840), 31, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [61538] = 19, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1647), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + STATE(1717), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1686), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1776), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [61621] = 19, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(960), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_LBRACK, + ACTIONS(970), 1, + anon_sym_await, + ACTIONS(1922), 1, + anon_sym_STAR, + STATE(1071), 1, + sym_string, + STATE(1618), 1, + sym_list_splat_pattern, + STATE(1664), 1, + sym_primary_expression, + STATE(1717), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1615), 2, + sym_attribute, + sym_subscript, + STATE(1693), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(966), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [61704] = 19, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1846), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1854), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1652), 1, + sym_primary_expression, + STATE(1679), 1, + sym_list_splat_pattern, + STATE(2303), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1678), 2, + sym_attribute, + sym_subscript, + STATE(2326), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1848), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [61787] = 19, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1748), 1, + sym_identifier, + ACTIONS(1750), 1, + anon_sym_LPAREN, + ACTIONS(1754), 1, + anon_sym_STAR, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1662), 1, + sym_primary_expression, + STATE(1675), 1, + sym_list_splat_pattern, + STATE(2269), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1680), 2, + sym_attribute, + sym_subscript, + STATE(2327), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1756), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [61870] = 19, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1586), 1, + sym_identifier, + ACTIONS(1588), 1, + anon_sym_LPAREN, + ACTIONS(1590), 1, + anon_sym_STAR, + ACTIONS(1594), 1, + anon_sym_LBRACK, + ACTIONS(1596), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1630), 1, + sym_list_splat_pattern, + STATE(1653), 1, + sym_primary_expression, + STATE(2004), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_attribute, + sym_subscript, + STATE(1980), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1592), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [61953] = 19, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(894), 1, + anon_sym_LPAREN, + ACTIONS(900), 1, + anon_sym_LBRACK, + ACTIONS(906), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1478), 1, + sym_list_splat_pattern, + STATE(1681), 1, + sym_pattern, + STATE(1682), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1477), 2, + sym_attribute, + sym_subscript, + STATE(1671), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(898), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62036] = 18, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1924), 1, + sym_identifier, + ACTIONS(1930), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1662), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(1926), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1641), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1928), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62116] = 18, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1932), 1, + sym_identifier, + ACTIONS(1936), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(1926), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1668), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1934), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62196] = 16, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1940), 1, + anon_sym_not, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1115), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62271] = 16, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1946), 1, + anon_sym_not, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1188), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62346] = 16, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1952), 1, + anon_sym_not, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1262), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62421] = 16, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1958), 1, + anon_sym_not, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1060), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62496] = 16, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1964), 1, + anon_sym_not, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1089), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62571] = 16, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1970), 1, + anon_sym_not, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1109), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62646] = 16, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1976), 1, + anon_sym_not, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1138), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62721] = 16, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1982), 1, + anon_sym_not, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1096), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62796] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1089), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62868] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1068), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62940] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1120), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63012] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1260), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63084] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1214), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63156] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1208), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63228] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1049), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63300] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1201), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63372] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1155), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63444] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1200), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63516] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1194), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63588] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1191), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63660] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1190), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63732] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1188), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63804] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1136), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63876] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1131), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63948] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1123), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64020] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1122), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64092] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1262), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64164] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1263), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64236] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1119), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64308] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1118), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64380] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1117), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64452] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1187), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64524] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1184), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64596] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1121), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64668] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1138), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64740] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1115), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64812] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1114), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64884] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1113), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64956] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1110), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65028] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1051), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65100] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1274), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65172] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1275), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65244] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1135), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65316] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1103), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65388] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1102), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65460] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1281), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65532] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1134), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65604] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1283), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65676] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1133), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65748] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1076), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65820] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1080), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65892] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1128), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [65964] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1116), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66036] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1126), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66108] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1986), 1, + sym_identifier, + ACTIONS(1990), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1657), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1173), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1988), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66184] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1130), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66256] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1992), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1669), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66328] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1994), 1, + sym_identifier, + ACTIONS(1998), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1667), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1235), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1996), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66404] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1144), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66476] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1082), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66548] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1083), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66620] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1084), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66692] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2000), 1, + sym_identifier, + ACTIONS(2004), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1648), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1600), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2002), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66768] = 15, + ACTIONS(692), 1, + anon_sym_LPAREN, + ACTIONS(698), 1, + anon_sym_LBRACK, + ACTIONS(708), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1942), 1, + anon_sym_await, + STATE(1058), 1, + sym_string, + STATE(1159), 1, + sym_primary_expression, + STATE(1397), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(706), 2, + sym_ellipsis, + sym_float, + ACTIONS(702), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(710), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1507), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66840] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1086), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66912] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1065), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66984] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1088), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67056] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2004), 1, + anon_sym_await, + ACTIONS(2006), 1, + sym_identifier, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1662), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1472), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2008), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67132] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1094), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67204] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1078), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67276] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1093), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67348] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1251), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67420] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1055), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67492] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1054), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67564] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1096), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67636] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1064), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67708] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1091), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67780] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1150), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67852] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1092), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67924] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1992), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1655), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67996] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1149), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68068] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1127), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68140] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1992), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1654), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68212] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1067), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68284] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2010), 1, + sym_identifier, + ACTIONS(2014), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1687), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1553), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2012), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68360] = 15, + ACTIONS(608), 1, + anon_sym_LPAREN, + ACTIONS(614), 1, + anon_sym_LBRACK, + ACTIONS(624), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(914), 1, + anon_sym_STAR, + ACTIONS(1966), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1085), 1, + sym_primary_expression, + STATE(1236), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(622), 2, + sym_ellipsis, + sym_float, + ACTIONS(618), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(626), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1341), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68432] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2016), 1, + sym_identifier, + ACTIONS(2020), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1663), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68508] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1292), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68580] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1062), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68652] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1061), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68724] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1060), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68796] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1298), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68868] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1140), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [68940] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2014), 1, + anon_sym_await, + ACTIONS(2022), 1, + sym_identifier, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1652), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1470), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2024), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69016] = 15, + ACTIONS(718), 1, + anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1168), 1, + anon_sym_STAR, + ACTIONS(1948), 1, + anon_sym_await, + STATE(1157), 1, + sym_string, + STATE(1182), 1, + sym_primary_expression, + STATE(1516), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, + sym_ellipsis, + sym_float, + ACTIONS(728), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1944), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(736), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1552), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69088] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1998), 1, + anon_sym_await, + ACTIONS(2026), 1, + sym_identifier, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1653), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1319), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2028), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69164] = 15, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_LBRACK, + ACTIONS(760), 1, + anon_sym_LBRACE, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(1172), 1, + anon_sym_STAR, + ACTIONS(1954), 1, + anon_sym_await, + STATE(1132), 1, + sym_string, + STATE(1239), 1, + sym_primary_expression, + STATE(1598), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1950), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(762), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1580), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69236] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2030), 1, + sym_identifier, + ACTIONS(2034), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1672), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1457), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2032), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69312] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2036), 1, + sym_identifier, + ACTIONS(2040), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1664), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1612), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2038), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69388] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1057), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69460] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1056), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69532] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1992), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1658), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69604] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1154), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69676] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1053), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69748] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1052), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69820] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1050), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69892] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1992), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1659), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [69964] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1992), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1665), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70036] = 15, + ACTIONS(660), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(1108), 1, + anon_sym_STAR, + ACTIONS(1978), 1, + anon_sym_await, + STATE(1095), 1, + sym_string, + STATE(1141), 1, + sym_primary_expression, + STATE(1407), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(676), 2, + sym_ellipsis, + sym_float, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1974), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(680), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1385), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70108] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1972), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1109), 1, + sym_primary_expression, + STATE(1366), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(328), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70180] = 15, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(302), 1, + anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1984), 1, + anon_sym_await, + STATE(1034), 1, + sym_string, + STATE(1077), 1, + sym_primary_expression, + STATE(1172), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1980), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1344), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70252] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2042), 1, + sym_identifier, + ACTIONS(2046), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1682), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(657), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2044), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70328] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1994), 1, + sym_identifier, + ACTIONS(1998), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1653), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1235), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1996), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70404] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1992), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1649), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70476] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2048), 1, + sym_identifier, + ACTIONS(2052), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1662), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1642), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2050), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70552] = 15, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(1138), 1, + anon_sym_STAR, + ACTIONS(1960), 1, + anon_sym_await, + STATE(1037), 1, + sym_string, + STATE(1066), 1, + sym_primary_expression, + STATE(1338), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(648), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1956), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(652), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1277), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70624] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2000), 1, + sym_identifier, + ACTIONS(2004), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1662), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1600), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2002), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70700] = 17, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(2010), 1, + sym_identifier, + ACTIONS(2014), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1652), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + STATE(1553), 2, + sym_attribute, + sym_subscript, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(336), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2012), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1455), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70776] = 15, + ACTIONS(316), 1, + anon_sym_LPAREN, + ACTIONS(322), 1, + anon_sym_LBRACK, + ACTIONS(334), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(1204), 1, + anon_sym_STAR, + ACTIONS(1992), 1, + anon_sym_await, + STATE(1071), 1, + sym_string, + STATE(1366), 1, + sym_list_splat_pattern, + STATE(1650), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(332), 2, + sym_ellipsis, + sym_float, + ACTIONS(904), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1968), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(336), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1455), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [70848] = 5, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1041), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [70899] = 20, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(2072), 1, + anon_sym_EQ, + ACTIONS(2074), 1, + anon_sym_not, + ACTIONS(2078), 1, + anon_sym_PIPE, + ACTIONS(2080), 1, + anon_sym_AMP, + ACTIONS(2082), 1, + anon_sym_CARET, + ACTIONS(2086), 1, + anon_sym_is, + STATE(1637), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2062), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2076), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2084), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2064), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [70980] = 5, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1039), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [71031] = 5, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1040), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2090), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2088), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [71082] = 20, + ACTIONS(2072), 1, + anon_sym_EQ, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(2108), 1, + anon_sym_not, + ACTIONS(2112), 1, + anon_sym_PIPE, + ACTIONS(2114), 1, + anon_sym_AMP, + ACTIONS(2116), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_is, + STATE(1635), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2098), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2118), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2104), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2100), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [71163] = 5, + ACTIONS(656), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1035), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [71214] = 20, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(2138), 1, + anon_sym_not, + ACTIONS(2142), 1, + anon_sym_PIPE, + ACTIONS(2144), 1, + anon_sym_AMP, + ACTIONS(2146), 1, + anon_sym_CARET, + ACTIONS(2150), 1, + anon_sym_is, + STATE(1636), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2128), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2140), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2148), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2134), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2130), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [71295] = 5, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1043), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2090), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2088), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [71346] = 5, + ACTIONS(2156), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1040), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2154), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2152), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [71397] = 5, + ACTIONS(630), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1042), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2090), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2088), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [71448] = 5, + ACTIONS(2159), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1042), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2154), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2152), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [71499] = 5, + ACTIONS(2162), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1043), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2154), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2152), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [71550] = 20, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(2072), 1, + anon_sym_EQ, + ACTIONS(2074), 1, + anon_sym_not, + ACTIONS(2078), 1, + anon_sym_PIPE, + ACTIONS(2080), 1, + anon_sym_AMP, + ACTIONS(2082), 1, + anon_sym_CARET, + ACTIONS(2086), 1, + anon_sym_is, + STATE(1146), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2062), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2076), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2084), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2064), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [71631] = 20, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(2138), 1, + anon_sym_not, + ACTIONS(2142), 1, + anon_sym_PIPE, + ACTIONS(2144), 1, + anon_sym_AMP, + ACTIONS(2146), 1, + anon_sym_CARET, + ACTIONS(2150), 1, + anon_sym_is, + STATE(1145), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2128), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2140), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2148), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2134), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2130), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [71712] = 20, + ACTIONS(2072), 1, + anon_sym_EQ, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(2108), 1, + anon_sym_not, + ACTIONS(2112), 1, + anon_sym_PIPE, + ACTIONS(2114), 1, + anon_sym_AMP, + ACTIONS(2116), 1, + anon_sym_CARET, + ACTIONS(2120), 1, + anon_sym_is, + STATE(1112), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2098), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2118), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2104), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2100), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [71793] = 5, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1100), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2090), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2088), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [71843] = 20, + ACTIONS(2072), 1, + anon_sym_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_not, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_CARET, + ACTIONS(2193), 1, + anon_sym_is, + STATE(1313), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2183), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2191), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2177), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2173), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [71923] = 15, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(2112), 1, + anon_sym_PIPE, + ACTIONS(2114), 1, + anon_sym_AMP, + ACTIONS(2116), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2098), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2104), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2197), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2195), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [71993] = 12, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2128), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2140), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2134), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 19, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [72057] = 15, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(2112), 1, + anon_sym_PIPE, + ACTIONS(2114), 1, + anon_sym_AMP, + ACTIONS(2116), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2098), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2104), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2205), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2203), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [72127] = 13, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2128), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2140), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2134), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [72193] = 14, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(2144), 1, + anon_sym_AMP, + ACTIONS(2146), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2128), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2140), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2134), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 17, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [72261] = 8, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [72317] = 10, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2104), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [72377] = 10, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2126), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2134), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 23, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [72437] = 8, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 26, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [72493] = 5, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1073), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [72543] = 20, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_not, + ACTIONS(2227), 1, + anon_sym_PIPE, + ACTIONS(2229), 1, + anon_sym_AMP, + ACTIONS(2231), 1, + anon_sym_CARET, + ACTIONS(2235), 1, + anon_sym_is, + STATE(1315), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2233), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2215), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [72623] = 15, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(2142), 1, + anon_sym_PIPE, + ACTIONS(2144), 1, + anon_sym_AMP, + ACTIONS(2146), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2128), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2140), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2134), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2239), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2237), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [72693] = 11, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2140), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2134), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 21, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [72755] = 8, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 26, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [72811] = 20, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_not, + ACTIONS(2227), 1, + anon_sym_PIPE, + ACTIONS(2229), 1, + anon_sym_AMP, + ACTIONS(2231), 1, + anon_sym_CARET, + ACTIONS(2235), 1, + anon_sym_is, + STATE(1643), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2225), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2233), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2215), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [72891] = 11, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2104), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [72953] = 15, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(2142), 1, + anon_sym_PIPE, + ACTIONS(2144), 1, + anon_sym_AMP, + ACTIONS(2146), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2128), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2140), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2134), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2205), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2203), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [73023] = 15, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(2142), 1, + anon_sym_PIPE, + ACTIONS(2144), 1, + anon_sym_AMP, + ACTIONS(2146), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2128), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2140), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2134), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2197), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2195), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [73093] = 8, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [73149] = 14, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(2114), 1, + anon_sym_AMP, + ACTIONS(2116), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2098), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2104), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [73217] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1413), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1411), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [73263] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1413), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1411), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [73309] = 5, + ACTIONS(340), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1047), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [73359] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1481), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [73405] = 5, + ACTIONS(714), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1099), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2090), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2088), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [73455] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1481), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [73501] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1485), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [73547] = 15, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(2078), 1, + anon_sym_PIPE, + ACTIONS(2080), 1, + anon_sym_AMP, + ACTIONS(2082), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2062), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2076), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2205), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2203), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [73617] = 8, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2243), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2241), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [73673] = 8, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2124), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_STAR_STAR, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1317), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2243), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2241), 26, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [73729] = 20, + ACTIONS(2072), 1, + anon_sym_EQ, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_not, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_CARET, + ACTIONS(2193), 1, + anon_sym_is, + STATE(1355), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2183), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2191), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2177), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2173), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [73809] = 15, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(2078), 1, + anon_sym_PIPE, + ACTIONS(2080), 1, + anon_sym_AMP, + ACTIONS(2082), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2062), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2076), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2197), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2195), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [73879] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1437), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1435), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [73925] = 12, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2062), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2076), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 19, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [73989] = 13, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(2082), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2062), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2076), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [74055] = 14, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(2080), 1, + anon_sym_AMP, + ACTIONS(2082), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2062), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2076), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [74123] = 8, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2243), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2241), 26, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [74179] = 10, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [74239] = 5, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1090), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2090), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2088), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [74289] = 8, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 26, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [74345] = 15, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(2078), 1, + anon_sym_PIPE, + ACTIONS(2080), 1, + anon_sym_AMP, + ACTIONS(2082), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2062), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2076), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2239), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2237), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [74415] = 5, + ACTIONS(2245), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1090), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2154), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2152), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [74465] = 11, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2076), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 21, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [74527] = 8, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2056), 1, + anon_sym_LPAREN, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1261), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 26, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [74583] = 13, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(2116), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2098), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2104), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [74649] = 12, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2098), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2104), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [74713] = 5, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1087), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [74763] = 15, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, + anon_sym_STAR_STAR, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(2112), 1, + anon_sym_PIPE, + ACTIONS(2114), 1, + anon_sym_AMP, + ACTIONS(2116), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2098), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2110), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1271), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2104), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2239), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2237), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [74833] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1463), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1461), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [74879] = 20, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(2264), 1, + anon_sym_not, + ACTIONS(2268), 1, + anon_sym_PIPE, + ACTIONS(2270), 1, + anon_sym_AMP, + ACTIONS(2272), 1, + anon_sym_CARET, + ACTIONS(2276), 1, + anon_sym_is, + STATE(1309), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2254), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2266), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2274), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2260), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2256), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [74959] = 5, + ACTIONS(2278), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1099), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2154), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2152), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75009] = 5, + ACTIONS(2281), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1100), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2154), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2152), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75059] = 20, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(2264), 1, + anon_sym_not, + ACTIONS(2268), 1, + anon_sym_PIPE, + ACTIONS(2270), 1, + anon_sym_AMP, + ACTIONS(2272), 1, + anon_sym_CARET, + ACTIONS(2276), 1, + anon_sym_is, + STATE(1645), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2254), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2266), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2274), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2260), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2256), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [75139] = 12, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2225), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75202] = 13, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2231), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2225), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 17, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75267] = 20, + ACTIONS(2072), 1, + anon_sym_EQ, + ACTIONS(2284), 1, + anon_sym_DOT, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2294), 1, + anon_sym_STAR_STAR, + ACTIONS(2298), 1, + anon_sym_LBRACK, + ACTIONS(2300), 1, + anon_sym_not, + ACTIONS(2304), 1, + anon_sym_PIPE, + ACTIONS(2306), 1, + anon_sym_AMP, + ACTIONS(2308), 1, + anon_sym_CARET, + ACTIONS(2312), 1, + anon_sym_is, + STATE(1467), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2290), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2302), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2310), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1522), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2296), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2058), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2292), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [75346] = 5, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1137), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2090), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2088), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75395] = 5, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(2314), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75444] = 19, + ACTIONS(2316), 1, + anon_sym_DOT, + ACTIONS(2318), 1, + anon_sym_LPAREN, + ACTIONS(2326), 1, + anon_sym_STAR_STAR, + ACTIONS(2330), 1, + anon_sym_LBRACK, + ACTIONS(2332), 1, + anon_sym_not, + ACTIONS(2336), 1, + anon_sym_PIPE, + ACTIONS(2338), 1, + anon_sym_AMP, + ACTIONS(2340), 1, + anon_sym_CARET, + ACTIONS(2344), 1, + anon_sym_is, + STATE(1466), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2334), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2342), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1592), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2328), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2324), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2058), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [75521] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2348), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2346), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [75566] = 15, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2183), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2177), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2239), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2237), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75635] = 14, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2229), 1, + anon_sym_AMP, + ACTIONS(2231), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2225), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75702] = 8, + ACTIONS(2357), 1, + anon_sym_not, + ACTIONS(2363), 1, + anon_sym_is, + STATE(1111), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2352), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(2354), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2350), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [75757] = 4, + STATE(1111), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2368), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2366), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75804] = 10, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 22, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75863] = 8, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75918] = 15, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2227), 1, + anon_sym_PIPE, + ACTIONS(2229), 1, + anon_sym_AMP, + ACTIONS(2231), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2225), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2239), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2237), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75987] = 15, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2227), 1, + anon_sym_PIPE, + ACTIONS(2229), 1, + anon_sym_AMP, + ACTIONS(2231), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2225), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2197), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2195), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76056] = 8, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76111] = 11, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2183), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2177), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 20, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76172] = 8, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76227] = 11, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2225), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 20, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76288] = 8, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76343] = 10, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2177), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76402] = 14, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2183), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2177), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76469] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1397), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [76516] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(270), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(268), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [76563] = 15, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2227), 1, + anon_sym_PIPE, + ACTIONS(2229), 1, + anon_sym_AMP, + ACTIONS(2231), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2225), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2205), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2203), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76632] = 15, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2183), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2177), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2197), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2195), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76701] = 15, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2187), 1, + anon_sym_AMP, + ACTIONS(2189), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2183), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2177), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2205), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2203), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76770] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2348), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2346), 31, + sym__newline, + sym_string_start, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76815] = 12, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2254), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2266), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2260), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76878] = 13, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2189), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2183), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2177), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76943] = 5, + ACTIONS(766), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1105), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [76992] = 13, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(2272), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2254), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2266), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2260), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77057] = 14, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(2270), 1, + anon_sym_AMP, + ACTIONS(2272), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2254), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2266), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2260), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77124] = 10, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2260), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77183] = 8, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77238] = 5, + ACTIONS(2370), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1137), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2154), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2152), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77287] = 15, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(2268), 1, + anon_sym_PIPE, + ACTIONS(2270), 1, + anon_sym_AMP, + ACTIONS(2272), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2254), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2266), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2239), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2260), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2237), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77356] = 8, + ACTIONS(2376), 1, + anon_sym_not, + ACTIONS(2382), 1, + anon_sym_is, + STATE(1139), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2352), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(2373), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2350), 22, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_RBRACE, + sym_type_conversion, + [77411] = 11, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2266), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2260), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77472] = 8, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77527] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77574] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1627), 1, - sym_identifier, - ACTIONS(1629), 1, - anon_sym_LPAREN, - ACTIONS(1633), 1, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_STAR, - ACTIONS(1637), 1, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(268), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(875), 1, - sym_string, - STATE(1369), 1, - sym_primary_expression, - STATE(1984), 1, - sym_pattern, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1374), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - STATE(1967), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1635), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77621] = 8, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1462), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [51484] = 5, - ACTIONS(3), 1, + ACTIONS(2243), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2241), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77676] = 4, + STATE(1168), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(675), 1, - sym__string_start, - STATE(832), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1749), 5, + sym_line_continuation, + ACTIONS(2368), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1747), 30, + ACTIONS(2366), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -70914,29 +92931,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [51534] = 5, - ACTIONS(3), 1, + [77723] = 4, + STATE(1139), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1755), 1, - sym__string_start, - STATE(832), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1753), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2368), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1751), 30, + ACTIONS(2366), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -70959,28 +92973,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [51584] = 5, - ACTIONS(3), 1, + sym_type_conversion, + [77770] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(625), 1, - sym__string_start, - STATE(843), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1749), 5, + sym_line_continuation, + ACTIONS(270), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1747), 30, + ACTIONS(268), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -71003,27 +93017,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [51634] = 5, - ACTIONS(3), 1, + [77817] = 5, + ACTIONS(2385), 1, + sym_string_start, + ACTIONS(3), 2, sym_comment, - ACTIONS(1758), 1, - sym__string_start, - STATE(834), 2, + sym_line_continuation, + STATE(1148), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1753), 5, + ACTIONS(2154), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1751), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2152), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -71049,142 +93061,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51684] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, + [77866] = 15, + ACTIONS(2248), 1, anon_sym_DOT, - ACTIONS(1765), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(1773), 1, + ACTIONS(2258), 1, anon_sym_STAR_STAR, - ACTIONS(1777), 1, + ACTIONS(2262), 1, anon_sym_LBRACK, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1781), 1, - anon_sym_not, - ACTIONS(1785), 1, + ACTIONS(2268), 1, anon_sym_PIPE, - ACTIONS(1787), 1, + ACTIONS(2270), 1, anon_sym_AMP, - ACTIONS(1789), 1, + ACTIONS(2272), 1, anon_sym_CARET, - ACTIONS(1793), 1, - anon_sym_is, - STATE(1347), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1767), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1769), 2, + ACTIONS(2254), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1783), 2, + ACTIONS(2266), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1791), 2, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2197), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - STATE(1173), 2, + ACTIONS(2260), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2195), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77935] = 15, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(2268), 1, + anon_sym_PIPE, + ACTIONS(2270), 1, + anon_sym_AMP, + ACTIONS(2272), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2254), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2266), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1365), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1775), 3, + ACTIONS(2205), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2260), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1771), 6, + ACTIONS(2203), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1761), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + anon_sym_is, + [78004] = 5, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(668), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(268), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, - [51764] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [78053] = 20, + ACTIONS(2072), 1, anon_sym_EQ, - ACTIONS(1795), 1, + ACTIONS(2284), 1, + anon_sym_DOT, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2294), 1, + anon_sym_STAR_STAR, + ACTIONS(2298), 1, + anon_sym_LBRACK, + ACTIONS(2300), 1, + anon_sym_not, + ACTIONS(2304), 1, + anon_sym_PIPE, + ACTIONS(2306), 1, + anon_sym_AMP, + ACTIONS(2308), 1, + anon_sym_CARET, + ACTIONS(2312), 1, + anon_sym_is, + STATE(1656), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2290), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2302), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2310), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1522), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2296), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2058), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2292), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [78132] = 19, + ACTIONS(2316), 1, anon_sym_DOT, - ACTIONS(1797), 1, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(1805), 1, + ACTIONS(2326), 1, anon_sym_STAR_STAR, - ACTIONS(1809), 1, + ACTIONS(2330), 1, anon_sym_LBRACK, - ACTIONS(1811), 1, + ACTIONS(2332), 1, anon_sym_not, - ACTIONS(1815), 1, + ACTIONS(2336), 1, anon_sym_PIPE, - ACTIONS(1817), 1, + ACTIONS(2338), 1, anon_sym_AMP, - ACTIONS(1819), 1, + ACTIONS(2340), 1, anon_sym_CARET, - ACTIONS(1823), 1, + ACTIONS(2344), 1, anon_sym_is, - STATE(1351), 1, + STATE(1689), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1799), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1801), 2, + ACTIONS(2322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1813), 2, + ACTIONS(2334), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1821), 2, + ACTIONS(2342), 2, anon_sym_LT, anon_sym_GT, - STATE(1066), 2, + STATE(1592), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1807), 3, + ACTIONS(2328), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1803), 6, + ACTIONS(2324), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1761), 8, + ACTIONS(2058), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [51844] = 5, - ACTIONS(3), 1, + [78209] = 8, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2258), 1, + anon_sym_STAR_STAR, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(77), 1, - sym__string_start, - STATE(840), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1245), 5, + sym_line_continuation, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2243), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2241), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [78264] = 12, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_STAR_STAR, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2169), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2183), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2177), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [78327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2390), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 30, + ACTIONS(2388), 31, sym__newline, + sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -71214,145 +93470,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [51894] = 15, - ACTIONS(3), 1, + [78372] = 5, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(3), 2, sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1825), 1, - sym_identifier, - STATE(875), 1, + sym_line_continuation, + STATE(1164), 2, sym_string, - STATE(1369), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(1827), 2, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - STATE(1354), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1829), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [51964] = 20, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [78421] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2390), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2388), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [78466] = 8, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_STAR_STAR, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(1779), 1, + sym_line_continuation, + STATE(1482), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2243), 5, anon_sym_as, - ACTIONS(1831), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2241), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [78521] = 5, + ACTIONS(1394), 1, + anon_sym_COMMA, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1397), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 28, anon_sym_DOT, - ACTIONS(1833), 1, anon_sym_LPAREN, - ACTIONS(1841), 1, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [78570] = 19, + ACTIONS(2094), 1, + anon_sym_LPAREN, + ACTIONS(2102), 1, anon_sym_STAR_STAR, - ACTIONS(1845), 1, - anon_sym_LBRACK, - ACTIONS(1847), 1, + ACTIONS(2108), 1, anon_sym_not, - ACTIONS(1851), 1, + ACTIONS(2112), 1, anon_sym_PIPE, - ACTIONS(1853), 1, + ACTIONS(2114), 1, anon_sym_AMP, - ACTIONS(1855), 1, + ACTIONS(2116), 1, anon_sym_CARET, - ACTIONS(1859), 1, + ACTIONS(2120), 1, anon_sym_is, - STATE(1348), 1, + ACTIONS(2392), 1, + anon_sym_DOT, + ACTIONS(2394), 1, + anon_sym_LBRACK, + STATE(1635), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1835), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2096), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1837), 2, + ACTIONS(2098), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1849), 2, + ACTIONS(2110), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1857), 2, + ACTIONS(2118), 2, anon_sym_LT, anon_sym_GT, - STATE(1099), 2, + STATE(1271), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1843), 3, + ACTIONS(2104), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1839), 6, + ACTIONS(2100), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1761), 8, + ACTIONS(2058), 7, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_and, anon_sym_or, - anon_sym_RBRACE, - [52044] = 5, - ACTIONS(3), 1, + [78647] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(77), 1, - sym__string_start, - STATE(834), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1749), 5, + sym_line_continuation, + ACTIONS(2390), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1747), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2388), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -71374,29 +93746,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52094] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [78692] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(675), 1, - sym__string_start, - STATE(831), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1245), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2348), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 30, + ACTIONS(2346), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -71419,83 +93788,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [52144] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1861), 1, - sym_identifier, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(1827), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1218), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1863), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [52214] = 5, - ACTIONS(3), 1, + sym_type_conversion, + [78737] = 5, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(3), 2, sym_comment, - ACTIONS(1865), 1, - sym__string_start, - STATE(843), 2, + sym_line_continuation, + STATE(1148), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1753), 5, + ACTIONS(2090), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1751), 30, + ACTIONS(2088), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -71517,30 +93833,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [52264] = 5, - ACTIONS(3), 1, + [78786] = 5, + ACTIONS(275), 1, + anon_sym_COMMA, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(625), 1, - sym__string_start, - STATE(833), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(270), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 30, + ACTIONS(268), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -71564,29 +93877,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [52314] = 5, - ACTIONS(3), 1, + [78835] = 6, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(1433), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(309), 1, - sym__string_start, - STATE(879), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1749), 5, + sym_line_continuation, + ACTIONS(1425), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1430), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1747), 29, + ACTIONS(1427), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -71608,88 +93921,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52363] = 15, - ACTIONS(3), 1, + anon_sym_RBRACE, + [78886] = 6, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(347), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(1763), 1, - anon_sym_DOT, - ACTIONS(1765), 1, - anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_STAR_STAR, - ACTIONS(1777), 1, - anon_sym_LBRACK, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(1789), 1, - anon_sym_CARET, - ACTIONS(1767), 2, + sym_line_continuation, + ACTIONS(342), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(344), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1769), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1783), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1173), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1775), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1870), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1868), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(603), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52432] = 8, - ACTIONS(3), 1, + anon_sym_RBRACE, + [78937] = 8, + ACTIONS(2399), 1, + anon_sym_not, + ACTIONS(2405), 1, + anon_sym_is, + STATE(1168), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1795), 1, + sym_line_continuation, + ACTIONS(2402), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2352), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2396), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2350), 22, anon_sym_DOT, - ACTIONS(1797), 1, anon_sym_LPAREN, - ACTIONS(1805), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_STAR_STAR, - ACTIONS(1809), 1, + anon_sym_AT, anon_sym_LBRACK, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1874), 5, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_RBRACE, + [78992] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1397), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1872), 26, + ACTIONS(1392), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -71708,81 +94057,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [52487] = 12, - ACTIONS(3), 1, + [79039] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1831), 1, - anon_sym_DOT, - ACTIONS(1833), 1, - anon_sym_LPAREN, - ACTIONS(1841), 1, - anon_sym_STAR_STAR, - ACTIONS(1845), 1, - anon_sym_LBRACK, - ACTIONS(1835), 2, + sym_line_continuation, + ACTIONS(1437), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1837), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1849), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1099), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1843), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 19, + ACTIONS(1435), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [52550] = 5, - ACTIONS(3), 1, + [79083] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1880), 1, - sym__string_start, - STATE(849), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1753), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2410), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1751), 29, + ACTIONS(2408), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -71804,49 +94139,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52599] = 15, - ACTIONS(3), 1, + [79127] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1831), 1, + sym_line_continuation, + ACTIONS(1455), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1450), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(1833), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1841), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1845), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1851), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(1853), 1, anon_sym_AMP, - ACTIONS(1855), 1, anon_sym_CARET, - ACTIONS(1835), 2, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [79171] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1430), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1837), 2, + ACTIONS(1433), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1427), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1849), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - STATE(1099), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1843), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1870), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1868), 16, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1425), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, @@ -71857,35 +94223,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [52668] = 8, - ACTIONS(3), 1, + [79219] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1795), 1, - anon_sym_DOT, - ACTIONS(1797), 1, - anon_sym_LPAREN, - ACTIONS(1805), 1, - anon_sym_STAR_STAR, - ACTIONS(1809), 1, - anon_sym_LBRACK, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, + sym_line_continuation, + ACTIONS(270), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 26, + ACTIONS(268), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -71903,38 +94265,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [52723] = 8, - ACTIONS(3), 1, + [79265] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1763), 1, - anon_sym_DOT, - ACTIONS(1765), 1, - anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_STAR_STAR, - ACTIONS(1777), 1, - anon_sym_LBRACK, - STATE(1173), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1874), 5, + sym_line_continuation, + ACTIONS(1397), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1872), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1392), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -71952,255 +94307,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52778] = 15, - ACTIONS(3), 1, + [79311] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1831), 1, - anon_sym_DOT, - ACTIONS(1833), 1, - anon_sym_LPAREN, - ACTIONS(1841), 1, - anon_sym_STAR_STAR, - ACTIONS(1845), 1, - anon_sym_LBRACK, - ACTIONS(1851), 1, - anon_sym_PIPE, - ACTIONS(1853), 1, - anon_sym_AMP, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1835), 2, + sym_line_continuation, + ACTIONS(270), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1837), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1849), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1099), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1843), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1885), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1883), 16, + ACTIONS(268), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [52847] = 12, - ACTIONS(3), 1, + [79357] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1763), 1, + sym_line_continuation, + ACTIONS(1397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 29, anon_sym_DOT, - ACTIONS(1765), 1, anon_sym_LPAREN, - ACTIONS(1773), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1777), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1767), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1769), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1783), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - STATE(1173), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1775), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [79403] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1481), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 19, + ACTIONS(1479), 30, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52910] = 13, - ACTIONS(3), 1, + [79447] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1763), 1, - anon_sym_DOT, - ACTIONS(1765), 1, - anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_STAR_STAR, - ACTIONS(1777), 1, - anon_sym_LBRACK, - ACTIONS(1789), 1, - anon_sym_CARET, - ACTIONS(1767), 2, + sym_line_continuation, + ACTIONS(2414), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1769), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1783), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1173), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1775), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 18, + ACTIONS(2412), 30, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [52975] = 14, - ACTIONS(3), 1, + [79491] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1763), 1, + sym_line_continuation, + ACTIONS(2418), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2416), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(1765), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1773), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1777), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(1789), 1, - anon_sym_CARET, - ACTIONS(1767), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1769), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1783), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - STATE(1173), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1775), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [79535] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2422), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2420), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53042] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, + anon_sym_RBRACE, + sym_type_conversion, + [79579] = 8, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1765), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1773), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1777), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(1767), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1173), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1775), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, + ACTIONS(2243), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2241), 24, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -72211,45 +94601,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53101] = 11, - ACTIONS(3), 1, + [79633] = 7, + ACTIONS(2426), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_if, + ACTIONS(2432), 1, + anon_sym_and, + ACTIONS(2434), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(1831), 1, - anon_sym_DOT, - ACTIONS(1833), 1, - anon_sym_LPAREN, - ACTIONS(1841), 1, - anon_sym_STAR_STAR, - ACTIONS(1845), 1, - anon_sym_LBRACK, - ACTIONS(1835), 2, + sym_line_continuation, + ACTIONS(2428), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1849), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1099), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1843), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 21, + ACTIONS(2424), 26, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -72261,53 +94645,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [53162] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, + sym_type_conversion, + [79685] = 8, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1833), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1841), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1845), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(1851), 1, - anon_sym_PIPE, - ACTIONS(1853), 1, - anon_sym_AMP, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1835), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1522), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1837), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1849), 2, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - STATE(1099), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1843), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1889), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [79739] = 7, + ACTIONS(2438), 1, anon_sym_as, + ACTIONS(2442), 1, + anon_sym_if, + ACTIONS(2444), 1, + anon_sym_and, + ACTIONS(2446), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2440), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1887), 16, + ACTIONS(2436), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, + anon_sym_GT_GT, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -72315,36 +94737,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [53231] = 8, - ACTIONS(3), 1, + [79791] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1763), 1, - anon_sym_DOT, - ACTIONS(1765), 1, - anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_STAR_STAR, - ACTIONS(1777), 1, - anon_sym_LBRACK, - STATE(1173), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, + sym_line_continuation, + ACTIONS(1425), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1430), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1427), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -72362,193 +94778,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53286] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, + anon_sym_RBRACE, + [79837] = 11, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1765), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1773), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1777), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(1789), 1, - anon_sym_CARET, - ACTIONS(1767), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1769), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1783), 2, + ACTIONS(2302), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1173), 2, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1775), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1885), 3, + ACTIONS(2201), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1883), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2296), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 19, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53355] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, + [79897] = 15, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1765), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1773), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1777), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(1767), 2, + ACTIONS(2304), 1, + anon_sym_PIPE, + ACTIONS(2306), 1, + anon_sym_AMP, + ACTIONS(2308), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1783), 2, + ACTIONS(2290), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2302), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1173), 2, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1775), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, + ACTIONS(2239), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2296), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2237), 14, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53416] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_as, - ACTIONS(1891), 1, + [79965] = 19, + ACTIONS(2248), 1, anon_sym_DOT, - ACTIONS(1893), 1, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1901), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1905), 1, - anon_sym_LBRACK, - ACTIONS(1907), 1, + ACTIONS(2300), 1, anon_sym_not, - ACTIONS(1911), 1, + ACTIONS(2304), 1, anon_sym_PIPE, - ACTIONS(1913), 1, + ACTIONS(2306), 1, anon_sym_AMP, - ACTIONS(1915), 1, + ACTIONS(2308), 1, anon_sym_CARET, - ACTIONS(1919), 1, + ACTIONS(2312), 1, anon_sym_is, - STATE(1355), 1, + STATE(1656), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1895), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, + ACTIONS(2290), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1909), 2, + ACTIONS(2302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1917), 2, + ACTIONS(2310), 2, anon_sym_LT, anon_sym_GT, - STATE(1197), 2, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1903), 3, + ACTIONS(2296), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1899), 6, + ACTIONS(2058), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2292), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1761), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [53495] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, + [80041] = 8, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1765), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1773), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1777), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - STATE(1173), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1878), 5, + ACTIONS(2201), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2199), 24, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -72572,27 +94984,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53550] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, + [80095] = 10, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1833), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1841), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1845), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - STATE(1099), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1878), 5, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2296), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [80153] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1485), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 26, + ACTIONS(1483), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -72600,7 +95053,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -72618,30 +95073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [53605] = 5, - ACTIONS(3), 1, + [80197] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(651), 1, - sym__string_start, - STATE(881), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1245), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2450), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(2448), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -72663,32 +95112,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [53654] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, + anon_sym_RBRACE, + sym_type_conversion, + [80241] = 14, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1833), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1841), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1845), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(1835), 2, + ACTIONS(2306), 1, + anon_sym_AMP, + ACTIONS(2308), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1099), 2, + ACTIONS(2290), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2302), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1843), 3, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2296), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, + ACTIONS(2199), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [80307] = 6, + ACTIONS(2444), 1, + anon_sym_and, + ACTIONS(2446), 1, + anon_sym_or, + ACTIONS(2454), 1, anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2457), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 23, + ACTIONS(2452), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -72696,11 +95191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -72712,131 +95210,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [53713] = 13, - ACTIONS(3), 1, + [80357] = 5, + ACTIONS(2444), 1, + anon_sym_and, + ACTIONS(2446), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(655), 1, + sym_line_continuation, + ACTIONS(2461), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2459), 28, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(659), 1, - anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - ACTIONS(1923), 1, - anon_sym_not, - STATE(841), 1, - sym_string, - STATE(853), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [53778] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - ACTIONS(1927), 1, anon_sym_not, - STATE(989), 1, - sym_string, - STATE(1160), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [53843] = 8, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [80405] = 4, + ACTIONS(2444), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(1831), 1, - anon_sym_DOT, - ACTIONS(1833), 1, - anon_sym_LPAREN, - ACTIONS(1841), 1, - anon_sym_STAR_STAR, - ACTIONS(1845), 1, - anon_sym_LBRACK, - STATE(1099), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1874), 5, + sym_line_continuation, + ACTIONS(2465), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1872), 26, + ACTIONS(2463), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -72844,9 +95275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -72863,104 +95295,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [53898] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(1931), 1, - anon_sym_not, - STATE(844), 1, - sym_string, - STATE(895), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [53963] = 14, - ACTIONS(3), 1, + [80451] = 7, + ACTIONS(2438), 1, + anon_sym_as, + ACTIONS(2442), 1, + anon_sym_if, + ACTIONS(2444), 1, + anon_sym_and, + ACTIONS(2446), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(1831), 1, + sym_line_continuation, + ACTIONS(2428), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2424), 27, anon_sym_DOT, - ACTIONS(1833), 1, anon_sym_LPAREN, - ACTIONS(1841), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1845), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1853), 1, - anon_sym_AMP, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1837), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1849), 2, + anon_sym_not, anon_sym_PLUS, anon_sym_DASH, - STATE(1099), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1843), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [80503] = 7, + ACTIONS(2438), 1, anon_sym_as, + ACTIONS(2442), 1, + anon_sym_if, + ACTIONS(2444), 1, + anon_sym_and, + ACTIONS(2446), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2469), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 17, + ACTIONS(2467), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, + anon_sym_GT_GT, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -72968,47 +95385,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [54030] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, + [80555] = 13, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1765), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1773), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1777), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(1789), 1, + ACTIONS(2308), 1, anon_sym_CARET, - ACTIONS(1767), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1769), 2, + ACTIONS(2290), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1783), 2, + ACTIONS(2302), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1173), 2, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1775), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1889), 3, + ACTIONS(2201), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1887), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2296), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 16, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -73016,94 +95428,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [54099] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1933), 1, + [80619] = 12, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1935), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1943), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1947), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(1949), 1, - anon_sym_not, - ACTIONS(1953), 1, - anon_sym_PIPE, - ACTIONS(1955), 1, - anon_sym_AMP, - ACTIONS(1957), 1, - anon_sym_CARET, - ACTIONS(1961), 1, - anon_sym_is, - STATE(1357), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1937), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1939), 2, + ACTIONS(2290), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1951), 2, + ACTIONS(2302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1241), 2, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1945), 3, + ACTIONS(2201), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2296), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1941), 6, + ACTIONS(2199), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1761), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [54178] = 5, - ACTIONS(3), 1, + anon_sym_is, + [80681] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(309), 1, - sym__string_start, - STATE(845), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(1481), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(1479), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -73125,87 +95527,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [54227] = 13, - ACTIONS(3), 1, + [80725] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1831), 1, + sym_line_continuation, + ACTIONS(2473), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2471), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(1833), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1841), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1845), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_CARET, - ACTIONS(1835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1837), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1849), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - STATE(1099), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1843), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, - anon_sym_as, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [80769] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2465), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 18, + ACTIONS(2463), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [54292] = 8, - ACTIONS(3), 1, + [80813] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1831), 1, - anon_sym_DOT, - ACTIONS(1833), 1, - anon_sym_LPAREN, - ACTIONS(1841), 1, - anon_sym_STAR_STAR, - ACTIONS(1845), 1, - anon_sym_LBRACK, - STATE(1099), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2477), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 26, + ACTIONS(2475), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -73224,73 +95649,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [54347] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1965), 1, - anon_sym_not, - STATE(875), 1, - sym_string, - STATE(899), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [54412] = 5, - ACTIONS(3), 1, + sym_type_conversion, + [80857] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1967), 1, - sym__string_start, - STATE(879), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1753), 5, + sym_line_continuation, + ACTIONS(1437), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1751), 29, + ACTIONS(1435), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -73298,7 +95668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -73320,79 +95689,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [54461] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - ACTIONS(1972), 1, - anon_sym_not, - STATE(914), 1, - sym_string, - STATE(1092), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [54526] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [80901] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(651), 1, - sym__string_start, - STATE(849), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1749), 5, + sym_line_continuation, + ACTIONS(1481), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1747), 29, + ACTIONS(1479), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -73416,144 +95732,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [54575] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - ACTIONS(1976), 1, - anon_sym_not, - STATE(866), 1, - sym_string, - STATE(996), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [54640] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_as, - ACTIONS(1978), 1, + [80945] = 15, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1980), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1992), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(1994), 1, - anon_sym_not, - ACTIONS(1998), 1, + ACTIONS(2304), 1, anon_sym_PIPE, - ACTIONS(2000), 1, + ACTIONS(2306), 1, anon_sym_AMP, - ACTIONS(2002), 1, + ACTIONS(2308), 1, anon_sym_CARET, - ACTIONS(2006), 1, - anon_sym_is, - STATE(1353), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1982), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1984), 2, + ACTIONS(2290), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1996), 2, + ACTIONS(2302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2004), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1205), 2, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1990), 3, + ACTIONS(2197), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2296), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1986), 6, + ACTIONS(2195), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1761), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [54719] = 5, - ACTIONS(3), 1, + anon_sym_is, + [81013] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(747), 1, - sym__string_start, - STATE(889), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1245), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1413), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(1411), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -73571,104 +95826,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [54768] = 13, - ACTIONS(3), 1, + [81057] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, + sym_line_continuation, + ACTIONS(2414), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2412), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(313), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2010), 1, anon_sym_not, - STATE(837), 1, - sym_string, - STATE(861), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [54833] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - anon_sym_DOT, - ACTIONS(1797), 1, - anon_sym_LPAREN, - ACTIONS(1805), 1, - anon_sym_STAR_STAR, - ACTIONS(1809), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(1817), 1, anon_sym_AMP, - ACTIONS(1819), 1, anon_sym_CARET, - ACTIONS(1799), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1801), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1813), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1807), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1889), 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [81101] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2418), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1887), 16, + ACTIONS(2416), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -73677,52 +95908,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [54902] = 15, - ACTIONS(3), 1, + [81145] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1795), 1, - anon_sym_DOT, - ACTIONS(1797), 1, - anon_sym_LPAREN, - ACTIONS(1805), 1, - anon_sym_STAR_STAR, - ACTIONS(1809), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_PIPE, - ACTIONS(1817), 1, - anon_sym_AMP, - ACTIONS(1819), 1, - anon_sym_CARET, - ACTIONS(1799), 2, + sym_line_continuation, + ACTIONS(2481), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1801), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1813), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1807), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1870), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1868), 16, + ACTIONS(2479), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -73731,85 +95949,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [54971] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - ACTIONS(2014), 1, - anon_sym_not, - STATE(884), 1, - sym_string, - STATE(1014), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [55036] = 5, - ACTIONS(3), 1, + [81189] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(747), 1, - sym__string_start, - STATE(896), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1749), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1413), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1747), 29, + ACTIONS(1411), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -73827,49 +95990,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [55085] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, + [81233] = 15, + ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(1797), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1805), 1, + ACTIONS(2294), 1, anon_sym_STAR_STAR, - ACTIONS(1809), 1, + ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(1799), 2, + ACTIONS(2304), 1, + anon_sym_PIPE, + ACTIONS(2306), 1, + anon_sym_AMP, + ACTIONS(2308), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1801), 2, + ACTIONS(2290), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1813), 2, + ACTIONS(2302), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1066), 2, + STATE(1522), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1807), 3, + ACTIONS(2205), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2296), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, + ACTIONS(2203), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [81301] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1485), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 19, + ACTIONS(1483), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -73878,50 +96084,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [55148] = 13, - ACTIONS(3), 1, + [81345] = 7, + ACTIONS(2426), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_if, + ACTIONS(2432), 1, + anon_sym_and, + ACTIONS(2434), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(1795), 1, + sym_line_continuation, + ACTIONS(2440), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2436), 26, anon_sym_DOT, - ACTIONS(1797), 1, anon_sym_LPAREN, - ACTIONS(1805), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1809), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1819), 1, - anon_sym_CARET, - ACTIONS(1799), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1801), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1813), 2, + anon_sym_not, anon_sym_PLUS, anon_sym_DASH, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1807), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [81397] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 18, + ACTIONS(2483), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -73930,51 +96170,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [55213] = 14, - ACTIONS(3), 1, + [81441] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1795), 1, - anon_sym_DOT, - ACTIONS(1797), 1, - anon_sym_LPAREN, - ACTIONS(1805), 1, - anon_sym_STAR_STAR, - ACTIONS(1809), 1, - anon_sym_LBRACK, - ACTIONS(1817), 1, - anon_sym_AMP, - ACTIONS(1819), 1, - anon_sym_CARET, - ACTIONS(1799), 2, + sym_line_continuation, + ACTIONS(2489), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1801), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1813), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1807), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 17, + ACTIONS(2487), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -73983,43 +96211,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [55280] = 10, - ACTIONS(3), 1, + [81485] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1795), 1, - anon_sym_DOT, - ACTIONS(1797), 1, - anon_sym_LPAREN, - ACTIONS(1805), 1, - anon_sym_STAR_STAR, - ACTIONS(1809), 1, - anon_sym_LBRACK, - ACTIONS(1799), 2, + sym_line_continuation, + ACTIONS(2493), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1807), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 23, + ACTIONS(2491), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -74032,34 +96252,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [55339] = 8, - ACTIONS(3), 1, + [81529] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1795), 1, - anon_sym_DOT, - ACTIONS(1797), 1, - anon_sym_LPAREN, - ACTIONS(1805), 1, - anon_sym_STAR_STAR, - ACTIONS(1809), 1, - anon_sym_LBRACK, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, + sym_line_continuation, + ACTIONS(2497), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 26, + ACTIONS(2495), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -74079,52 +96293,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [55394] = 15, - ACTIONS(3), 1, + [81573] = 6, + ACTIONS(2432), 1, + anon_sym_and, + ACTIONS(2434), 1, + anon_sym_or, + ACTIONS(2499), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(1795), 1, + sym_line_continuation, + ACTIONS(2457), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2452), 27, anon_sym_DOT, - ACTIONS(1797), 1, anon_sym_LPAREN, - ACTIONS(1805), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1809), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_PIPE, - ACTIONS(1817), 1, - anon_sym_AMP, - ACTIONS(1819), 1, - anon_sym_CARET, - ACTIONS(1799), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1801), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1813), 2, + anon_sym_not, anon_sym_PLUS, anon_sym_DASH, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1807), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1885), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [81623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2504), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1883), 16, + ACTIONS(2502), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -74133,33 +96378,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [55463] = 5, - ACTIONS(3), 1, + [81667] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2016), 1, - sym__string_start, - STATE(896), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1753), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2508), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1751), 29, + ACTIONS(2506), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -74177,44 +96417,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [55512] = 11, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [81711] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1795), 1, - anon_sym_DOT, - ACTIONS(1797), 1, - anon_sym_LPAREN, - ACTIONS(1805), 1, - anon_sym_STAR_STAR, - ACTIONS(1809), 1, - anon_sym_LBRACK, - ACTIONS(1799), 2, + sym_line_continuation, + ACTIONS(2512), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1813), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1807), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1878), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 21, + ACTIONS(2510), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -74227,44 +96460,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [55573] = 10, - ACTIONS(3), 1, + [81755] = 5, + ACTIONS(2432), 1, + anon_sym_and, + ACTIONS(2434), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(1893), 1, - anon_sym_LPAREN, - ACTIONS(1901), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, - anon_sym_LBRACK, - ACTIONS(1895), 2, + sym_line_continuation, + ACTIONS(2461), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(1197), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1903), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 22, - anon_sym_RPAREN, + ACTIONS(2459), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -74275,291 +96501,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [55631] = 15, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [81803] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1933), 1, - anon_sym_DOT, - ACTIONS(1935), 1, - anon_sym_LPAREN, - ACTIONS(1943), 1, - anon_sym_STAR_STAR, - ACTIONS(1947), 1, - anon_sym_LBRACK, - ACTIONS(1953), 1, - anon_sym_PIPE, - ACTIONS(1955), 1, - anon_sym_AMP, - ACTIONS(1957), 1, - anon_sym_CARET, - ACTIONS(1937), 2, + sym_line_continuation, + ACTIONS(1481), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1951), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1885), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1945), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1883), 15, + ACTIONS(1479), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [55699] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(852), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [55761] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(854), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [55823] = 15, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [81847] = 4, + ACTIONS(2432), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(1891), 1, + sym_line_continuation, + ACTIONS(2465), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2463), 29, anon_sym_DOT, - ACTIONS(1893), 1, anon_sym_LPAREN, - ACTIONS(1901), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1905), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1911), 1, + anon_sym_not, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(1913), 1, anon_sym_AMP, - ACTIONS(1915), 1, anon_sym_CARET, - ACTIONS(1895), 2, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [81893] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1481), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1909), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1197), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1870), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1903), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1868), 15, - anon_sym_RPAREN, + ACTIONS(1479), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [55891] = 15, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [81937] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1891), 1, + sym_line_continuation, + ACTIONS(1481), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(1893), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1901), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1905), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1911), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(1913), 1, anon_sym_AMP, - ACTIONS(1915), 1, anon_sym_CARET, - ACTIONS(1895), 2, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [81981] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2489), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1909), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1197), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1889), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1903), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1887), 15, - anon_sym_RPAREN, + ACTIONS(2487), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [55959] = 5, - ACTIONS(3), 1, + [82025] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2019), 1, - sym__string_start, - STATE(904), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1753), 4, + sym_line_continuation, + ACTIONS(1485), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1751), 29, + ACTIONS(1483), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -74577,75 +96750,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56007] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1117), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [56069] = 4, - ACTIONS(3), 1, + [82069] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1245), 6, + sym_line_continuation, + ACTIONS(1413), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(1411), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -74669,25 +96791,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [56115] = 4, - ACTIONS(3), 1, + [82113] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(268), 6, + sym_line_continuation, + ACTIONS(1413), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 29, + ACTIONS(1411), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -74711,336 +96832,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [56161] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(998), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [56223] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(997), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [56285] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1120), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [56347] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(996), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [56409] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(2022), 1, + [82157] = 19, + ACTIONS(2207), 1, anon_sym_DOT, - ACTIONS(2024), 1, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(2032), 1, + ACTIONS(2326), 1, anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_LBRACK, - ACTIONS(2038), 1, + ACTIONS(2332), 1, anon_sym_not, - ACTIONS(2042), 1, + ACTIONS(2336), 1, anon_sym_PIPE, - ACTIONS(2044), 1, + ACTIONS(2338), 1, anon_sym_AMP, - ACTIONS(2046), 1, + ACTIONS(2340), 1, anon_sym_CARET, - ACTIONS(2050), 1, + ACTIONS(2344), 1, anon_sym_is, - STATE(1365), 1, + STATE(1689), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(2026), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, + ACTIONS(2322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2040), 2, + ACTIONS(2334), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2048), 2, + ACTIONS(2342), 2, anon_sym_LT, anon_sym_GT, - STATE(1337), 2, + STATE(1592), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2034), 3, + ACTIONS(2328), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1761), 6, - anon_sym_RPAREN, + ACTIONS(2058), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - ACTIONS(2030), 6, + ACTIONS(2324), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [56487] = 12, - ACTIONS(3), 1, + [82233] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(629), 1, + sym_line_continuation, + ACTIONS(1430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1433), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1427), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(633), 1, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(995), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [56549] = 5, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1425), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [82281] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(723), 1, - sym__string_start, - STATE(949), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(1455), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 28, + ACTIONS(1450), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -75062,24 +96971,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [56597] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [82325] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2054), 5, + sym_line_continuation, + ACTIONS(1437), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 31, - sym__string_start, + ACTIONS(1435), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -75101,37 +97014,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [56641] = 8, - ACTIONS(3), 1, + [82369] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1980), 1, - anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_STAR_STAR, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1874), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2481), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1872), 25, + ACTIONS(2479), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -75146,785 +97052,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [56695] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(898), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [56757] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(987), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [56819] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(986), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [56881] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1094), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [56943] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1093), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57005] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 1, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [82413] = 8, + ACTIONS(2316), 1, anon_sym_DOT, - ACTIONS(1935), 1, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(1943), 1, + ACTIONS(2326), 1, anon_sym_STAR_STAR, - ACTIONS(1947), 1, + ACTIONS(2330), 1, anon_sym_LBRACK, - ACTIONS(1953), 1, - anon_sym_PIPE, - ACTIONS(1955), 1, - anon_sym_AMP, - ACTIONS(1957), 1, - anon_sym_CARET, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1951), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1241), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1592), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1889), 3, - anon_sym_EQ, + ACTIONS(2243), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1945), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1887), 15, + ACTIONS(2241), 25, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57073] = 15, - ACTIONS(3), 1, + [82467] = 5, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1933), 1, + sym_line_continuation, + ACTIONS(275), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(270), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(268), 27, anon_sym_DOT, - ACTIONS(1935), 1, anon_sym_LPAREN, - ACTIONS(1943), 1, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1947), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1953), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(1955), 1, anon_sym_AMP, - ACTIONS(1957), 1, anon_sym_CARET, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1951), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1870), 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [82515] = 7, + ACTIONS(2426), 1, + anon_sym_as, + ACTIONS(2430), 1, + anon_sym_if, + ACTIONS(2432), 1, + anon_sym_and, + ACTIONS(2434), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2469), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1945), 3, + ACTIONS(2467), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1868), 15, - anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [82567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1413), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1411), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57141] = 12, - ACTIONS(3), 1, + [82611] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(629), 1, + sym_line_continuation, + ACTIONS(1413), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1411), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(985), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57203] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(873), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57265] = 12, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [82655] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, + sym_line_continuation, + ACTIONS(2390), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2388), 30, + sym_string_start, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(855), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57327] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1092), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57389] = 12, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [82699] = 8, + ACTIONS(2517), 1, + anon_sym_not, + ACTIONS(2523), 1, + anon_sym_is, + STATE(1245), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(727), 1, + sym_line_continuation, + ACTIONS(2520), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2352), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(2514), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2350), 21, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(731), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(1011), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57451] = 12, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [82753] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(703), 1, + sym_line_continuation, + ACTIONS(1495), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1490), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(707), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1089), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57513] = 12, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [82797] = 8, + ACTIONS(2529), 1, + anon_sym_not, + ACTIONS(2535), 1, + anon_sym_is, + STATE(1247), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(727), 1, + sym_line_continuation, + ACTIONS(2532), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2352), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2526), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2350), 21, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(1012), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57575] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(1014), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, + anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57637] = 3, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [82851] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2054), 5, + sym_line_continuation, + ACTIONS(1444), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 31, - sym__newline, - sym__string_start, - anon_sym_SEMI, + ACTIONS(1439), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -75946,70 +97484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57681] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(1015), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57743] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [82895] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(699), 1, - sym__string_start, - STATE(904), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1749), 4, + sym_line_continuation, + ACTIONS(2473), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1747), 29, + ACTIONS(2471), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -76021,7 +97508,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -76039,677 +97525,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [57791] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1085), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57853] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(1024), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57915] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(1025), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [57977] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(1027), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58039] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1084), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58101] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(1028), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58163] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1083), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58225] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1078), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58287] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - anon_sym_LPAREN, - ACTIONS(659), 1, - anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(859), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58349] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1107), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58411] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(916), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58473] = 12, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [82939] = 5, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, + sym_line_continuation, + ACTIONS(1394), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 27, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(313), 1, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(856), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58535] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [82987] = 8, + ACTIONS(2316), 1, + anon_sym_DOT, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(2326), 1, + anon_sym_STAR_STAR, + ACTIONS(2330), 1, anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(850), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1592), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2201), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58597] = 4, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83041] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(2465), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2463), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -76731,28 +97655,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [58643] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [83085] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(723), 1, - sym__string_start, - STATE(1018), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1749), 5, + sym_line_continuation, + ACTIONS(2540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1747), 28, + ACTIONS(2538), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -76774,17 +97696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [58691] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [83129] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2058), 5, + sym_line_continuation, + ACTIONS(2544), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2056), 31, - sym__string_start, + ACTIONS(2542), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -76815,268 +97739,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [58735] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1176), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58797] = 12, - ACTIONS(3), 1, + [83173] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(679), 1, + sym_line_continuation, + ACTIONS(2410), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2408), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(683), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1175), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58859] = 12, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [83217] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(679), 1, + sym_line_continuation, + ACTIONS(2548), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2546), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(683), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1174), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58921] = 12, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [83261] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(679), 1, + sym_line_continuation, + ACTIONS(2552), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2550), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(683), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1172), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [58983] = 12, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [83305] = 7, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(605), 1, + sym_line_continuation, + ACTIONS(2469), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2467), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(609), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(886), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, + anon_sym_not, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [59045] = 4, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83357] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(2540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 30, + ACTIONS(2538), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -77107,549 +97948,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [59091] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(2060), 1, - sym_identifier, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1380), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2062), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [59157] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(922), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [59219] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 1, + [83401] = 11, + ACTIONS(2316), 1, anon_sym_DOT, - ACTIONS(1935), 1, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(1943), 1, + ACTIONS(2326), 1, anon_sym_STAR_STAR, - ACTIONS(1947), 1, + ACTIONS(2330), 1, anon_sym_LBRACK, - ACTIONS(1937), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1939), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1951), 2, + ACTIONS(2334), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1241), 2, + STATE(1592), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1945), 3, + ACTIONS(2328), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1876), 18, + ACTIONS(2199), 20, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [59281] = 13, - ACTIONS(3), 1, + [83461] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1933), 1, + sym_line_continuation, + ACTIONS(2564), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2562), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [83505] = 15, + ACTIONS(2316), 1, anon_sym_DOT, - ACTIONS(1935), 1, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(1943), 1, + ACTIONS(2326), 1, anon_sym_STAR_STAR, - ACTIONS(1947), 1, + ACTIONS(2330), 1, anon_sym_LBRACK, - ACTIONS(1957), 1, + ACTIONS(2336), 1, + anon_sym_PIPE, + ACTIONS(2338), 1, + anon_sym_AMP, + ACTIONS(2340), 1, anon_sym_CARET, - ACTIONS(1937), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2239), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1939), 2, + ACTIONS(2322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1951), 2, + ACTIONS(2334), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1241), 2, + STATE(1592), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1945), 3, + ACTIONS(2328), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1876), 17, + ACTIONS(2237), 15, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [59345] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1150), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [59407] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, + [83573] = 8, + ACTIONS(2316), 1, + anon_sym_DOT, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(683), 1, + ACTIONS(2326), 1, + anon_sym_STAR_STAR, + ACTIONS(2330), 1, anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1171), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [59469] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1160), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, + sym_line_continuation, + STATE(1592), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [59531] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1159), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, + ACTIONS(2201), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [59593] = 14, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83627] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1933), 1, + sym_line_continuation, + ACTIONS(2544), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2542), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(1935), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1943), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1947), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1955), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(1957), 1, anon_sym_CARET, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1951), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83671] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1463), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1945), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 16, + ACTIONS(1461), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [59659] = 12, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym_type_conversion, + [83715] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(605), 1, + sym_line_continuation, + ACTIONS(2548), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2546), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(609), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(851), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [59721] = 10, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83759] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1933), 1, - anon_sym_DOT, - ACTIONS(1935), 1, - anon_sym_LPAREN, - ACTIONS(1943), 1, - anon_sym_STAR_STAR, - ACTIONS(1947), 1, - anon_sym_LBRACK, - ACTIONS(1937), 2, + sym_line_continuation, + ACTIONS(2552), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1945), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 22, + ACTIONS(2550), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -77660,135 +98301,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [59779] = 12, - ACTIONS(3), 1, + [83803] = 5, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LBRACE, - ACTIONS(699), 1, - sym__string_start, - STATE(989), 1, - sym_string, - STATE(1158), 1, - sym_primary_expression, - ACTIONS(691), 2, - sym_ellipsis, - sym_float, - ACTIONS(687), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(695), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1925), 5, - anon_sym_print, - anon_sym_match, + sym_line_continuation, + ACTIONS(1425), 2, anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1301), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [59841] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, + anon_sym_for, + ACTIONS(1430), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1427), 27, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(291), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(923), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [59903] = 8, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83851] = 5, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1933), 1, + sym_line_continuation, + ACTIONS(342), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(344), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(603), 27, anon_sym_DOT, - ACTIONS(1935), 1, anon_sym_LPAREN, - ACTIONS(1943), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1947), 1, + anon_sym_AT, anon_sym_LBRACK, - STATE(1241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83899] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2508), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 25, + ACTIONS(2506), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -77806,35 +98428,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [59957] = 8, - ACTIONS(3), 1, + [83943] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1933), 1, - anon_sym_DOT, - ACTIONS(1935), 1, - anon_sym_LPAREN, - ACTIONS(1943), 1, - anon_sym_STAR_STAR, - ACTIONS(1947), 1, - anon_sym_LBRACK, - STATE(1241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1874), 5, + sym_line_continuation, + ACTIONS(2564), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1872), 25, + ACTIONS(2562), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -77852,45 +98469,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [60011] = 11, - ACTIONS(3), 1, + [83987] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1933), 1, - anon_sym_DOT, - ACTIONS(1935), 1, - anon_sym_LPAREN, - ACTIONS(1943), 1, - anon_sym_STAR_STAR, - ACTIONS(1947), 1, - anon_sym_LBRACK, - ACTIONS(1937), 2, + sym_line_continuation, + ACTIONS(1463), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1951), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1945), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 20, + ACTIONS(1461), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -77901,92 +98510,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [60071] = 12, - ACTIONS(3), 1, + [84031] = 8, + ACTIONS(2569), 1, + anon_sym_not, + ACTIONS(2575), 1, + anon_sym_is, + STATE(1273), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(605), 1, + sym_line_continuation, + ACTIONS(2572), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2352), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2566), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2350), 21, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(609), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(897), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60133] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [84085] = 10, + ACTIONS(2316), 1, anon_sym_DOT, - ACTIONS(1935), 1, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(1943), 1, + ACTIONS(2326), 1, anon_sym_STAR_STAR, - ACTIONS(1947), 1, + ACTIONS(2330), 1, anon_sym_LBRACK, - STATE(1241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2201), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 25, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1592), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2328), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -77997,600 +98604,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [60187] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(895), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60249] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(857), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60311] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(860), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60373] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(861), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60435] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1825), 1, - sym_identifier, - STATE(875), 1, - sym_string, - STATE(1369), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1354), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1829), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60501] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(862), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60563] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, + [84143] = 14, + ACTIONS(2316), 1, + anon_sym_DOT, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(633), 1, + ACTIONS(2326), 1, + anon_sym_STAR_STAR, + ACTIONS(2330), 1, anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(1002), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60625] = 14, - ACTIONS(3), 1, + ACTIONS(2338), 1, + anon_sym_AMP, + ACTIONS(2340), 1, + anon_sym_CARET, + ACTIONS(3), 2, sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(2064), 1, - sym_identifier, - STATE(875), 1, - sym_string, - STATE(1369), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1359), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, + sym_line_continuation, + ACTIONS(2201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2334), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2066), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, + STATE(1592), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60691] = 12, - ACTIONS(3), 1, + ACTIONS(2328), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [84209] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(605), 1, + sym_line_continuation, + ACTIONS(2422), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2420), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(887), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60753] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(903), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [60815] = 12, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [84253] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1891), 1, + sym_line_continuation, + ACTIONS(1397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 30, anon_sym_DOT, - ACTIONS(1893), 1, anon_sym_LPAREN, - ACTIONS(1901), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1905), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1895), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [84297] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2072), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2058), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1909), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - STATE(1197), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_as, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [84341] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2580), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1903), 3, + ACTIONS(2578), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1876), 18, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [84385] = 4, + ACTIONS(1452), 1, anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1455), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1450), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [60877] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1891), 1, + anon_sym_RBRACE, + sym_type_conversion, + [84431] = 13, + ACTIONS(2316), 1, anon_sym_DOT, - ACTIONS(1893), 1, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(1901), 1, + ACTIONS(2326), 1, anon_sym_STAR_STAR, - ACTIONS(1905), 1, + ACTIONS(2330), 1, anon_sym_LBRACK, - ACTIONS(1915), 1, + ACTIONS(2340), 1, anon_sym_CARET, - ACTIONS(1895), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, + ACTIONS(2322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1909), 2, + ACTIONS(2334), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1197), 2, + STATE(1592), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1903), 3, + ACTIONS(2328), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1876), 17, - anon_sym_RPAREN, + ACTIONS(2199), 17, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -78602,129 +98913,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [60941] = 14, - ACTIONS(3), 1, + [84495] = 4, + ACTIONS(1394), 1, + anon_sym_COMMA, + ACTIONS(3), 2, sym_comment, - ACTIONS(1891), 1, + sym_line_continuation, + ACTIONS(1397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 29, anon_sym_DOT, - ACTIONS(1893), 1, anon_sym_LPAREN, - ACTIONS(1901), 1, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1905), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1913), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(1915), 1, anon_sym_CARET, - ACTIONS(1895), 2, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [84541] = 12, + ACTIONS(2316), 1, + anon_sym_DOT, + ACTIONS(2318), 1, + anon_sym_LPAREN, + ACTIONS(2326), 1, + anon_sym_STAR_STAR, + ACTIONS(2330), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, + ACTIONS(2322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1909), 2, + ACTIONS(2334), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1197), 2, + STATE(1592), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1903), 3, + ACTIONS(2328), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1876), 16, - anon_sym_RPAREN, + ACTIONS(2199), 18, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [61007] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(864), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [61069] = 5, - ACTIONS(3), 1, + [84603] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(699), 1, - sym__string_start, - STATE(934), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1245), 4, + sym_line_continuation, + ACTIONS(2390), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(2388), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -78747,25 +99046,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [61117] = 3, - ACTIONS(3), 1, + [84647] = 4, + ACTIONS(1492), 1, + anon_sym_COMMA, + ACTIONS(3), 2, sym_comment, - ACTIONS(2054), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1495), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 31, - sym__string_start, + ACTIONS(1490), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -78788,242 +99087,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [61161] = 12, - ACTIONS(3), 1, + sym_type_conversion, + [84693] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(655), 1, + sym_line_continuation, + ACTIONS(344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(347), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(603), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(659), 1, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(870), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [61223] = 19, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(342), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [84741] = 5, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, + sym_line_continuation, + ACTIONS(1394), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1397), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 27, anon_sym_DOT, - ACTIONS(2070), 1, anon_sym_LPAREN, - ACTIONS(2078), 1, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2082), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2084), 1, anon_sym_not, - ACTIONS(2088), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2090), 1, anon_sym_AMP, - ACTIONS(2092), 1, anon_sym_CARET, - ACTIONS(2096), 1, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, anon_sym_is, - STATE(1370), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(2072), 2, + [84789] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2504), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2074), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2086), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2094), 2, anon_sym_LT, anon_sym_GT, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2080), 3, + ACTIONS(2502), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2076), 6, - anon_sym_in, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1761), 7, + anon_sym_is, + [84833] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(270), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(268), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, - [61299] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - anon_sym_LPAREN, - ACTIONS(659), 1, - anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(848), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [61361] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(651), 1, - sym__string_start, - STATE(866), 1, - sym_string, - STATE(902), 1, - sym_primary_expression, - ACTIONS(643), 2, - sym_ellipsis, - sym_float, - ACTIONS(639), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(647), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1212), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [61423] = 8, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [84877] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1891), 1, + sym_line_continuation, + ACTIONS(2584), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2582), 30, anon_sym_DOT, - ACTIONS(1893), 1, anon_sym_LPAREN, - ACTIONS(1901), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1905), 1, + anon_sym_AT, anon_sym_LBRACK, - STATE(1197), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, - anon_sym_as, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [84921] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2497), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 25, - anon_sym_RPAREN, + ACTIONS(2495), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -79041,50 +99338,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [61477] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1891), 1, + [84965] = 15, + ACTIONS(2316), 1, anon_sym_DOT, - ACTIONS(1893), 1, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(1901), 1, + ACTIONS(2326), 1, anon_sym_STAR_STAR, - ACTIONS(1905), 1, + ACTIONS(2330), 1, anon_sym_LBRACK, - ACTIONS(1911), 1, + ACTIONS(2336), 1, anon_sym_PIPE, - ACTIONS(1913), 1, + ACTIONS(2338), 1, anon_sym_AMP, - ACTIONS(1915), 1, + ACTIONS(2340), 1, anon_sym_CARET, - ACTIONS(1895), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2197), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, + ACTIONS(2322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1909), 2, + ACTIONS(2334), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1197), 2, + STATE(1592), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1885), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1903), 3, + ACTIONS(2328), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1883), 15, - anon_sym_RPAREN, + ACTIONS(2195), 15, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -79094,45 +99391,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [61545] = 11, - ACTIONS(3), 1, + [85033] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(1893), 1, - anon_sym_LPAREN, - ACTIONS(1901), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, - anon_sym_LBRACK, - ACTIONS(1895), 2, + sym_line_continuation, + ACTIONS(1397), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1909), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1197), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1903), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 20, - anon_sym_RPAREN, + ACTIONS(1392), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -79143,35 +99433,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [61605] = 8, - ACTIONS(3), 1, + [85079] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(1893), 1, - anon_sym_LPAREN, - ACTIONS(1901), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, - anon_sym_LBRACK, - STATE(1197), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 25, - anon_sym_RPAREN, + ACTIONS(268), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -79189,185 +99475,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [61659] = 12, - ACTIONS(3), 1, + [85125] = 4, + ACTIONS(1441), 1, + anon_sym_COMMA, + ACTIONS(3), 2, sym_comment, - ACTIONS(655), 1, + sym_line_continuation, + ACTIONS(1444), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1439), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(659), 1, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(876), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [61721] = 12, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [85171] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(655), 1, + sym_line_continuation, + ACTIONS(2584), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2582), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(659), 1, - anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(872), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [61783] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - anon_sym_LPAREN, - ACTIONS(659), 1, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(867), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [61845] = 8, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [85215] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(1893), 1, - anon_sym_LPAREN, - ACTIONS(1901), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, - anon_sym_LBRACK, - STATE(1197), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1874), 5, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1872), 25, - anon_sym_RPAREN, + ACTIONS(268), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -79385,226 +99598,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [61899] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, + anon_sym_RBRACE, + [85259] = 15, + ACTIONS(2316), 1, + anon_sym_DOT, + ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(659), 1, + ACTIONS(2326), 1, + anon_sym_STAR_STAR, + ACTIONS(2330), 1, anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(877), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [61961] = 12, - ACTIONS(3), 1, + ACTIONS(2336), 1, + anon_sym_PIPE, + ACTIONS(2338), 1, + anon_sym_AMP, + ACTIONS(2340), 1, + anon_sym_CARET, + ACTIONS(3), 2, sym_comment, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - sym__string_start, - ACTIONS(311), 1, - anon_sym_LPAREN, - ACTIONS(313), 1, - anon_sym_LBRACK, - STATE(837), 1, - sym_string, - STATE(846), 1, - sym_primary_expression, - ACTIONS(69), 2, - sym_ellipsis, - sym_float, - ACTIONS(63), 3, + sym_line_continuation, + ACTIONS(2205), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2320), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2334), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(73), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2008), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1157), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, + STATE(1592), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [62023] = 12, - ACTIONS(3), 1, + ACTIONS(2328), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2203), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [85327] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(655), 1, + sym_line_continuation, + ACTIONS(2493), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2491), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(659), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(853), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [62085] = 12, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [85371] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(655), 1, + sym_line_continuation, + ACTIONS(2422), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2420), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(659), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(858), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [62147] = 5, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [85415] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(2098), 1, - anon_sym_EQ, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(2580), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(2578), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -79628,26 +99774,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [62195] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [85459] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(635), 1, - anon_sym_EQ, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(2508), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 29, + ACTIONS(2506), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -79671,135 +99815,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [62243] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1058), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [62305] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - anon_sym_LPAREN, - ACTIONS(659), 1, - anon_sym_LBRACK, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(675), 1, - sym__string_start, - STATE(841), 1, - sym_string, - STATE(865), 1, - sym_primary_expression, - ACTIONS(667), 2, - sym_ellipsis, - sym_float, - ACTIONS(663), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(671), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1921), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1047), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [62367] = 8, - ACTIONS(3), 1, + anon_sym_RBRACE, + [85503] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1980), 1, - anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_STAR_STAR, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, + sym_line_continuation, + ACTIONS(2450), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 25, + ACTIONS(2448), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -79817,45 +99856,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [62421] = 11, - ACTIONS(3), 1, + anon_sym_RBRACE, + [85547] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1980), 1, - anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_STAR_STAR, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(1982), 2, + sym_line_continuation, + ACTIONS(2450), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1996), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1990), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 20, + ACTIONS(2448), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -79866,138 +99898,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [62481] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(894), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [62543] = 15, - ACTIONS(3), 1, + [85591] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1980), 1, - anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_STAR_STAR, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2000), 1, - anon_sym_AMP, - ACTIONS(2002), 1, - anon_sym_CARET, - ACTIONS(1982), 2, + sym_line_continuation, + ACTIONS(2477), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1984), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1996), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1885), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1990), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1883), 15, + ACTIONS(2475), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [62611] = 8, - ACTIONS(3), 1, + [85635] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1980), 1, - anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_STAR_STAR, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, + sym_line_continuation, + ACTIONS(2504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 25, + ACTIONS(2502), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -80015,68 +99979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [62665] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym__string_start, - STATE(914), 1, - sym_string, - STATE(1060), 1, - sym_primary_expression, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(711), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(719), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1970), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1290), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [62727] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [85679] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2058), 5, + sym_line_continuation, + ACTIONS(2580), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2056), 31, + ACTIONS(2578), 30, sym__newline, - sym__string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -80106,28 +100021,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [62771] = 5, - ACTIONS(3), 1, + [85723] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2100), 1, - sym__string_start, - STATE(1018), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1753), 5, + sym_line_continuation, + ACTIONS(1463), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1751), 28, + ACTIONS(1461), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -80149,296 +100062,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [62819] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(1044), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [62881] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(893), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [62943] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(892), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63005] = 12, - ACTIONS(3), 1, + [85767] = 4, + STATE(1273), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(605), 1, + sym_line_continuation, + ACTIONS(2368), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2366), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(891), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63067] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(2103), 1, - sym_identifier, - STATE(875), 1, - sym_string, - STATE(1364), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1378), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2105), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63133] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1980), 1, - anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_STAR_STAR, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(1982), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [85813] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1990), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 22, + ACTIONS(268), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -80449,620 +100145,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [63191] = 14, - ACTIONS(3), 1, + [85857] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1978), 1, + sym_line_continuation, + ACTIONS(2584), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2582), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(1980), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1988), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1992), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2000), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2002), 1, anon_sym_CARET, - ACTIONS(1982), 2, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [85901] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1984), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1996), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, + ACTIONS(347), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1990), 3, + ACTIONS(603), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1876), 16, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(342), 16, anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [63257] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(890), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63319] = 13, - ACTIONS(3), 1, + anon_sym_RBRACE, + [85949] = 4, + STATE(1245), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1978), 1, + sym_line_continuation, + ACTIONS(2368), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2366), 29, anon_sym_DOT, - ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1992), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2002), 1, - anon_sym_CARET, - ACTIONS(1982), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1984), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1996), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1990), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1876), 17, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [85995] = 5, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(275), 2, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(270), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(268), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [63383] = 12, - ACTIONS(3), 1, + [86043] = 4, + STATE(1247), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1980), 1, - anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_STAR_STAR, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(1982), 2, + sym_line_continuation, + ACTIONS(2368), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1984), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1996), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1990), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 18, + ACTIONS(2366), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [63445] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym__string_start, - STATE(884), 1, - sym_string, - STATE(1045), 1, - sym_primary_expression, - ACTIONS(739), 2, - sym_ellipsis, - sym_float, - ACTIONS(735), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1181), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63507] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - STATE(844), 1, - sym_string, - STATE(847), 1, - sym_primary_expression, - ACTIONS(617), 2, - sym_ellipsis, - sym_float, - ACTIONS(613), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(621), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1156), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63569] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(959), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63631] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(960), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63693] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(965), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63755] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(967), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63817] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(970), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63879] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, + [86089] = 19, + ACTIONS(2056), 1, anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(899), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, + ACTIONS(2066), 1, + anon_sym_STAR_STAR, + ACTIONS(2074), 1, + anon_sym_not, + ACTIONS(2078), 1, + anon_sym_PIPE, + ACTIONS(2080), 1, + anon_sym_AMP, + ACTIONS(2082), 1, + anon_sym_CARET, + ACTIONS(2086), 1, + anon_sym_is, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2136), 1, + anon_sym_LBRACK, + STATE(1637), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2060), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2062), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2076), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2084), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1261), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [63941] = 3, - ACTIONS(3), 1, + ACTIONS(2068), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2058), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + ACTIONS(2064), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86165] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2058), 5, + sym_line_continuation, + ACTIONS(2564), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2056), 31, - sym__string_start, + ACTIONS(2562), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -81093,171 +100454,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [63985] = 12, - ACTIONS(3), 1, + [86209] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(287), 1, + sym_line_continuation, + ACTIONS(2497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2495), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(291), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(972), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [64047] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(291), 1, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(974), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [64109] = 14, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [86253] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(287), 1, + sym_line_continuation, + ACTIONS(1430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1433), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1427), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(291), 1, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - ACTIONS(1861), 1, - sym_identifier, - STATE(875), 1, - sym_string, - STATE(1373), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - STATE(1218), 2, - sym_attribute, - sym_subscript, - ACTIONS(297), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1863), 5, - anon_sym_print, - anon_sym_match, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1425), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 13, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [64175] = 4, - ACTIONS(3), 1, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [86301] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(268), 6, + sym_line_continuation, + ACTIONS(2348), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 29, + ACTIONS(2346), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -81269,6 +100561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -81286,25 +100579,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [64221] = 4, - ACTIONS(3), 1, + [86345] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1245), 6, + sym_line_continuation, + ACTIONS(2493), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -81329,181 +100620,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [64267] = 12, - ACTIONS(3), 1, + [86389] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(287), 1, + sym_line_continuation, + ACTIONS(2390), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2388), 30, + sym_string_start, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(291), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(309), 1, - sym__string_start, - STATE(875), 1, - sym_string, - STATE(971), 1, - sym_primary_expression, - ACTIONS(301), 2, - sym_ellipsis, - sym_float, - ACTIONS(297), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(305), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1963), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - STATE(1273), 15, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - [64329] = 15, - ACTIONS(3), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [86433] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1978), 1, + sym_line_continuation, + ACTIONS(1444), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1439), 30, anon_sym_DOT, - ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1992), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1998), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2000), 1, anon_sym_AMP, - ACTIONS(2002), 1, anon_sym_CARET, - ACTIONS(1982), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1984), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1996), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1870), 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [86477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2552), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1990), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1868), 15, + ACTIONS(2550), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [64397] = 15, - ACTIONS(3), 1, + anon_sym_RBRACE, + [86521] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1978), 1, + sym_line_continuation, + ACTIONS(2548), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2546), 30, anon_sym_DOT, - ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(1992), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1998), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2000), 1, anon_sym_AMP, - ACTIONS(2002), 1, anon_sym_CARET, - ACTIONS(1982), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1984), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1996), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1889), 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [86565] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2489), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1990), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1887), 15, + ACTIONS(2487), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [64465] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [86609] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2109), 5, + sym_line_continuation, + ACTIONS(2485), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2107), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2483), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -81525,16 +100865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [64508] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [86653] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(1495), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 30, + ACTIONS(1490), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -81565,26 +100907,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [64551] = 4, - ACTIONS(3), 1, + [86697] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1245), 6, + sym_line_continuation, + ACTIONS(2072), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 28, + ACTIONS(2058), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -81606,16 +100948,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [64596] = 3, - ACTIONS(3), 1, + [86741] = 7, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2428), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2424), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [86793] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(2410), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 30, + ACTIONS(2408), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -81646,23 +101034,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [64639] = 3, - ACTIONS(3), 1, + [86837] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2113), 5, + sym_line_continuation, + ACTIONS(2512), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2111), 30, + ACTIONS(2510), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -81684,18 +101075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [64682] = 3, - ACTIONS(3), 1, + [86881] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2113), 5, + sym_line_continuation, + ACTIONS(1444), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2111), 30, + ACTIONS(1439), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -81726,23 +101116,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [64725] = 3, - ACTIONS(3), 1, + [86925] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2117), 5, + sym_line_continuation, + ACTIONS(2544), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2115), 30, + ACTIONS(2542), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [86969] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2540), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -81765,17 +101198,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [64768] = 3, - ACTIONS(3), 1, + [87013] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2121), 5, + sym_line_continuation, + ACTIONS(1495), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2119), 30, + ACTIONS(1490), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -81806,25 +101239,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [64811] = 3, - ACTIONS(3), 1, + [87057] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2125), 5, + sym_line_continuation, + ACTIONS(2481), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2123), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2479), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -81846,23 +101279,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [64854] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [87101] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2129), 5, + sym_line_continuation, + ACTIONS(1455), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2127), 30, + ACTIONS(1450), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -81885,24 +101321,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [64897] = 3, - ACTIONS(3), 1, + [87145] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2133), 5, + sym_line_continuation, + ACTIONS(2418), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2131), 30, + ACTIONS(2416), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -81925,27 +101362,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [64940] = 4, - ACTIONS(3), 1, + [87189] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(268), 6, + sym_line_continuation, + ACTIONS(2414), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 28, + ACTIONS(2412), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -81967,68 +101402,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [64985] = 15, - ACTIONS(3), 1, + anon_sym_RBRACE, + [87233] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, + sym_line_continuation, + ACTIONS(1397), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 30, anon_sym_DOT, - ACTIONS(2024), 1, anon_sym_LPAREN, - ACTIONS(2032), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2036), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2042), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(2026), 2, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [87277] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2465), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2040), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1870), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2034), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1868), 14, - anon_sym_RPAREN, + ACTIONS(2463), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65052] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [87321] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2137), 5, + sym_line_continuation, + ACTIONS(2072), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2135), 30, + ACTIONS(2058), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -82059,81 +101526,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [65095] = 15, - ACTIONS(3), 1, + [87365] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_LBRACK, - ACTIONS(2042), 1, - anon_sym_PIPE, - ACTIONS(2044), 1, - anon_sym_AMP, - ACTIONS(2046), 1, - anon_sym_CARET, - ACTIONS(2026), 2, + sym_line_continuation, + ACTIONS(1397), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2028), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2040), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1889), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2034), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1887), 14, - anon_sym_RPAREN, + ACTIONS(1392), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65162] = 3, - ACTIONS(3), 1, + [87409] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2054), 5, + sym_line_continuation, + ACTIONS(2477), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 30, - sym__string_start, + ACTIONS(2475), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -82151,24 +101607,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65205] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [87453] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(2473), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 29, + ACTIONS(2471), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -82192,33 +101648,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65250] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1245), 5, + anon_sym_RBRACE, + [87497] = 7, + ACTIONS(2554), 1, anon_sym_as, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2440), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(2436), 26, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [87549] = 6, + ACTIONS(2558), 1, anon_sym_and, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(2586), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2457), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2452), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82233,25 +101738,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65295] = 3, - ACTIONS(3), 1, + [87599] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2054), 5, + sym_line_continuation, + ACTIONS(2485), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 30, - sym__string_start, + ACTIONS(2483), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -82273,16 +101779,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65338] = 3, - ACTIONS(3), 1, + [87643] = 5, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(1324), 5, + sym_line_continuation, + ACTIONS(2461), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1319), 30, + ACTIONS(2459), 28, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -82297,8 +101808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82313,27 +101822,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65381] = 3, - ACTIONS(3), 1, + [87691] = 5, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2141), 5, + sym_line_continuation, + ACTIONS(1425), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1430), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2139), 30, + ACTIONS(1427), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -82351,18 +101865,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [65424] = 3, - ACTIONS(3), 1, + [87739] = 4, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(2137), 5, + sym_line_continuation, + ACTIONS(2465), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2135), 30, + ACTIONS(2463), 29, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -82377,7 +101892,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -82393,25 +101907,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65467] = 3, - ACTIONS(3), 1, + [87785] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1353), 5, + sym_line_continuation, + ACTIONS(2348), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1348), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2346), 30, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [87829] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2512), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2510), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -82433,30 +101988,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65510] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [87873] = 8, + ACTIONS(2181), 1, + anon_sym_not, + ACTIONS(2193), 1, + anon_sym_is, + STATE(1245), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1283), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + sym_line_continuation, + ACTIONS(2191), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1281), 30, + ACTIONS(2368), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(2173), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2366), 21, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -82467,35 +102035,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [65553] = 3, - ACTIONS(3), 1, + [87927] = 5, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(342), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(344), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(603), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -82513,32 +102078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65596] = 3, - ACTIONS(3), 1, + [87975] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(2058), 5, + sym_line_continuation, + ACTIONS(344), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(347), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2056), 30, - sym__string_start, + ACTIONS(603), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -82547,29 +102104,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(342), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65639] = 5, - ACTIONS(3), 1, + [88023] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1242), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(2348), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 27, + ACTIONS(2346), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -82595,30 +102162,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65686] = 3, - ACTIONS(3), 1, + [88067] = 8, + ACTIONS(2592), 1, + anon_sym_not, + ACTIONS(2598), 1, + anon_sym_is, + STATE(1359), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2145), 5, + sym_line_continuation, + ACTIONS(2352), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2595), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2143), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2589), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2350), 21, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -82629,30 +102207,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [65729] = 3, - ACTIONS(3), 1, + [88120] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2149), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2481), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2147), 30, + ACTIONS(2479), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -82674,26 +102247,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [65772] = 3, - ACTIONS(3), 1, + [88163] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2153), 5, + sym_line_continuation, + ACTIONS(2552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2151), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2550), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -82715,29 +102287,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65815] = 3, - ACTIONS(3), 1, + [88206] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2117), 5, + sym_line_continuation, + ACTIONS(2422), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2115), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2420), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -82755,25 +102327,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65858] = 3, - ACTIONS(3), 1, + [88249] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2129), 5, + sym_line_continuation, + ACTIONS(2548), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2127), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2546), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -82795,74 +102367,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65901] = 12, - ACTIONS(3), 1, + [88292] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_LBRACK, - ACTIONS(2026), 2, + sym_line_continuation, + ACTIONS(2410), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2040), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2034), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 17, + ACTIONS(2408), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [65962] = 3, - ACTIONS(3), 1, + [88335] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2133), 5, + sym_line_continuation, + ACTIONS(2564), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2131), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2562), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -82884,24 +102447,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66005] = 3, - ACTIONS(3), 1, + [88378] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1324), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1455), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1319), 30, + ACTIONS(1450), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -82923,23 +102487,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [66048] = 3, - ACTIONS(3), 1, + [88421] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1353), 5, + sym_line_continuation, + ACTIONS(2544), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1348), 30, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -82963,26 +102527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [66091] = 3, - ACTIONS(3), 1, + [88464] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2157), 5, + sym_line_continuation, + ACTIONS(2540), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2155), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2538), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -83004,144 +102567,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66134] = 13, - ACTIONS(3), 1, + [88507] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_LBRACK, - ACTIONS(2046), 1, - anon_sym_CARET, - ACTIONS(2026), 2, + sym_line_continuation, + ACTIONS(1495), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2040), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2034), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 16, + ACTIONS(1490), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66197] = 14, - ACTIONS(3), 1, + [88550] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_LBRACK, - ACTIONS(2044), 1, - anon_sym_AMP, - ACTIONS(2046), 1, - anon_sym_CARET, - ACTIONS(2026), 2, + sym_line_continuation, + ACTIONS(1444), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2040), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2034), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 15, + ACTIONS(1439), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66262] = 10, - ACTIONS(3), 1, + [88593] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_LBRACK, - ACTIONS(2026), 2, + sym_line_continuation, + ACTIONS(2465), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2034), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 21, + ACTIONS(2463), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -83152,25 +102687,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66319] = 3, - ACTIONS(3), 1, + [88636] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2161), 5, + sym_line_continuation, + ACTIONS(2422), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2420), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -83192,25 +102727,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66362] = 3, - ACTIONS(3), 1, + [88679] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2165), 5, + sym_line_continuation, + ACTIONS(2473), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2471), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -83232,23 +102767,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66405] = 3, - ACTIONS(3), 1, + [88722] = 5, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(668), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1277), 5, + sym_line_continuation, + ACTIONS(270), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1275), 30, + ACTIONS(268), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -83270,36 +102809,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [66448] = 8, - ACTIONS(3), 1, + [88769] = 5, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(2314), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_LBRACK, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, + sym_line_continuation, + ACTIONS(1397), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 24, + ACTIONS(1392), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83317,23 +102851,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66501] = 3, - ACTIONS(3), 1, + [88816] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2169), 5, + sym_line_continuation, + ACTIONS(2580), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2167), 30, + ACTIONS(2578), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -83355,27 +102891,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [66544] = 3, - ACTIONS(3), 1, + [88859] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2169), 5, + sym_line_continuation, + ACTIONS(1495), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2167), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1490), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -83397,96 +102931,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66587] = 15, - ACTIONS(3), 1, + [88902] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, + sym_line_continuation, + ACTIONS(1444), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1439), 29, anon_sym_DOT, - ACTIONS(2024), 1, anon_sym_LPAREN, - ACTIONS(2032), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2036), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2042), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(2026), 2, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [88945] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2512), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2028), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2040), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1885), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2034), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1883), 14, + ACTIONS(2510), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66654] = 11, - ACTIONS(3), 1, + [88988] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_LBRACK, - ACTIONS(2026), 2, + sym_line_continuation, + ACTIONS(2504), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2040), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2034), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 19, + ACTIONS(2502), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -83497,34 +103051,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66713] = 8, - ACTIONS(3), 1, + [89031] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_LBRACK, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 5, + sym_line_continuation, + ACTIONS(2497), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 24, + ACTIONS(2495), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83542,29 +103091,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66766] = 3, - ACTIONS(3), 1, + [89074] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2149), 5, + sym_line_continuation, + ACTIONS(1463), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2147), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1461), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83582,23 +103131,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66809] = 3, - ACTIONS(3), 1, + [89117] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1277), 5, + sym_line_continuation, + ACTIONS(2493), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1275), 30, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -83622,29 +103171,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66852] = 3, - ACTIONS(3), 1, + [89160] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2173), 5, + sym_line_continuation, + ACTIONS(1437), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1435), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83662,23 +103211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66895] = 5, - ACTIONS(3), 1, + [89203] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(270), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(1397), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 27, + ACTIONS(1392), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -83704,28 +103251,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [66942] = 3, - ACTIONS(3), 1, + [89246] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2141), 5, + sym_line_continuation, + ACTIONS(1485), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2139), 30, + ACTIONS(1483), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83743,30 +103291,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [66985] = 3, - ACTIONS(3), 1, + [89289] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2177), 5, + sym_line_continuation, + ACTIONS(1481), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2175), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1479), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83784,17 +103331,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67028] = 3, - ACTIONS(3), 1, + [89332] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2058), 5, + sym_line_continuation, + ACTIONS(1481), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2056), 30, - sym__string_start, + ACTIONS(1479), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83824,28 +103371,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67071] = 3, - ACTIONS(3), 1, + [89375] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2137), 5, + sym_line_continuation, + ACTIONS(1413), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2135), 30, + ACTIONS(1411), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83863,28 +103411,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [67114] = 3, - ACTIONS(3), 1, + [89418] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1353), 5, + sym_line_continuation, + ACTIONS(1413), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1348), 30, + ACTIONS(1411), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83902,24 +103451,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [67157] = 3, - ACTIONS(3), 1, + [89461] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2113), 5, + sym_line_continuation, + ACTIONS(2489), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2111), 30, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -83943,23 +103491,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [67200] = 3, - ACTIONS(3), 1, + [89504] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2117), 5, + sym_line_continuation, + ACTIONS(2485), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2115), 30, + ACTIONS(2483), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -83983,26 +103531,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [67243] = 3, - ACTIONS(3), 1, + [89547] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2181), 5, + sym_line_continuation, + ACTIONS(2508), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2179), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2506), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -84024,34 +103571,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67286] = 8, - ACTIONS(3), 1, + [89590] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, - anon_sym_DOT, - ACTIONS(2070), 1, - anon_sym_LPAREN, - ACTIONS(2078), 1, - anon_sym_STAR_STAR, - ACTIONS(2082), 1, - anon_sym_LBRACK, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1874), 4, + sym_line_continuation, + ACTIONS(2584), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1872), 25, + ACTIONS(2582), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -84069,22 +103611,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67339] = 3, - ACTIONS(3), 1, + [89633] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2129), 5, + sym_line_continuation, + ACTIONS(1441), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1444), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2127), 30, + ACTIONS(1439), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -84108,32 +103652,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [67382] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 5, + [89678] = 7, + ACTIONS(2601), 1, anon_sym_as, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_and, + ACTIONS(2607), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2469), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2131), 30, + ACTIONS(2467), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -84148,28 +103696,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [67425] = 3, - ACTIONS(3), 1, + [89729] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1283), 5, + sym_line_continuation, + ACTIONS(1455), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1281), 30, + ACTIONS(1450), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -84187,18 +103736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [67468] = 3, - ACTIONS(3), 1, + [89772] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2149), 5, + sym_line_continuation, + ACTIONS(1485), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2147), 30, + ACTIONS(1483), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -84206,6 +103754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -84227,25 +103776,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [67511] = 3, - ACTIONS(3), 1, + [89815] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(1425), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1430), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 30, + ACTIONS(1427), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -84267,33 +103817,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [67554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 5, + [89860] = 7, + ACTIONS(2601), 1, anon_sym_as, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_and, + ACTIONS(2607), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2428), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1275), 30, + ACTIONS(2424), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -84308,30 +103861,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [67597] = 3, - ACTIONS(3), 1, + [89911] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1324), 5, + sym_line_continuation, + ACTIONS(268), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(270), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(298), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [89956] = 4, + ACTIONS(2605), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2465), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1319), 30, + ACTIONS(2463), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -84347,33 +103943,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [67640] = 3, - ACTIONS(3), 1, + [90001] = 5, + ACTIONS(2605), 1, + anon_sym_and, + ACTIONS(2607), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2169), 5, + sym_line_continuation, + ACTIONS(2461), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2167), 30, + ACTIONS(2459), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -84388,26 +103985,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [67683] = 3, - ACTIONS(3), 1, + [90048] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2054), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1397), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 30, - sym__string_start, + ACTIONS(1392), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -84429,84 +104026,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67726] = 15, - ACTIONS(3), 1, + [90093] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, - anon_sym_DOT, - ACTIONS(2070), 1, - anon_sym_LPAREN, - ACTIONS(2078), 1, - anon_sym_STAR_STAR, - ACTIONS(2082), 1, - anon_sym_LBRACK, - ACTIONS(2088), 1, - anon_sym_PIPE, - ACTIONS(2090), 1, - anon_sym_AMP, - ACTIONS(2092), 1, - anon_sym_CARET, - ACTIONS(1889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2072), 2, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2074), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2086), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2080), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1887), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(268), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1267), 5, + [90138] = 6, + ACTIONS(2605), 1, + anon_sym_and, + ACTIONS(2607), 1, + anon_sym_or, + ACTIONS(2609), 1, anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2457), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 30, + ACTIONS(2452), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -84521,23 +104110,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67836] = 3, - ACTIONS(3), 1, + [90187] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1267), 5, + sym_line_continuation, + ACTIONS(1455), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 30, + ACTIONS(1450), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -84561,49 +104150,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67879] = 15, - ACTIONS(3), 1, + [90230] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, + sym_line_continuation, + ACTIONS(344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(347), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(603), 14, anon_sym_DOT, - ACTIONS(2070), 1, anon_sym_LPAREN, - ACTIONS(2078), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2082), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2088), 1, - anon_sym_PIPE, - ACTIONS(2090), 1, - anon_sym_AMP, - ACTIONS(2092), 1, - anon_sym_CARET, - ACTIONS(1870), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2072), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2074), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2086), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2080), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1868), 15, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(342), 15, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -84613,31 +104192,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67946] = 5, - ACTIONS(3), 1, + [90277] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1242), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(1425), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1430), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 27, + ACTIONS(1427), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -84655,71 +104233,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2058), 5, + [90322] = 7, + ACTIONS(2601), 1, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2056), 30, - sym__string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + ACTIONS(2603), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, + ACTIONS(2605), 1, anon_sym_and, + ACTIONS(2607), 1, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [68036] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2177), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2440), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2175), 30, + ACTIONS(2436), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -84734,25 +104277,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68079] = 3, - ACTIONS(3), 1, + [90373] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2121), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1413), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2119), 30, + ACTIONS(1411), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -84774,25 +104317,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68122] = 3, - ACTIONS(3), 1, + [90416] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2185), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1413), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2183), 30, + ACTIONS(1411), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -84814,23 +104357,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68165] = 3, - ACTIONS(3), 1, + [90459] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2109), 5, + sym_line_continuation, + ACTIONS(2481), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2107), 30, + ACTIONS(2479), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -84854,23 +104397,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68208] = 3, - ACTIONS(3), 1, + [90502] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2181), 5, + sym_line_continuation, + ACTIONS(2418), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2179), 30, + ACTIONS(2416), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -84894,72 +104437,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 5, + [90545] = 7, + ACTIONS(2612), 1, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2163), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + ACTIONS(2614), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, + ACTIONS(2616), 1, anon_sym_and, + ACTIONS(2618), 1, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - [68294] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2157), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2469), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2155), 30, + ACTIONS(2467), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -84974,29 +104481,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68337] = 3, - ACTIONS(3), 1, + [90596] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1283), 5, + sym_line_continuation, + ACTIONS(2450), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1281), 30, + ACTIONS(2448), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85014,24 +104521,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68380] = 5, - ACTIONS(3), 1, + [90639] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(270), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(2477), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 27, + ACTIONS(2475), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -85040,6 +104543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85057,25 +104561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68427] = 3, - ACTIONS(3), 1, + [90682] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2185), 5, + sym_line_continuation, + ACTIONS(1481), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2183), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1479), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -85097,24 +104601,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68470] = 3, - ACTIONS(3), 1, + [90725] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2125), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1481), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2123), 30, + ACTIONS(1479), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -85136,23 +104641,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68513] = 3, - ACTIONS(3), 1, + [90768] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2145), 5, + sym_line_continuation, + ACTIONS(2414), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2143), 30, + ACTIONS(2412), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -85176,29 +104681,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68556] = 3, - ACTIONS(3), 1, + [90811] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2173), 5, + sym_line_continuation, + ACTIONS(2414), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 30, + ACTIONS(2412), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85216,29 +104721,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68599] = 3, - ACTIONS(3), 1, + [90854] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1263), 5, + sym_line_continuation, + ACTIONS(2418), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1261), 30, + ACTIONS(2416), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85256,31 +104761,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68642] = 3, - ACTIONS(3), 1, + [90897] = 7, + ACTIONS(2612), 1, + anon_sym_as, + ACTIONS(2614), 1, + anon_sym_if, + ACTIONS(2616), 1, + anon_sym_and, + ACTIONS(2618), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2177), 5, + sym_line_continuation, + ACTIONS(2428), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2175), 30, + ACTIONS(2424), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -85295,30 +104805,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [68685] = 3, - ACTIONS(3), 1, + [90948] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 5, + sym_line_continuation, + ACTIONS(2481), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 30, + ACTIONS(2479), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85336,32 +104845,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68728] = 3, - ACTIONS(3), 1, + [90991] = 4, + ACTIONS(2616), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2465), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 30, + ACTIONS(2463), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -85377,25 +104886,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68771] = 3, - ACTIONS(3), 1, + [91036] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1437), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 30, + ACTIONS(1435), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -85417,29 +104926,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68814] = 3, - ACTIONS(3), 1, + [91079] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1263), 5, + sym_line_continuation, + ACTIONS(2485), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1261), 30, + ACTIONS(2483), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85457,28 +104966,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68857] = 3, - ACTIONS(3), 1, + [91122] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 5, + sym_line_continuation, + ACTIONS(2489), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 30, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85496,32 +105006,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68900] = 3, - ACTIONS(3), 1, + [91165] = 5, + ACTIONS(2616), 1, + anon_sym_and, + ACTIONS(2618), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2161), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2461), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 30, + ACTIONS(2459), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -85536,31 +105048,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68943] = 3, - ACTIONS(3), 1, + [91212] = 6, + ACTIONS(2616), 1, + anon_sym_and, + ACTIONS(2618), 1, + anon_sym_or, + ACTIONS(2620), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(2121), 5, + sym_line_continuation, + ACTIONS(2457), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2119), 30, + ACTIONS(2452), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -85575,24 +105091,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [68986] = 3, - ACTIONS(3), 1, + [91261] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2153), 5, + sym_line_continuation, + ACTIONS(1492), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1495), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2151), 30, + ACTIONS(1490), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -85616,31 +105132,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [69029] = 3, - ACTIONS(3), 1, + [91306] = 7, + ACTIONS(2612), 1, + anon_sym_as, + ACTIONS(2614), 1, + anon_sym_if, + ACTIONS(2616), 1, + anon_sym_and, + ACTIONS(2618), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2185), 5, + sym_line_continuation, + ACTIONS(2440), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2183), 30, + ACTIONS(2436), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -85655,29 +105176,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69072] = 3, - ACTIONS(3), 1, + [91357] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2109), 5, + sym_line_continuation, + ACTIONS(1495), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2107), 30, + ACTIONS(1490), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85695,30 +105216,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69115] = 3, - ACTIONS(3), 1, + [91400] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1267), 5, + sym_line_continuation, + ACTIONS(1444), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 30, + ACTIONS(1439), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85736,28 +105256,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [69158] = 3, - ACTIONS(3), 1, + [91443] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2181), 5, + sym_line_continuation, + ACTIONS(2493), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2179), 30, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85775,70 +105296,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69201] = 8, - ACTIONS(3), 1, + [91486] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2022), 1, - anon_sym_DOT, - ACTIONS(2024), 1, - anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_LBRACK, - STATE(1337), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1874), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1872), 24, - anon_sym_RPAREN, - anon_sym_COMMA, + sym_line_continuation, + ACTIONS(2477), 5, anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [69254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 30, + ACTIONS(2475), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -85860,22 +105336,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69297] = 4, - ACTIONS(3), 1, + [91529] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(2450), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(2448), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85885,7 +105359,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85903,27 +105376,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69342] = 3, - ACTIONS(3), 1, + [91572] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2157), 5, + sym_line_continuation, + ACTIONS(2497), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2155), 30, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85941,30 +105416,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69385] = 3, - ACTIONS(3), 1, + [91615] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1267), 5, + sym_line_continuation, + ACTIONS(2504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 30, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85982,21 +105456,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [69428] = 4, - ACTIONS(3), 1, + [91658] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 29, + ACTIONS(268), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -86006,7 +105479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86024,30 +105496,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69473] = 3, - ACTIONS(3), 1, + [91701] = 7, + ACTIONS(2623), 1, + anon_sym_as, + ACTIONS(2625), 1, + anon_sym_if, + ACTIONS(2627), 1, + anon_sym_and, + ACTIONS(2629), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(2469), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 30, + ACTIONS(2467), 26, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -86062,34 +105540,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69516] = 3, - ACTIONS(3), 1, + [91752] = 7, + ACTIONS(2623), 1, + anon_sym_as, + ACTIONS(2625), 1, + anon_sym_if, + ACTIONS(2627), 1, + anon_sym_and, + ACTIONS(2629), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(2428), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2424), 26, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -86104,36 +105584,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69559] = 8, - ACTIONS(3), 1, + [91803] = 4, + ACTIONS(2627), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, - anon_sym_DOT, - ACTIONS(2070), 1, - anon_sym_LPAREN, - ACTIONS(2078), 1, - anon_sym_STAR_STAR, - ACTIONS(2082), 1, - anon_sym_LBRACK, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 4, + sym_line_continuation, + ACTIONS(2465), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 25, + ACTIONS(2463), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -86149,130 +105625,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69612] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2068), 1, - anon_sym_DOT, - ACTIONS(2070), 1, - anon_sym_LPAREN, - ACTIONS(2078), 1, - anon_sym_STAR_STAR, - ACTIONS(2082), 1, - anon_sym_LBRACK, - ACTIONS(1878), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2072), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2086), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2080), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 20, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, + [91848] = 5, + ACTIONS(2627), 1, anon_sym_and, + ACTIONS(2629), 1, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [69671] = 15, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, - anon_sym_DOT, - ACTIONS(2070), 1, - anon_sym_LPAREN, - ACTIONS(2078), 1, - anon_sym_STAR_STAR, - ACTIONS(2082), 1, - anon_sym_LBRACK, - ACTIONS(2088), 1, - anon_sym_PIPE, - ACTIONS(2090), 1, - anon_sym_AMP, - ACTIONS(2092), 1, - anon_sym_CARET, - ACTIONS(1885), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2072), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2074), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2086), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2080), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1883), 15, - anon_sym_COMMA, + sym_line_continuation, + ACTIONS(2461), 5, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [69738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1267), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 30, + ACTIONS(2459), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -86287,29 +105667,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69781] = 3, - ACTIONS(3), 1, + [91895] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1267), 5, + sym_line_continuation, + ACTIONS(2508), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 30, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86327,32 +105707,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69824] = 3, - ACTIONS(3), 1, + [91938] = 6, + ACTIONS(2627), 1, + anon_sym_and, + ACTIONS(2629), 1, + anon_sym_or, + ACTIONS(2631), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(2153), 5, + sym_line_continuation, + ACTIONS(2457), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2151), 30, + ACTIONS(2452), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -86367,29 +105750,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69867] = 3, - ACTIONS(3), 1, + [91987] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2161), 5, + sym_line_continuation, + ACTIONS(2512), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 30, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86407,29 +105790,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69910] = 3, - ACTIONS(3), 1, + [92030] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 5, + sym_line_continuation, + ACTIONS(2473), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 30, + ACTIONS(2471), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86447,18 +105830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69953] = 3, - ACTIONS(3), 1, + [92073] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 5, + sym_line_continuation, + ACTIONS(1463), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 30, + ACTIONS(1461), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -86466,6 +105848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -86487,32 +105870,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69996] = 3, - ACTIONS(3), 1, + [92116] = 7, + ACTIONS(2623), 1, + anon_sym_as, + ACTIONS(2625), 1, + anon_sym_if, + ACTIONS(2627), 1, + anon_sym_and, + ACTIONS(2629), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(1263), 5, + sym_line_continuation, + ACTIONS(2440), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1261), 30, + ACTIONS(2436), 26, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -86527,25 +105914,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [70039] = 3, - ACTIONS(3), 1, + [92167] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2173), 5, + sym_line_continuation, + ACTIONS(1394), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1397), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 30, + ACTIONS(1392), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -86567,29 +105955,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [70082] = 3, - ACTIONS(3), 1, + [92212] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2145), 5, + sym_line_continuation, + ACTIONS(2465), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2143), 30, + ACTIONS(2463), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86607,25 +105995,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [70125] = 3, - ACTIONS(3), 1, + [92255] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2125), 5, + sym_line_continuation, + ACTIONS(1452), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1455), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2123), 30, + ACTIONS(1450), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -86647,36 +106036,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [70168] = 8, - ACTIONS(3), 1, + [92300] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, - anon_sym_DOT, - ACTIONS(2070), 1, - anon_sym_LPAREN, - ACTIONS(2078), 1, - anon_sym_STAR_STAR, - ACTIONS(2082), 1, - anon_sym_LBRACK, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1878), 4, + sym_line_continuation, + ACTIONS(2072), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1876), 25, + ACTIONS(2058), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86694,43 +106076,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70221] = 10, - ACTIONS(3), 1, + [92343] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, - anon_sym_DOT, - ACTIONS(2070), 1, - anon_sym_LPAREN, - ACTIONS(2078), 1, - anon_sym_STAR_STAR, - ACTIONS(2082), 1, - anon_sym_LBRACK, - ACTIONS(1878), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2072), 2, + sym_line_continuation, + ACTIONS(1397), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2080), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -86741,25 +106116,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70278] = 3, - ACTIONS(3), 1, + [92386] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2141), 5, + sym_line_continuation, + ACTIONS(2072), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2139), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2058), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -86781,166 +106156,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70321] = 14, - ACTIONS(3), 1, + [92429] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, + sym_line_continuation, + ACTIONS(1430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1433), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1427), 14, anon_sym_DOT, - ACTIONS(2070), 1, anon_sym_LPAREN, - ACTIONS(2078), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2082), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2090), 1, - anon_sym_AMP, - ACTIONS(2092), 1, - anon_sym_CARET, - ACTIONS(1878), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2072), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2074), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2086), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2080), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1876), 16, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1425), 15, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70386] = 13, - ACTIONS(3), 1, + [92476] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, - anon_sym_DOT, - ACTIONS(2070), 1, - anon_sym_LPAREN, - ACTIONS(2078), 1, - anon_sym_STAR_STAR, - ACTIONS(2082), 1, - anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_CARET, - ACTIONS(1878), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2072), 2, + sym_line_continuation, + ACTIONS(2584), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2074), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2086), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2080), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2582), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70449] = 12, - ACTIONS(3), 1, + [92519] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2068), 1, - anon_sym_DOT, - ACTIONS(2070), 1, - anon_sym_LPAREN, - ACTIONS(2078), 1, - anon_sym_STAR_STAR, - ACTIONS(2082), 1, - anon_sym_LBRACK, - ACTIONS(1878), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2072), 2, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2074), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2086), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2080), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1876), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(268), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70510] = 3, - ACTIONS(3), 1, + [92562] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2121), 5, + sym_line_continuation, + ACTIONS(2580), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2119), 29, + ACTIONS(2578), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -86970,28 +106318,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70552] = 3, - ACTIONS(3), 1, + [92605] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2129), 5, + sym_line_continuation, + ACTIONS(2540), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2127), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87009,25 +106358,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70594] = 4, - ACTIONS(3), 1, + [92648] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1242), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1245), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2564), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 27, + ACTIONS(2562), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -87049,19 +106398,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70638] = 3, - ACTIONS(3), 1, + [92691] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2125), 5, + sym_line_continuation, + ACTIONS(2544), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2123), 29, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -87071,6 +106420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87088,28 +106438,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70680] = 3, - ACTIONS(3), 1, + [92734] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87127,25 +106478,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70722] = 4, - ACTIONS(3), 1, + [92777] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1350), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1353), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1348), 27, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -87167,29 +106518,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70766] = 4, - ACTIONS(3), 1, + [92820] = 4, + STATE(1359), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1321), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1324), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2368), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1319), 27, + ACTIONS(2366), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87207,28 +106559,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70810] = 3, - ACTIONS(3), 1, + [92865] = 4, + STATE(1508), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2368), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 29, + ACTIONS(2366), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87246,28 +106600,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70852] = 3, - ACTIONS(3), 1, + [92910] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2137), 5, + sym_line_continuation, + ACTIONS(2410), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2135), 29, + ACTIONS(2408), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87285,16 +106640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70894] = 3, - ACTIONS(3), 1, + [92953] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2153), 5, + sym_line_continuation, + ACTIONS(2410), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2151), 29, + ACTIONS(2408), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -87324,31 +106680,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70936] = 3, - ACTIONS(3), 1, + [92996] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(2161), 5, + sym_line_continuation, + ACTIONS(1430), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 29, + ACTIONS(1427), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -87357,37 +106706,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1425), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70978] = 3, - ACTIONS(3), 1, + [93043] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2145), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1439), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1444), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1446), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [93088] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1430), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2143), 29, + ACTIONS(1427), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -87396,34 +106789,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1425), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71020] = 3, - ACTIONS(3), 1, + [93135] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2149), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2147), 29, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87441,19 +106845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71062] = 3, - ACTIONS(3), 1, + [93178] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2173), 5, + sym_line_continuation, + ACTIONS(2548), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -87463,6 +106867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87480,28 +106885,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71104] = 3, - ACTIONS(3), 1, + [93221] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2173), 5, + sym_line_continuation, + ACTIONS(1490), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1495), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1497), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [93266] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2552), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87519,55 +106966,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71146] = 3, - ACTIONS(3), 1, + [93309] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2145), 5, + sym_line_continuation, + ACTIONS(1392), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1397), 13, anon_sym_STAR, - anon_sym_EQ, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2143), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1403), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [93354] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1450), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1455), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [71188] = 3, - ACTIONS(3), 1, + ACTIONS(1403), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [93399] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2125), 5, + sym_line_continuation, + ACTIONS(2348), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2123), 29, + ACTIONS(2346), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -87575,11 +107066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87597,16 +107088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71230] = 3, - ACTIONS(3), 1, + [93442] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2157), 5, + sym_line_continuation, + ACTIONS(2540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2155), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -87636,31 +107128,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71272] = 3, - ACTIONS(3), 1, + [93485] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(2058), 4, + sym_line_continuation, + ACTIONS(344), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(347), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2056), 30, - sym__string_start, + ACTIONS(603), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -87669,34 +107154,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(342), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71314] = 3, - ACTIONS(3), 1, + [93532] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2165), 5, + sym_line_continuation, + ACTIONS(2564), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 29, + ACTIONS(2562), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87714,28 +107210,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71356] = 3, - ACTIONS(3), 1, + [93575] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2141), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2390), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2139), 29, + ACTIONS(2388), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87753,16 +107250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71398] = 3, - ACTIONS(3), 1, + [93618] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2181), 5, + sym_line_continuation, + ACTIONS(2465), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2179), 29, + ACTIONS(2463), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -87792,16 +107290,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71440] = 3, - ACTIONS(3), 1, + [93661] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2109), 5, + sym_line_continuation, + ACTIONS(2473), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2107), 29, + ACTIONS(2471), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -87831,24 +107330,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71482] = 3, - ACTIONS(3), 1, + [93704] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2185), 5, + sym_line_continuation, + ACTIONS(2348), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2183), 29, + ACTIONS(2346), 29, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -87870,24 +107370,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71524] = 3, - ACTIONS(3), 1, + [93747] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2165), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2512), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -87909,24 +107410,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71566] = 3, - ACTIONS(3), 1, + [93790] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2058), 5, + sym_line_continuation, + ACTIONS(2508), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2056), 29, - sym__string_start, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -87948,24 +107450,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71608] = 3, - ACTIONS(3), 1, + [93833] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2181), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2504), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2179), 29, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -87987,24 +107490,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71650] = 3, - ACTIONS(3), 1, + [93876] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2149), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2422), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2147), 29, + ACTIONS(2420), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88026,16 +107530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71692] = 3, - ACTIONS(3), 1, + [93919] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2141), 5, + sym_line_continuation, + ACTIONS(2580), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2139), 29, + ACTIONS(2578), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -88065,24 +107570,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71734] = 3, - ACTIONS(3), 1, + [93962] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2109), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2497), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2107), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88104,16 +107610,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71776] = 3, - ACTIONS(3), 1, + [94005] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(2177), 5, + sym_line_continuation, + ACTIONS(344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(347), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(603), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(342), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [94052] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2175), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -88143,24 +107692,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71818] = 3, - ACTIONS(3), 1, + [94095] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2185), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2489), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2183), 29, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88182,28 +107732,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71860] = 3, - ACTIONS(3), 1, + [94138] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2137), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2485), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2135), 29, + ACTIONS(2483), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88221,23 +107772,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71902] = 3, - ACTIONS(3), 1, + [94181] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2113), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2111), 29, + ACTIONS(268), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88260,59 +107813,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71944] = 4, - ACTIONS(3), 1, + [94226] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(266), 3, + sym_line_continuation, + ACTIONS(1397), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(268), 13, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(2187), 18, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [71988] = 3, - ACTIONS(3), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [94271] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(268), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -88322,6 +107876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88339,28 +107894,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72030] = 3, - ACTIONS(3), 1, + [94314] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2169), 5, + sym_line_continuation, + ACTIONS(2584), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2167), 29, + ACTIONS(2582), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88378,20 +107934,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72072] = 3, - ACTIONS(3), 1, + [94357] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2161), 5, + sym_line_continuation, + ACTIONS(1441), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1444), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 29, + ACTIONS(1439), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -88417,19 +107975,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72114] = 3, - ACTIONS(3), 1, + [94402] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2117), 5, + sym_line_continuation, + ACTIONS(1492), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1495), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2115), 29, + ACTIONS(1490), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -88438,7 +107999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88456,28 +108016,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72156] = 3, - ACTIONS(3), 1, + [94447] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1324), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2450), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1319), 29, + ACTIONS(2448), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88495,19 +108056,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72198] = 3, - ACTIONS(3), 1, + [94490] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1353), 5, + sym_line_continuation, + ACTIONS(1394), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1397), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1348), 29, + ACTIONS(1392), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -88516,7 +108080,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88534,56 +108097,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72240] = 4, - ACTIONS(3), 1, + [94535] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1240), 3, + sym_line_continuation, + ACTIONS(1452), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1455), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1450), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1245), 13, - anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(2189), 18, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [72284] = 3, - ACTIONS(3), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [94580] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2129), 5, + sym_line_continuation, + ACTIONS(2072), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2127), 29, + ACTIONS(2058), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -88613,16 +108178,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72326] = 3, - ACTIONS(3), 1, + [94623] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2133), 5, + sym_line_continuation, + ACTIONS(1397), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2131), 29, + ACTIONS(1392), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -88652,29 +108218,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72368] = 3, - ACTIONS(3), 1, + [94666] = 8, + ACTIONS(2637), 1, + anon_sym_not, + ACTIONS(2643), 1, + anon_sym_is, + STATE(1508), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2153), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + sym_line_continuation, + ACTIONS(2640), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2151), 29, + ACTIONS(2352), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(2634), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2350), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -88685,30 +108263,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [72410] = 3, - ACTIONS(3), 1, + [94719] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2121), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2477), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2119), 29, + ACTIONS(2475), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88730,25 +108303,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72452] = 4, - ACTIONS(3), 1, + [94762] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1242), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1245), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2414), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 27, + ACTIONS(2412), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88770,25 +108343,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72496] = 4, - ACTIONS(3), 1, + [94805] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(2418), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 28, + ACTIONS(2416), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88810,24 +108383,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72540] = 3, - ACTIONS(3), 1, + [94848] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2133), 5, + sym_line_continuation, + ACTIONS(2390), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2131), 29, + ACTIONS(2388), 29, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88849,24 +108423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72582] = 3, - ACTIONS(3), 1, + [94891] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1324), 5, + sym_line_continuation, + ACTIONS(1437), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1319), 29, + ACTIONS(1435), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88888,24 +108462,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72624] = 3, - ACTIONS(3), 1, + [94933] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1413), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 29, + ACTIONS(1411), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88927,23 +108501,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72666] = 3, - ACTIONS(3), 1, + [94975] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1277), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1430), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1275), 29, + ACTIONS(1427), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -88966,28 +108541,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72708] = 3, - ACTIONS(3), 1, + [95019] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2169), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1455), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2167), 29, + ACTIONS(1450), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89005,18 +108580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72750] = 4, - ACTIONS(3), 1, + [95061] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(1481), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 28, + ACTIONS(1479), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89045,24 +108619,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72794] = 3, - ACTIONS(3), 1, + [95103] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2117), 5, + sym_line_continuation, + ACTIONS(1481), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2115), 29, + ACTIONS(1479), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -89084,31 +108658,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2177), 5, + [95145] = 7, + ACTIONS(2646), 1, anon_sym_as, + ACTIONS(2648), 1, + anon_sym_if, + ACTIONS(2650), 1, + anon_sym_and, + ACTIONS(2652), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2440), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2175), 29, + ACTIONS(2436), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -89123,24 +108701,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72878] = 3, - ACTIONS(3), 1, + [95195] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2113), 5, + sym_line_continuation, + ACTIONS(270), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2111), 29, + ACTIONS(268), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -89162,20 +108740,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72920] = 4, - ACTIONS(3), 1, + [95237] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(1485), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 28, + ACTIONS(1483), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -89184,7 +108762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89202,20 +108779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72964] = 4, - ACTIONS(3), 1, + [95279] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(2564), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 28, + ACTIONS(2562), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -89224,7 +108801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89242,16 +108818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73008] = 3, - ACTIONS(3), 1, + [95321] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2054), 4, + sym_line_continuation, + ACTIONS(2414), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 30, - sym__string_start, + ACTIONS(2412), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -89281,31 +108857,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2117), 5, + [95363] = 6, + ACTIONS(2650), 1, + anon_sym_and, + ACTIONS(2652), 1, + anon_sym_or, + ACTIONS(2654), 1, anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2457), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2115), 29, + ACTIONS(2452), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -89320,25 +108899,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73092] = 4, - ACTIONS(3), 1, + [95411] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1321), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1324), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1430), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1319), 27, + ACTIONS(1427), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -89360,17 +108938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73136] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95455] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2054), 5, + sym_line_continuation, + ACTIONS(2552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2052), 29, - sym__string_start, + ACTIONS(2550), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89399,19 +108978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73178] = 5, - ACTIONS(3), 1, + [95497] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(2098), 1, - anon_sym_EQ, - ACTIONS(1245), 4, + sym_line_continuation, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 28, + ACTIONS(2546), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89440,16 +109017,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73224] = 3, - ACTIONS(3), 1, + [95539] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2141), 5, + sym_line_continuation, + ACTIONS(1495), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2139), 29, + ACTIONS(1490), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -89457,11 +109034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89479,23 +109056,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73266] = 3, - ACTIONS(3), 1, + [95581] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2177), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1444), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2175), 29, + ACTIONS(1439), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -89518,19 +109095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73308] = 5, - ACTIONS(3), 1, + [95623] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(635), 1, - anon_sym_EQ, - ACTIONS(268), 4, + sym_line_continuation, + ACTIONS(2410), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 28, + ACTIONS(2408), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89559,24 +109134,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73354] = 3, - ACTIONS(3), 1, + [95665] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2137), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(344), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2135), 29, + ACTIONS(603), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -89598,31 +109173,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73396] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95709] = 5, + ACTIONS(2650), 1, + anon_sym_and, + ACTIONS(2652), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2121), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2461), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2119), 29, + ACTIONS(2459), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -89637,67 +109215,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73438] = 3, - ACTIONS(3), 1, + [95755] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2169), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2167), 29, + ACTIONS(2542), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [73480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2183), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89715,28 +109254,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73522] = 3, - ACTIONS(3), 1, + [95797] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2109), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2540), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2107), 29, + ACTIONS(2538), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89754,30 +109293,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73564] = 3, - ACTIONS(3), 1, + [95839] = 4, + ACTIONS(2650), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(2181), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2465), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2179), 29, + ACTIONS(2463), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -89793,68 +109333,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73606] = 3, - ACTIONS(3), 1, + [95883] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2133), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2418), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2131), 29, + ACTIONS(2416), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [73648] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1353), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1348), 27, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89872,23 +109372,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73692] = 3, - ACTIONS(3), 1, + [95925] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2165), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2481), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 29, + ACTIONS(2479), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -89911,28 +109411,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73734] = 3, - ACTIONS(3), 1, + [95967] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2157), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2465), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2155), 29, + ACTIONS(2463), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89950,23 +109450,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73776] = 3, - ACTIONS(3), 1, + [96009] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1283), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2485), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1281), 29, + ACTIONS(2483), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -89989,31 +109489,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73818] = 3, - ACTIONS(3), 1, + [96051] = 7, + ACTIONS(2646), 1, + anon_sym_as, + ACTIONS(2648), 1, + anon_sym_if, + ACTIONS(2650), 1, + anon_sym_and, + ACTIONS(2652), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2149), 5, + sym_line_continuation, + ACTIONS(2428), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2147), 29, + ACTIONS(2424), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -90028,24 +109532,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73860] = 3, - ACTIONS(3), 1, + [96101] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2129), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2473), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2127), 29, + ACTIONS(2471), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -90067,24 +109571,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73902] = 3, - ACTIONS(3), 1, + [96143] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1353), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2580), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1348), 29, + ACTIONS(2578), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -90106,16 +109610,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73944] = 3, - ACTIONS(3), 1, + [96185] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1353), 5, + sym_line_continuation, + ACTIONS(2489), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1348), 29, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90123,11 +109627,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90145,23 +109649,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73986] = 3, - ACTIONS(3), 1, + [96227] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2125), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2493), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2123), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -90184,28 +109688,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 5, + [96269] = 7, + ACTIONS(2646), 1, anon_sym_as, + ACTIONS(2648), 1, + anon_sym_if, + ACTIONS(2650), 1, + anon_sym_and, + ACTIONS(2652), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2469), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1319), 29, + ACTIONS(2467), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [96319] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90223,23 +109770,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74070] = 3, - ACTIONS(3), 1, + [96361] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2145), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2504), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2143), 29, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -90262,23 +109809,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74112] = 3, - ACTIONS(3), 1, + [96403] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2173), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2508), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 29, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -90301,28 +109848,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74154] = 3, - ACTIONS(3), 1, + [96445] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1263), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1444), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1261), 29, + ACTIONS(1439), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90340,23 +109887,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74196] = 3, - ACTIONS(3), 1, + [96487] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 5, + sym_line_continuation, + ACTIONS(344), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(347), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(342), 14, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(603), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [96533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2512), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -90379,28 +109967,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74238] = 3, - ACTIONS(3), 1, + [96575] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1397), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 29, + ACTIONS(1392), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90418,28 +110006,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74280] = 3, - ACTIONS(3), 1, + [96617] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(2161), 5, + sym_line_continuation, + ACTIONS(1430), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1433), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1427), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1425), 15, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [96663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2512), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 29, + ACTIONS(2510), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90457,23 +110086,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74322] = 3, - ACTIONS(3), 1, + [96705] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2153), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2473), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2151), 29, + ACTIONS(2471), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -90496,28 +110125,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74364] = 3, - ACTIONS(3), 1, + [96747] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1267), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2508), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 29, + ACTIONS(2506), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90535,28 +110164,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74406] = 3, - ACTIONS(3), 1, + [96789] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1267), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(1463), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 29, + ACTIONS(1461), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90574,24 +110203,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74448] = 3, - ACTIONS(3), 1, + [96831] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(2504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 29, + ACTIONS(2502), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -90613,24 +110242,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74490] = 3, - ACTIONS(3), 1, + [96873] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2113), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2497), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2111), 29, + ACTIONS(2495), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -90652,24 +110281,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74532] = 3, - ACTIONS(3), 1, + [96915] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2157), 5, - anon_sym_as, + sym_line_continuation, + ACTIONS(2493), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2155), 29, + ACTIONS(2491), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -90691,16 +110320,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74574] = 3, - ACTIONS(3), 1, + [96957] = 7, + ACTIONS(2657), 1, + anon_sym_as, + ACTIONS(2659), 1, + anon_sym_if, + ACTIONS(2661), 1, + anon_sym_and, + ACTIONS(2663), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(2469), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(2467), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [97007] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2465), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2463), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90708,11 +110380,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90730,16 +110402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74616] = 3, - ACTIONS(3), 1, + [97049] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1277), 5, + sym_line_continuation, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1275), 28, + ACTIONS(2487), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90768,27 +110441,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74657] = 3, - ACTIONS(3), 1, + [97091] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2153), 4, + sym_line_continuation, + ACTIONS(2485), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2151), 29, + ACTIONS(2483), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90806,30 +110480,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74698] = 3, - ACTIONS(3), 1, + [97133] = 7, + ACTIONS(2657), 1, + anon_sym_as, + ACTIONS(2659), 1, + anon_sym_if, + ACTIONS(2661), 1, + anon_sym_and, + ACTIONS(2663), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2125), 5, + sym_line_continuation, + ACTIONS(2428), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2123), 28, + ACTIONS(2424), 24, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -90844,15 +110523,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74739] = 3, - ACTIONS(3), 1, + [97183] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2169), 4, + sym_line_continuation, + ACTIONS(2540), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2167), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90882,27 +110562,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74780] = 3, - ACTIONS(3), 1, + [97225] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2145), 5, + sym_line_continuation, + ACTIONS(2544), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2143), 28, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90920,54 +110601,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74821] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1319), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1324), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1326), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [74864] = 3, - ACTIONS(3), 1, + [97267] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1277), 4, + sym_line_continuation, + ACTIONS(2410), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1275), 29, + ACTIONS(2408), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90997,16 +110640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74905] = 3, - ACTIONS(3), 1, + [97309] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2173), 5, + sym_line_continuation, + ACTIONS(2481), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 28, + ACTIONS(2479), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91035,55 +110679,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1245), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1251), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [74989] = 3, - ACTIONS(3), 1, + [97351] = 4, + ACTIONS(2661), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(1263), 5, + sym_line_continuation, + ACTIONS(2465), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1261), 28, + ACTIONS(2463), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91096,7 +110704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -91112,16 +110719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75030] = 3, - ACTIONS(3), 1, + [97395] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 5, + sym_line_continuation, + ACTIONS(2418), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 28, + ACTIONS(2416), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91150,55 +110758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1353), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1355), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [75114] = 3, - ACTIONS(3), 1, + [97437] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1283), 5, + sym_line_continuation, + ACTIONS(2414), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1281), 28, + ACTIONS(2412), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91227,15 +110797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75155] = 3, - ACTIONS(3), 1, + [97479] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2133), 4, + sym_line_continuation, + ACTIONS(2548), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2131), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91265,16 +110836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75196] = 3, - ACTIONS(3), 1, + [97521] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2161), 5, + sym_line_continuation, + ACTIONS(1495), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 28, + ACTIONS(1490), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91303,16 +110875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75237] = 3, - ACTIONS(3), 1, + [97563] = 4, + ACTIONS(1399), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2153), 5, + sym_line_continuation, + ACTIONS(1430), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2151), 28, + ACTIONS(1427), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91341,16 +110915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75278] = 3, - ACTIONS(3), 1, + [97607] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 5, + sym_line_continuation, + ACTIONS(2477), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 28, + ACTIONS(2475), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91379,16 +110954,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75319] = 3, - ACTIONS(3), 1, + [97649] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 5, + sym_line_continuation, + ACTIONS(2450), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 28, + ACTIONS(2448), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91417,27 +110993,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75360] = 3, - ACTIONS(3), 1, + [97691] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2129), 4, + sym_line_continuation, + ACTIONS(344), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2127), 29, + ACTIONS(603), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91455,27 +111033,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75401] = 3, - ACTIONS(3), 1, + [97735] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1267), 5, + sym_line_continuation, + ACTIONS(2552), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 28, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91493,27 +111072,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75442] = 3, - ACTIONS(3), 1, + [97777] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1267), 5, + sym_line_continuation, + ACTIONS(1397), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 28, + ACTIONS(1392), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91531,27 +111111,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75483] = 3, - ACTIONS(3), 1, + [97819] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2157), 5, + sym_line_continuation, + ACTIONS(2072), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2155), 28, + ACTIONS(2058), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91569,27 +111150,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75524] = 3, - ACTIONS(3), 1, + [97861] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2165), 5, + sym_line_continuation, + ACTIONS(1413), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2163), 28, + ACTIONS(1411), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91607,16 +111189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75565] = 3, - ACTIONS(3), 1, + [97903] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2149), 5, + sym_line_continuation, + ACTIONS(2584), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2147), 28, + ACTIONS(2582), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91645,27 +111228,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75606] = 3, - ACTIONS(3), 1, + [97945] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2181), 5, + sym_line_continuation, + ACTIONS(1413), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2179), 28, + ACTIONS(1411), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91683,16 +111267,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75647] = 3, - ACTIONS(3), 1, + [97987] = 5, + ACTIONS(2661), 1, + anon_sym_and, + ACTIONS(2663), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2109), 5, + sym_line_continuation, + ACTIONS(2461), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2107), 28, + ACTIONS(2459), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91705,8 +111294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -91721,27 +111308,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75688] = 3, - ACTIONS(3), 1, + [98033] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2185), 5, + sym_line_continuation, + ACTIONS(1481), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2183), 28, + ACTIONS(1479), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91759,15 +111347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75729] = 3, - ACTIONS(3), 1, + [98075] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 4, + sym_line_continuation, + ACTIONS(1481), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 29, + ACTIONS(1479), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91797,30 +111386,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75770] = 3, - ACTIONS(3), 1, + [98117] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(2117), 4, + sym_line_continuation, + ACTIONS(344), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(347), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2115), 29, + ACTIONS(603), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -91829,21 +111411,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(342), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75811] = 3, - ACTIONS(3), 1, + [98163] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1353), 4, + sym_line_continuation, + ACTIONS(1485), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1348), 29, + ACTIONS(1483), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91873,15 +111466,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75852] = 3, - ACTIONS(3), 1, + [98205] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1324), 4, + sym_line_continuation, + ACTIONS(1437), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1319), 29, + ACTIONS(1435), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91911,15 +111505,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75893] = 3, - ACTIONS(3), 1, + [98247] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2113), 4, + sym_line_continuation, + ACTIONS(1463), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2111), 29, + ACTIONS(1461), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91949,29 +111544,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75934] = 5, - ACTIONS(3), 1, + [98289] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(2191), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1245), 4, + sym_line_continuation, + ACTIONS(2564), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 26, + ACTIONS(2562), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91989,27 +111583,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75979] = 3, - ACTIONS(3), 1, + [98331] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2121), 5, + sym_line_continuation, + ACTIONS(2450), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2119), 28, + ACTIONS(2448), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92027,27 +111622,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76020] = 3, - ACTIONS(3), 1, + [98373] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1324), 5, + sym_line_continuation, + ACTIONS(2422), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1319), 28, + ACTIONS(2420), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92065,27 +111661,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76061] = 3, - ACTIONS(3), 1, + [98415] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1353), 5, + sym_line_continuation, + ACTIONS(2477), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1348), 28, + ACTIONS(2475), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92103,54 +111700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76102] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(266), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(268), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(281), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [76145] = 3, - ACTIONS(3), 1, + [98457] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1267), 4, + sym_line_continuation, + ACTIONS(2584), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 29, + ACTIONS(2582), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92180,15 +111739,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76186] = 3, - ACTIONS(3), 1, + [98499] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1267), 4, + sym_line_continuation, + ACTIONS(270), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1265), 29, + ACTIONS(268), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92218,29 +111778,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76227] = 5, - ACTIONS(3), 1, + [98541] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(749), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(268), 4, + sym_line_continuation, + ACTIONS(1455), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 26, + ACTIONS(1450), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92258,21 +111817,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76272] = 3, - ACTIONS(3), 1, + [98583] = 6, + ACTIONS(2661), 1, + anon_sym_and, + ACTIONS(2663), 1, + anon_sym_or, + ACTIONS(2665), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(2177), 5, + sym_line_continuation, + ACTIONS(2457), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2175), 28, + ACTIONS(2452), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -92280,8 +111845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -92296,30 +111859,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76313] = 3, - ACTIONS(3), 1, + [98631] = 5, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 4, + sym_line_continuation, + ACTIONS(1430), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1425), 14, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1427), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -92328,21 +111900,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76354] = 3, - ACTIONS(3), 1, + [98677] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2149), 4, + sym_line_continuation, + ACTIONS(2580), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2147), 29, + ACTIONS(2578), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92372,27 +111939,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76395] = 3, - ACTIONS(3), 1, + [98719] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2137), 4, + sym_line_continuation, + ACTIONS(2422), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2135), 29, + ACTIONS(2420), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92410,30 +111978,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76436] = 3, - ACTIONS(3), 1, + [98761] = 7, + ACTIONS(2657), 1, + anon_sym_as, + ACTIONS(2659), 1, + anon_sym_if, + ACTIONS(2661), 1, + anon_sym_and, + ACTIONS(2663), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2161), 4, + sym_line_continuation, + ACTIONS(2440), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 29, + ACTIONS(2436), 24, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -92448,27 +112021,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76477] = 3, - ACTIONS(3), 1, + [98811] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 4, + sym_line_continuation, + ACTIONS(1413), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 29, + ACTIONS(1411), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92486,22 +112060,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76518] = 3, - ACTIONS(3), 1, + [98853] = 4, + ACTIONS(285), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 4, + sym_line_continuation, + ACTIONS(344), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 29, + ACTIONS(603), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -92524,16 +112100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76559] = 3, - ACTIONS(3), 1, + [98897] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1255), 5, + sym_line_continuation, + ACTIONS(2072), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 28, + ACTIONS(2058), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92562,22 +112139,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76600] = 5, - ACTIONS(3), 1, + [98939] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(1247), 1, - anon_sym_COLON_EQ, - ACTIONS(2191), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1245), 4, + sym_line_continuation, + ACTIONS(1430), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1240), 26, + ACTIONS(1427), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92602,22 +112177,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76645] = 5, - ACTIONS(3), 1, + [98980] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(277), 1, - anon_sym_COLON_EQ, - ACTIONS(749), 2, + sym_line_continuation, + ACTIONS(1481), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1479), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(268), 4, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99021] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1430), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(266), 26, + ACTIONS(1427), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92642,60 +112252,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76690] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [99062] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1263), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1261), 29, + sym_line_continuation, + ACTIONS(1490), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1495), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76731] = 3, - ACTIONS(3), 1, + ACTIONS(1497), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99105] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2173), 4, + sym_line_continuation, + ACTIONS(1430), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 29, + ACTIONS(1427), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -92718,372 +112330,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76772] = 3, - ACTIONS(3), 1, + [99146] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2145), 4, + sym_line_continuation, + ACTIONS(1427), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1430), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2143), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1425), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99189] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1413), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1411), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99230] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(603), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(344), 13, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(342), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99273] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1392), 3, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(1397), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76813] = 3, - ACTIONS(3), 1, + ACTIONS(1403), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99316] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2169), 5, + sym_line_continuation, + ACTIONS(1413), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2167), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2125), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2123), 29, + ACTIONS(1411), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99357] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1463), 13, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2177), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2175), 29, + ACTIONS(1461), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99398] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1450), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1455), 13, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 5, - anon_sym_STAR, + ACTIONS(1403), 16, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2131), 28, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99441] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1439), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1444), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2129), 5, - anon_sym_STAR, + ACTIONS(1446), 16, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2127), 28, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99484] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(268), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(270), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77018] = 3, - ACTIONS(3), 1, + ACTIONS(298), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99527] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(2117), 5, + sym_line_continuation, + ACTIONS(1481), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2115), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2113), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2111), 28, + ACTIONS(1479), 19, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99568] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1437), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1283), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1281), 29, + ACTIONS(1435), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99609] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1485), 13, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77141] = 3, - ACTIONS(3), 1, + ACTIONS(1483), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99650] = 7, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2157), 4, + sym_line_continuation, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2155), 29, + ACTIONS(2467), 18, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93092,36 +112826,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77182] = 3, - ACTIONS(3), 1, + [99691] = 6, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(2676), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(2121), 4, + sym_line_continuation, + ACTIONS(2457), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2119), 29, + ACTIONS(2452), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93130,36 +112859,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77223] = 3, - ACTIONS(3), 1, + [99730] = 7, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2141), 5, + sym_line_continuation, + ACTIONS(2428), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2139), 28, + ACTIONS(2424), 18, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93168,21 +112893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77264] = 3, - ACTIONS(3), 1, + [99771] = 4, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(2165), 4, + sym_line_continuation, + ACTIONS(2465), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2163), 29, + ACTIONS(2463), 21, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93190,13 +112910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, + anon_sym_EQ, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -93206,21 +112924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77305] = 3, - ACTIONS(3), 1, + [99806] = 5, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2181), 4, + sym_line_continuation, + ACTIONS(2461), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2179), 29, + ACTIONS(2459), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93228,14 +112943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93244,36 +112956,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77346] = 3, - ACTIONS(3), 1, + [99843] = 7, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2109), 4, + sym_line_continuation, + ACTIONS(2440), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2107), 29, + ACTIONS(2436), 18, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93282,36 +112990,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77387] = 3, - ACTIONS(3), 1, + [99884] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2137), 5, + sym_line_continuation, + ACTIONS(1455), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2135), 28, + ACTIONS(1403), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1450), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93320,36 +113018,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77428] = 3, - ACTIONS(3), 1, + [99916] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2141), 4, + sym_line_continuation, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2139), 29, + ACTIONS(1497), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1490), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93358,36 +113046,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77469] = 3, - ACTIONS(3), 1, + [99948] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2185), 4, + sym_line_continuation, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2183), 29, + ACTIONS(1403), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1392), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93396,36 +113074,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77510] = 4, - ACTIONS(3), 1, + [99980] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2191), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1245), 4, + sym_line_continuation, + ACTIONS(270), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1240), 26, + ACTIONS(298), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(268), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93434,36 +113102,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77552] = 4, - ACTIONS(3), 1, + [100012] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2191), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1245), 4, + sym_line_continuation, + ACTIONS(1444), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1240), 26, + ACTIONS(1446), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1439), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93472,64 +113130,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77594] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2196), 1, - anon_sym_as, - ACTIONS(2201), 1, - anon_sym_not, - ACTIONS(2207), 1, - anon_sym_is, - STATE(1346), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(2204), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2198), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2194), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - [77632] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, + [100044] = 8, + ACTIONS(2108), 1, anon_sym_not, - ACTIONS(1793), 1, + ACTIONS(2120), 1, anon_sym_is, - ACTIONS(2212), 1, + ACTIONS(2368), 1, anon_sym_EQ, - STATE(1350), 1, + STATE(1111), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1791), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2118), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 6, + ACTIONS(2100), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2210), 8, + ACTIONS(2366), 8, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -93538,28 +113161,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_and, anon_sym_or, - [77670] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, + [100083] = 8, + ACTIONS(2138), 1, anon_sym_not, - ACTIONS(1859), 1, + ACTIONS(2150), 1, anon_sym_is, - ACTIONS(2212), 1, + ACTIONS(2368), 1, anon_sym_as, - STATE(1346), 1, + STATE(1168), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1857), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1839), 6, + ACTIONS(2130), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2210), 8, + ACTIONS(2366), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -93568,28 +113192,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_RBRACE, - [77708] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2196), 1, - anon_sym_EQ, - ACTIONS(2217), 1, + [100122] = 8, + ACTIONS(2074), 1, anon_sym_not, - ACTIONS(2223), 1, + ACTIONS(2086), 1, anon_sym_is, - STATE(1349), 1, + ACTIONS(2368), 1, + anon_sym_EQ, + STATE(1139), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(2220), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2084), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2214), 6, + ACTIONS(2064), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2194), 8, + ACTIONS(2366), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -93598,117 +113223,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_RBRACE, sym_type_conversion, - [77746] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2196), 1, - anon_sym_EQ, - ACTIONS(2229), 1, - anon_sym_not, - ACTIONS(2235), 1, - anon_sym_is, - STATE(1350), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(2232), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2226), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2194), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + [100161] = 7, + ACTIONS(2668), 1, anon_sym_as, + ACTIONS(2670), 1, anon_sym_if, + ACTIONS(2672), 1, anon_sym_and, + ACTIONS(2674), 1, anon_sym_or, - [77784] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1811), 1, - anon_sym_not, - ACTIONS(1823), 1, - anon_sym_is, - ACTIONS(2212), 1, - anon_sym_EQ, - STATE(1349), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1821), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1803), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2210), 8, + sym_line_continuation, + ACTIONS(2422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2420), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [100198] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(270), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(342), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [77822] = 8, - ACTIONS(3), 1, + ACTIONS(268), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [100228] = 4, + ACTIONS(2681), 1, + anon_sym_COMMA, + STATE(1640), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2196), 1, + sym_line_continuation, + ACTIONS(2679), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2247), 1, - anon_sym_is, - STATE(1352), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(2244), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2238), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2194), 7, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [100258] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1397), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1425), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [77859] = 8, - ACTIONS(3), 1, + ACTIONS(1392), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [100288] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1994), 1, + sym_line_continuation, + ACTIONS(1397), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2684), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1392), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [100318] = 8, + ACTIONS(2223), 1, anon_sym_not, - ACTIONS(2006), 1, + ACTIONS(2235), 1, anon_sym_is, - ACTIONS(2212), 1, + ACTIONS(2368), 1, anon_sym_as, - STATE(1358), 1, + STATE(1247), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(2004), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2233), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1986), 6, + ACTIONS(2215), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2210), 7, + ACTIONS(2366), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -93716,17 +113387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [77896] = 4, - ACTIONS(3), 1, + [100356] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 2, + sym_line_continuation, + ACTIONS(270), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 3, + ACTIONS(768), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1240), 14, + ACTIONS(268), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -93741,57 +113413,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [77925] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, + [100386] = 8, + ACTIONS(2264), 1, anon_sym_not, - ACTIONS(1919), 1, + ACTIONS(2276), 1, anon_sym_is, - ACTIONS(2212), 1, + ACTIONS(2368), 1, anon_sym_as, - STATE(1356), 1, + STATE(1273), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1899), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2210), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [77962] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2196), 1, - anon_sym_as, - ACTIONS(2253), 1, - anon_sym_not, - ACTIONS(2259), 1, - anon_sym_is, - STATE(1356), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(2256), 2, + sym_line_continuation, + ACTIONS(2274), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2250), 6, + ACTIONS(2256), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2194), 7, + ACTIONS(2366), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -93799,100 +113443,447 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [77999] = 8, - ACTIONS(3), 1, + [100424] = 4, + ACTIONS(2686), 1, + anon_sym_COMMA, + STATE(1640), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1949), 1, - anon_sym_not, - ACTIONS(1961), 1, - anon_sym_is, - ACTIONS(2212), 1, + sym_line_continuation, + ACTIONS(892), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, - STATE(1352), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1959), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [100454] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1403), 2, + anon_sym_COMMA, anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2210), 7, + ACTIONS(1455), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1450), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [100483] = 13, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2284), 1, + anon_sym_DOT, + ACTIONS(2298), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(2698), 1, + anon_sym_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP, + ACTIONS(2702), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2688), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2690), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [100530] = 10, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2688), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2199), 5, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [100571] = 8, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2201), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2199), 10, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [100608] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(270), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(298), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [78036] = 8, - ACTIONS(3), 1, + anon_sym_RBRACK, + ACTIONS(268), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [100637] = 13, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(2698), 1, + anon_sym_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP, + ACTIONS(2702), 1, + anon_sym_CARET, + ACTIONS(3), 2, sym_comment, - ACTIONS(2196), 1, - anon_sym_as, - ACTIONS(2265), 1, + sym_line_continuation, + ACTIONS(2688), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2690), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [100684] = 13, + ACTIONS(2122), 1, + anon_sym_DOT, + ACTIONS(2136), 1, + anon_sym_LBRACK, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(2698), 1, + anon_sym_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP, + ACTIONS(2702), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2688), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2690), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [100731] = 12, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(2702), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2199), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2688), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2690), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [100776] = 11, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2688), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2690), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2199), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(2694), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [100819] = 8, + ACTIONS(2300), 1, anon_sym_not, - ACTIONS(2271), 1, + ACTIONS(2312), 1, anon_sym_is, - STATE(1358), 1, + ACTIONS(2368), 1, + anon_sym_EQ, + STATE(1508), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(2268), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2310), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2262), 6, + ACTIONS(2292), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2194), 7, + ACTIONS(2366), 6, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [78073] = 4, - ACTIONS(3), 1, + [100856] = 13, + ACTIONS(2092), 1, + anon_sym_DOT, + ACTIONS(2106), 1, + anon_sym_LBRACK, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(2698), 1, + anon_sym_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP, + ACTIONS(2702), 1, + anon_sym_CARET, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 2, + sym_line_continuation, + ACTIONS(2688), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1240), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2690), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LT_LT, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [100903] = 13, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_PIPE, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(2700), 1, + anon_sym_AMP, + ACTIONS(2702), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2688), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2690), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2696), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [100950] = 9, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2688), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(2199), 7, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78102] = 4, - ACTIONS(3), 1, + [100989] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 2, + sym_line_continuation, + ACTIONS(270), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, - anon_sym_RPAREN, + ACTIONS(768), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(266), 14, + ACTIONS(268), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -93907,17 +113898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78131] = 4, - ACTIONS(3), 1, + [101018] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 2, + sym_line_continuation, + ACTIONS(270), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2187), 3, - anon_sym_RPAREN, + ACTIONS(342), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(266), 14, + ACTIONS(268), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -93932,16 +113923,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78160] = 4, - ACTIONS(3), 1, + [101047] = 13, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2248), 1, + anon_sym_DOT, + ACTIONS(2262), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(2698), 1, + anon_sym_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP, + ACTIONS(2702), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2688), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2690), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [101094] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 2, + sym_line_continuation, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(281), 2, + ACTIONS(2684), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(266), 14, + anon_sym_COLON, + ACTIONS(1392), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -93956,22 +113982,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78188] = 4, - ACTIONS(3), 1, + [101123] = 13, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(2698), 1, + anon_sym_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP, + ACTIONS(2702), 1, + anon_sym_CARET, + ACTIONS(2704), 1, + anon_sym_DOT, + ACTIONS(2706), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 2, + sym_line_continuation, + ACTIONS(2688), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2187), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(266), 14, + ACTIONS(2690), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [101170] = 8, + ACTIONS(2165), 1, anon_sym_DOT, + ACTIONS(2167), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2201), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2199), 10, + anon_sym_GT_GT, anon_sym_AT, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -93980,105 +114045,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78216] = 13, - ACTIONS(3), 1, + [101207] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(1935), 1, + sym_line_continuation, + ACTIONS(2708), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [101232] = 13, + ACTIONS(2054), 1, + anon_sym_DOT, + ACTIONS(2070), 1, + anon_sym_LBRACK, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(1943), 1, + ACTIONS(2692), 1, anon_sym_STAR_STAR, - ACTIONS(1953), 1, + ACTIONS(2698), 1, anon_sym_PIPE, - ACTIONS(1955), 1, + ACTIONS(2700), 1, anon_sym_AMP, - ACTIONS(1957), 1, + ACTIONS(2702), 1, anon_sym_CARET, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(1937), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2688), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1939), 2, + ACTIONS(2690), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1951), 2, + ACTIONS(2696), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1241), 2, + STATE(1462), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1945), 3, + ACTIONS(2694), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [78262] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - ACTIONS(2212), 1, - anon_sym_EQ, - STATE(1366), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2030), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2210), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [78298] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2196), 1, - anon_sym_EQ, - ACTIONS(2281), 1, - anon_sym_not, - ACTIONS(2287), 1, - anon_sym_is, - STATE(1366), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(2284), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2194), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2278), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78334] = 4, - ACTIONS(3), 1, + [101279] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 2, + sym_line_continuation, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 2, + ACTIONS(1425), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(266), 14, + ACTIONS(1392), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -94093,16 +114127,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78362] = 4, - ACTIONS(3), 1, + [101308] = 8, + ACTIONS(2165), 1, + anon_sym_DOT, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 2, + sym_line_continuation, + ACTIONS(2243), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1251), 2, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2241), 10, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [101345] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1444), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1446), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1240), 14, + ACTIONS(1439), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -94117,76 +114181,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78390] = 13, - ACTIONS(3), 1, + [101374] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(1891), 1, + sym_line_continuation, + ACTIONS(1403), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [101399] = 13, + ACTIONS(2165), 1, anon_sym_DOT, - ACTIONS(1905), 1, - anon_sym_LBRACK, - ACTIONS(1935), 1, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(1943), 1, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, anon_sym_STAR_STAR, - ACTIONS(1953), 1, + ACTIONS(2698), 1, anon_sym_PIPE, - ACTIONS(1955), 1, + ACTIONS(2700), 1, anon_sym_AMP, - ACTIONS(1957), 1, + ACTIONS(2702), 1, anon_sym_CARET, - ACTIONS(1937), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2688), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1939), 2, + ACTIONS(2690), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1951), 2, + ACTIONS(2696), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1241), 2, + STATE(1462), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1945), 3, + ACTIONS(2694), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [78436] = 7, - ACTIONS(3), 1, + [101446] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2084), 1, - anon_sym_not, - ACTIONS(2096), 1, - anon_sym_is, - STATE(1372), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(2094), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2076), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2210), 7, + sym_line_continuation, + ACTIONS(1444), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1446), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [78470] = 4, - ACTIONS(3), 1, + ACTIONS(1439), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [101475] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1324), 2, + sym_line_continuation, + ACTIONS(270), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1326), 2, + ACTIONS(298), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1319), 14, + anon_sym_in, + ACTIONS(268), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -94201,76 +114288,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78498] = 7, - ACTIONS(3), 1, + [101504] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2293), 1, - anon_sym_not, - ACTIONS(2299), 1, - anon_sym_is, - STATE(1372), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(2296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2290), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2194), 7, + sym_line_continuation, + ACTIONS(1403), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [78532] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 1, + ACTIONS(1455), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1450), 14, anon_sym_DOT, - ACTIONS(1935), 1, anon_sym_LPAREN, - ACTIONS(1943), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(1947), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1953), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(1955), 1, anon_sym_AMP, - ACTIONS(1957), 1, anon_sym_CARET, - ACTIONS(1937), 2, + anon_sym_LT_LT, + [101533] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1939), 2, + ACTIONS(1497), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1490), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1951), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - STATE(1241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1945), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [78578] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [101562] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 2, + sym_line_continuation, + ACTIONS(1444), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1251), 2, - anon_sym_RPAREN, + ACTIONS(1446), 2, anon_sym_COMMA, - ACTIONS(1240), 14, + anon_sym_in, + ACTIONS(1439), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -94285,16 +114363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78606] = 4, - ACTIONS(3), 1, + [101591] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1353), 2, + sym_line_continuation, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1355), 2, + ACTIONS(1403), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1348), 14, + ACTIONS(1392), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -94309,16 +114388,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78634] = 4, - ACTIONS(3), 1, + [101620] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(2302), 1, + sym_line_continuation, + ACTIONS(1403), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1455), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1450), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [101649] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1397), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1392), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [101678] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2679), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1376), 1, - aux_sym__patterns_repeat1, - ACTIONS(2305), 16, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -94333,16 +114461,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [78662] = 4, - ACTIONS(3), 1, + [101703] = 13, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2392), 1, + anon_sym_DOT, + ACTIONS(2394), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(2698), 1, + anon_sym_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP, + ACTIONS(2702), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2688), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2690), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2696), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [101750] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1324), 2, + sym_line_continuation, + ACTIONS(270), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1326), 2, + ACTIONS(298), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1319), 14, + ACTIONS(268), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -94357,16 +114520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78690] = 4, - ACTIONS(3), 1, + [101779] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 2, + sym_line_continuation, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2189), 2, + ACTIONS(1497), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1240), 14, + anon_sym_in, + ACTIONS(1490), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -94381,16 +114545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78718] = 4, - ACTIONS(3), 1, + [101808] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1353), 2, + sym_line_continuation, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1355), 2, + ACTIONS(1497), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1348), 14, + ACTIONS(1490), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -94405,16 +114570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78746] = 4, - ACTIONS(3), 1, + [101837] = 4, + ACTIONS(3), 2, sym_comment, - ACTIONS(1245), 2, + sym_line_continuation, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2274), 2, + ACTIONS(1403), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1240), 14, + anon_sym_in, + ACTIONS(1392), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -94429,38 +114595,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [78774] = 4, - ACTIONS(3), 1, + [101866] = 13, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2316), 1, + anon_sym_DOT, + ACTIONS(2330), 1, + anon_sym_LBRACK, + ACTIONS(2692), 1, + anon_sym_STAR_STAR, + ACTIONS(2698), 1, + anon_sym_PIPE, + ACTIONS(2700), 1, + anon_sym_AMP, + ACTIONS(2702), 1, + anon_sym_CARET, + ACTIONS(3), 2, sym_comment, - ACTIONS(268), 2, + sym_line_continuation, + ACTIONS(2688), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(281), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(266), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2690), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, + anon_sym_LT_LT, + ACTIONS(2696), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1462), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2694), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [78802] = 4, - ACTIONS(3), 1, + [101913] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2710), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [101938] = 7, + ACTIONS(2332), 1, + anon_sym_not, + ACTIONS(2344), 1, + anon_sym_is, + STATE(1359), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2324), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2366), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [101973] = 13, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + anon_sym_STAR, + ACTIONS(2718), 1, + anon_sym_COLON, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, + anon_sym_SLASH, + STATE(2064), 1, + sym_parameter, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2365), 1, + sym_lambda_parameters, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2272), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [102019] = 13, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, + anon_sym_SLASH, + ACTIONS(2724), 1, + anon_sym_COLON, + STATE(2064), 1, + sym_parameter, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2480), 1, + sym_lambda_parameters, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2272), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [102065] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2307), 1, + sym_line_continuation, + ACTIONS(2708), 17, anon_sym_COMMA, - STATE(1376), 1, - aux_sym__patterns_repeat1, - ACTIONS(858), 16, anon_sym_COLON, anon_sym_in, anon_sym_EQ, @@ -94477,75 +114768,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [78830] = 12, - ACTIONS(3), 1, + [102089] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2311), 1, - anon_sym_LPAREN, - ACTIONS(2313), 1, - anon_sym_STAR, - ACTIONS(2315), 1, + sym_line_continuation, + ACTIONS(1403), 17, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2317), 1, - anon_sym_STAR_STAR, - ACTIONS(2319), 1, - anon_sym_SLASH, - STATE(1951), 1, - sym_parameter, - STATE(2106), 1, - sym_lambda_parameters, - STATE(2156), 1, - sym__parameters, - STATE(1997), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [78873] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2309), 1, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [102113] = 13, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - ACTIONS(2321), 1, + ACTIONS(2726), 1, anon_sym_COLON, - STATE(1951), 1, + STATE(2064), 1, sym_parameter, - STATE(2156), 1, - sym__parameters, - STATE(2167), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2386), 1, sym_lambda_parameters, - STATE(1997), 2, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [78916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2305), 17, + [102159] = 4, + ACTIONS(2728), 1, anon_sym_COMMA, + STATE(1712), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(892), 15, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -94560,184 +114847,382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [78939] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2309), 1, + [102187] = 13, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - ACTIONS(2323), 1, + ACTIONS(2730), 1, anon_sym_COLON, - STATE(1951), 1, + STATE(2064), 1, sym_parameter, - STATE(2156), 1, - sym__parameters, - STATE(2208), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2452), 1, sym_lambda_parameters, - STATE(1997), 2, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [78982] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2309), 1, + [102233] = 13, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - ACTIONS(2325), 1, + ACTIONS(2732), 1, anon_sym_COLON, - STATE(1951), 1, + STATE(2064), 1, sym_parameter, - STATE(2043), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2368), 1, sym_lambda_parameters, - STATE(2156), 1, + STATE(2524), 1, sym__parameters, - STATE(1997), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79025] = 2, - ACTIONS(3), 1, + [102279] = 13, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, + anon_sym_SLASH, + ACTIONS(2734), 1, + anon_sym_COLON, + STATE(2064), 1, + sym_parameter, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2391), 1, + sym_lambda_parameters, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, sym_comment, - ACTIONS(1251), 17, - anon_sym_COMMA, + sym_line_continuation, + STATE(2291), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2272), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [102325] = 13, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, + anon_sym_SLASH, + ACTIONS(2736), 1, anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [79048] = 12, - ACTIONS(3), 1, + STATE(2064), 1, + sym_parameter, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2498), 1, + sym_lambda_parameters, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, sym_comment, - ACTIONS(2309), 1, + sym_line_continuation, + STATE(2291), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2272), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [102371] = 13, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - ACTIONS(2327), 1, + ACTIONS(2738), 1, anon_sym_COLON, - STATE(1951), 1, + STATE(2064), 1, sym_parameter, - STATE(2154), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2396), 1, sym_lambda_parameters, - STATE(2156), 1, + STATE(2524), 1, sym__parameters, - STATE(1997), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, + STATE(2272), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [102417] = 13, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, + anon_sym_SLASH, + ACTIONS(2740), 1, + anon_sym_COLON, + STATE(2064), 1, + sym_parameter, + STATE(2262), 1, sym_tuple_pattern, + STATE(2401), 1, + sym_lambda_parameters, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79091] = 2, - ACTIONS(3), 1, + [102463] = 13, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, + anon_sym_SLASH, + ACTIONS(2742), 1, + anon_sym_COLON, + STATE(2064), 1, + sym_parameter, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2334), 1, + sym_lambda_parameters, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, sym_comment, - ACTIONS(2329), 17, - anon_sym_COMMA, + sym_line_continuation, + STATE(2291), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2272), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [102509] = 13, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, + anon_sym_SLASH, + ACTIONS(2744), 1, anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [79114] = 12, - ACTIONS(3), 1, + STATE(2064), 1, + sym_parameter, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2421), 1, + sym_lambda_parameters, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, sym_comment, - ACTIONS(2309), 1, + sym_line_continuation, + STATE(2291), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2272), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [102555] = 13, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - ACTIONS(2331), 1, + ACTIONS(2746), 1, anon_sym_COLON, - STATE(1951), 1, + STATE(2064), 1, sym_parameter, - STATE(2084), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2339), 1, sym_lambda_parameters, - STATE(2156), 1, + STATE(2524), 1, sym__parameters, - STATE(1997), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, + STATE(2272), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [102601] = 13, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, + anon_sym_SLASH, + ACTIONS(2748), 1, + anon_sym_COLON, + STATE(2064), 1, + sym_parameter, + STATE(2262), 1, sym_tuple_pattern, + STATE(2377), 1, + sym_lambda_parameters, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79157] = 6, - ACTIONS(3), 1, + [102647] = 13, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, + anon_sym_SLASH, + ACTIONS(2750), 1, + anon_sym_COLON, + STATE(2064), 1, + sym_parameter, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2404), 1, + sym_lambda_parameters, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, sym_comment, - ACTIONS(2333), 1, + sym_line_continuation, + STATE(2291), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2272), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [102693] = 6, + ACTIONS(2752), 1, anon_sym_COMMA, - ACTIONS(2335), 1, + ACTIONS(2754), 1, anon_sym_COLON, - ACTIONS(2337), 1, + ACTIONS(2756), 1, anon_sym_EQ, - STATE(1382), 1, + STATE(1646), 1, aux_sym__patterns_repeat1, - ACTIONS(2339), 13, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2758), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94751,75 +115236,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [79188] = 12, - ACTIONS(3), 1, + [102725] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2309), 1, + sym_line_continuation, + ACTIONS(2710), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [102749] = 13, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - ACTIONS(2341), 1, + ACTIONS(2760), 1, anon_sym_COLON, - STATE(1951), 1, + STATE(2064), 1, sym_parameter, - STATE(2041), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2357), 1, sym_lambda_parameters, - STATE(2156), 1, + STATE(2524), 1, sym__parameters, - STATE(1997), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79231] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2309), 1, + [102795] = 13, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - ACTIONS(2343), 1, + ACTIONS(2762), 1, anon_sym_COLON, - STATE(1951), 1, + STATE(2064), 1, sym_parameter, - STATE(2156), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2524), 1, sym__parameters, - STATE(2212), 1, + STATE(2533), 1, sym_lambda_parameters, - STATE(1997), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79274] = 2, - ACTIONS(3), 1, + [102841] = 13, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, + anon_sym_SLASH, + ACTIONS(2764), 1, + anon_sym_COLON, + STATE(2064), 1, + sym_parameter, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2488), 1, + sym_lambda_parameters, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, sym_comment, - ACTIONS(2345), 17, + sym_line_continuation, + STATE(2291), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2272), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [102887] = 4, + ACTIONS(2766), 1, anon_sym_COMMA, + STATE(1712), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2679), 15, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -94834,190 +115381,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [79297] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2309), 1, + [102915] = 13, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - ACTIONS(2347), 1, + ACTIONS(2769), 1, anon_sym_COLON, - STATE(1951), 1, + STATE(2064), 1, sym_parameter, - STATE(2156), 1, - sym__parameters, - STATE(2173), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2403), 1, sym_lambda_parameters, - STATE(1997), 2, + STATE(2524), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79340] = 12, - ACTIONS(3), 1, + [102961] = 5, + ACTIONS(2754), 1, + anon_sym_COLON, + ACTIONS(2756), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2309), 1, + sym_line_continuation, + ACTIONS(2771), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2758), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [102991] = 13, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - ACTIONS(2349), 1, + ACTIONS(2773), 1, anon_sym_COLON, - STATE(1951), 1, + STATE(2064), 1, sym_parameter, - STATE(2081), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2472), 1, sym_lambda_parameters, - STATE(2156), 1, + STATE(2524), 1, sym__parameters, - STATE(1997), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79383] = 12, - ACTIONS(3), 1, + [103037] = 6, + ACTIONS(2754), 1, + anon_sym_COLON, + ACTIONS(2756), 1, + anon_sym_EQ, + ACTIONS(2775), 1, + anon_sym_COMMA, + STATE(1695), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2758), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [103069] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2309), 1, + sym_line_continuation, + ACTIONS(2679), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [103093] = 12, + ACTIONS(2777), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2781), 1, + anon_sym_RPAREN, + ACTIONS(2783), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2785), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2787), 1, anon_sym_SLASH, - ACTIONS(2351), 1, - anon_sym_COLON, - STATE(1951), 1, + STATE(2117), 1, sym_parameter, - STATE(2156), 1, + STATE(2119), 1, + sym_tuple_pattern, + STATE(2367), 1, sym__parameters, - STATE(2179), 1, - sym_lambda_parameters, - STATE(1997), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2128), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, + STATE(2299), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79426] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, + [103136] = 11, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2355), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2357), 1, - anon_sym_RPAREN, - ACTIONS(2359), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2361), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2363), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - STATE(1912), 1, + ACTIONS(2789), 1, + anon_sym_COLON, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2322), 1, sym_parameter, - STATE(2214), 1, - sym__parameters, - STATE(1902), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1972), 6, - sym_tuple_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79466] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, + [103176] = 11, + ACTIONS(2777), 1, sym_identifier, - ACTIONS(2355), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(2359), 1, + ACTIONS(2783), 1, anon_sym_STAR, - ACTIONS(2361), 1, + ACTIONS(2785), 1, anon_sym_STAR_STAR, - ACTIONS(2363), 1, + ACTIONS(2787), 1, anon_sym_SLASH, - ACTIONS(2365), 1, + ACTIONS(2789), 1, anon_sym_RPAREN, - STATE(2031), 1, + STATE(2119), 1, + sym_tuple_pattern, + STATE(2324), 1, sym_parameter, - STATE(1902), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2128), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1972), 6, - sym_tuple_pattern, + STATE(2299), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79503] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2309), 1, + [103216] = 11, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - ACTIONS(2365), 1, + ACTIONS(2791), 1, anon_sym_COLON, - STATE(1979), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2322), 1, sym_parameter, - STATE(1997), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2335), 1, + [103256] = 4, + ACTIONS(2754), 1, anon_sym_COLON, - ACTIONS(2337), 1, + ACTIONS(2756), 1, anon_sym_EQ, - ACTIONS(2339), 13, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2758), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95031,1885 +115660,1658 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [79565] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2311), 1, - anon_sym_LPAREN, - ACTIONS(2313), 1, - anon_sym_STAR, - ACTIONS(2317), 1, - anon_sym_STAR_STAR, - ACTIONS(2319), 1, - anon_sym_SLASH, - ACTIONS(2367), 1, - anon_sym_COLON, - STATE(1979), 1, - sym_parameter, - STATE(1997), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [79602] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, + [103282] = 11, + ACTIONS(2777), 1, sym_identifier, - ACTIONS(2355), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(2359), 1, + ACTIONS(2783), 1, anon_sym_STAR, - ACTIONS(2361), 1, + ACTIONS(2785), 1, anon_sym_STAR_STAR, - ACTIONS(2363), 1, + ACTIONS(2787), 1, anon_sym_SLASH, - ACTIONS(2367), 1, + ACTIONS(2791), 1, anon_sym_RPAREN, - STATE(2031), 1, + STATE(2119), 1, + sym_tuple_pattern, + STATE(2324), 1, sym_parameter, - STATE(1902), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2128), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1972), 6, - sym_tuple_pattern, + STATE(2299), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79639] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, + [103322] = 10, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2355), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2359), 1, + ACTIONS(2716), 1, anon_sym_STAR, - ACTIONS(2361), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2363), 1, + ACTIONS(2722), 1, anon_sym_SLASH, - STATE(2031), 1, + STATE(2262), 1, + sym_tuple_pattern, + STATE(2322), 1, sym_parameter, - STATE(1902), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2291), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1972), 6, - sym_tuple_pattern, + STATE(2272), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79673] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2309), 1, + [103359] = 10, + ACTIONS(2777), 1, sym_identifier, - ACTIONS(2311), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2783), 1, anon_sym_STAR, - ACTIONS(2317), 1, + ACTIONS(2785), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, + ACTIONS(2787), 1, anon_sym_SLASH, - STATE(1979), 1, + STATE(2119), 1, + sym_tuple_pattern, + STATE(2324), 1, sym_parameter, - STATE(1997), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2128), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2018), 6, - sym_tuple_pattern, + STATE(2299), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [79707] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2369), 1, + [103396] = 13, + ACTIONS(2793), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2375), 1, + ACTIONS(2799), 1, anon_sym_COLON, - ACTIONS(2377), 1, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2381), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2385), 1, + ACTIONS(2809), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1822), 1, + STATE(2101), 1, aux_sym__collection_elements_repeat1, - STATE(2165), 1, + STATE(2336), 1, sym__comprehension_clauses, - [79747] = 13, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2369), 1, + sym_line_continuation, + [103437] = 13, + ACTIONS(2793), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2375), 1, + ACTIONS(2799), 1, anon_sym_COLON, - ACTIONS(2377), 1, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2381), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2385), 1, + ACTIONS(2809), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1822), 1, + STATE(2101), 1, aux_sym__collection_elements_repeat1, - STATE(2091), 1, + STATE(2515), 1, sym__comprehension_clauses, - [79787] = 13, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2369), 1, + sym_line_continuation, + [103478] = 13, + ACTIONS(2793), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2375), 1, + ACTIONS(2799), 1, anon_sym_COLON, - ACTIONS(2377), 1, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2381), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2385), 1, + ACTIONS(2809), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1822), 1, + STATE(2101), 1, aux_sym__collection_elements_repeat1, - STATE(2137), 1, + STATE(2349), 1, sym__comprehension_clauses, - [79827] = 13, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2369), 1, + sym_line_continuation, + [103519] = 13, + ACTIONS(2793), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2375), 1, + ACTIONS(2799), 1, anon_sym_COLON, - ACTIONS(2377), 1, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2381), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2385), 1, + ACTIONS(2809), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1822), 1, + STATE(2101), 1, aux_sym__collection_elements_repeat1, - STATE(2070), 1, + STATE(2426), 1, sym__comprehension_clauses, - [79867] = 13, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2369), 1, + sym_line_continuation, + [103560] = 13, + ACTIONS(2793), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2375), 1, + ACTIONS(2799), 1, anon_sym_COLON, - ACTIONS(2377), 1, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2381), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2385), 1, + ACTIONS(2809), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1822), 1, + STATE(2101), 1, aux_sym__collection_elements_repeat1, - STATE(2135), 1, + STATE(2375), 1, sym__comprehension_clauses, - [79907] = 13, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2369), 1, + sym_line_continuation, + [103601] = 13, + ACTIONS(2793), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2375), 1, + ACTIONS(2799), 1, anon_sym_COLON, - ACTIONS(2377), 1, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2381), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2385), 1, + ACTIONS(2809), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1822), 1, + STATE(2101), 1, aux_sym__collection_elements_repeat1, - STATE(2194), 1, + STATE(2522), 1, sym__comprehension_clauses, - [79947] = 13, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2369), 1, + sym_line_continuation, + [103642] = 13, + ACTIONS(2793), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2375), 1, + ACTIONS(2799), 1, anon_sym_COLON, - ACTIONS(2377), 1, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2381), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2385), 1, + ACTIONS(2809), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1822), 1, + STATE(2101), 1, aux_sym__collection_elements_repeat1, - STATE(2064), 1, + STATE(2387), 1, sym__comprehension_clauses, - [79987] = 13, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2369), 1, + sym_line_continuation, + [103683] = 13, + ACTIONS(2793), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2375), 1, + ACTIONS(2799), 1, anon_sym_COLON, - ACTIONS(2377), 1, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2381), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2385), 1, + ACTIONS(2809), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1822), 1, + STATE(2101), 1, aux_sym__collection_elements_repeat1, - STATE(2054), 1, + STATE(2473), 1, sym__comprehension_clauses, - [80027] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2387), 1, + sym_line_continuation, + [103724] = 12, + ACTIONS(2811), 1, anon_sym_RPAREN, - ACTIONS(2389), 1, + ACTIONS(2813), 1, anon_sym_COMMA, - ACTIONS(2391), 1, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - STATE(1566), 1, + STATE(1893), 1, sym_for_in_clause, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - STATE(2185), 1, + STATE(2085), 1, + aux_sym_argument_list_repeat1, + STATE(2536), 1, sym__comprehension_clauses, - [80064] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2391), 1, + sym_line_continuation, + [103762] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2403), 1, + ACTIONS(2827), 1, anon_sym_RPAREN, - STATE(1566), 1, + ACTIONS(2829), 1, + anon_sym_COMMA, + STATE(1893), 1, sym_for_in_clause, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - STATE(2172), 1, + STATE(2251), 1, + aux_sym_argument_list_repeat1, + STATE(2518), 1, sym__comprehension_clauses, - [80101] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2391), 1, + sym_line_continuation, + [103800] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2405), 1, + ACTIONS(2831), 1, anon_sym_RPAREN, - STATE(1566), 1, + ACTIONS(2833), 1, + anon_sym_COMMA, + STATE(1893), 1, sym_for_in_clause, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - STATE(2088), 1, + STATE(2158), 1, + aux_sym_argument_list_repeat1, + STATE(2459), 1, sym__comprehension_clauses, - [80138] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2391), 1, + sym_line_continuation, + [103838] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2407), 1, + ACTIONS(2835), 1, anon_sym_RPAREN, - STATE(1566), 1, + ACTIONS(2837), 1, + anon_sym_COMMA, + STATE(1893), 1, sym_for_in_clause, - STATE(1824), 1, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - STATE(2050), 1, + STATE(2485), 1, sym__comprehension_clauses, - [80175] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + [103876] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2409), 1, - anon_sym_RPAREN, - ACTIONS(2411), 1, + ACTIONS(2837), 1, anon_sym_COMMA, - STATE(1566), 1, + ACTIONS(2839), 1, + anon_sym_RPAREN, + STATE(1893), 1, sym_for_in_clause, - STATE(1836), 1, - aux_sym_argument_list_repeat1, - STATE(2149), 1, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + STATE(2459), 1, sym__comprehension_clauses, - [80212] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + [103914] = 12, + ACTIONS(2809), 1, + anon_sym_RBRACK, + ACTIONS(2841), 1, + anon_sym_COMMA, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2845), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2847), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2849), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2853), 1, anon_sym_or, - ACTIONS(2413), 1, - anon_sym_RPAREN, - ACTIONS(2415), 1, - anon_sym_COMMA, - STATE(1566), 1, + STATE(1898), 1, sym_for_in_clause, - STATE(1846), 1, - aux_sym_argument_list_repeat1, - STATE(2088), 1, + STATE(2077), 1, + aux_sym__collection_elements_repeat1, + STATE(2337), 1, sym__comprehension_clauses, - [80249] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2385), 1, + sym_line_continuation, + [103952] = 12, + ACTIONS(2809), 1, anon_sym_RBRACK, - ACTIONS(2417), 1, + ACTIONS(2841), 1, anon_sym_COMMA, - ACTIONS(2419), 1, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2421), 1, + ACTIONS(2845), 1, anon_sym_if, - ACTIONS(2423), 1, + ACTIONS(2847), 1, anon_sym_async, - ACTIONS(2425), 1, + ACTIONS(2849), 1, anon_sym_for, - ACTIONS(2427), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2853), 1, anon_sym_or, - STATE(1599), 1, + STATE(1898), 1, sym_for_in_clause, - STATE(1813), 1, + STATE(2077), 1, aux_sym__collection_elements_repeat1, - STATE(2051), 1, + STATE(2347), 1, sym__comprehension_clauses, - [80286] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + [103990] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2431), 1, + ACTIONS(2837), 1, + anon_sym_COMMA, + ACTIONS(2855), 1, anon_sym_RPAREN, - ACTIONS(2433), 1, + STATE(1893), 1, + sym_for_in_clause, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + STATE(2389), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104028] = 12, + ACTIONS(2815), 1, + anon_sym_as, + ACTIONS(2817), 1, + anon_sym_if, + ACTIONS(2819), 1, + anon_sym_async, + ACTIONS(2821), 1, + anon_sym_for, + ACTIONS(2823), 1, + anon_sym_and, + ACTIONS(2825), 1, + anon_sym_or, + ACTIONS(2837), 1, anon_sym_COMMA, - STATE(1566), 1, + ACTIONS(2857), 1, + anon_sym_RPAREN, + STATE(1893), 1, sym_for_in_clause, - STATE(1785), 1, - aux_sym_argument_list_repeat1, - STATE(2185), 1, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + STATE(2518), 1, sym__comprehension_clauses, - [80323] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2385), 1, + sym_line_continuation, + [104066] = 12, + ACTIONS(2809), 1, anon_sym_RBRACK, - ACTIONS(2417), 1, + ACTIONS(2841), 1, anon_sym_COMMA, - ACTIONS(2419), 1, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2421), 1, + ACTIONS(2845), 1, anon_sym_if, - ACTIONS(2423), 1, + ACTIONS(2847), 1, anon_sym_async, - ACTIONS(2425), 1, + ACTIONS(2849), 1, anon_sym_for, - ACTIONS(2427), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2853), 1, anon_sym_or, - STATE(1599), 1, + STATE(1898), 1, sym_for_in_clause, - STATE(1813), 1, + STATE(2077), 1, aux_sym__collection_elements_repeat1, - STATE(2059), 1, + STATE(2443), 1, sym__comprehension_clauses, - [80360] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, + sym_line_continuation, + [104104] = 12, + ACTIONS(2809), 1, + anon_sym_RBRACK, + ACTIONS(2841), 1, anon_sym_COMMA, - ACTIONS(2391), 1, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2845), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2847), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2849), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2853), 1, anon_sym_or, - ACTIONS(2435), 1, - anon_sym_RPAREN, - STATE(1566), 1, + STATE(1898), 1, sym_for_in_clause, - STATE(1824), 1, + STATE(2077), 1, aux_sym__collection_elements_repeat1, - STATE(2074), 1, + STATE(2517), 1, sym__comprehension_clauses, - [80397] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + [104142] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2437), 1, - anon_sym_RPAREN, - ACTIONS(2439), 1, + ACTIONS(2837), 1, anon_sym_COMMA, - STATE(1566), 1, + ACTIONS(2859), 1, + anon_sym_RPAREN, + STATE(1893), 1, sym_for_in_clause, - STATE(1940), 1, - aux_sym_argument_list_repeat1, - STATE(2172), 1, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + STATE(2341), 1, sym__comprehension_clauses, - [80434] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2385), 1, - anon_sym_RBRACK, - ACTIONS(2417), 1, - anon_sym_COMMA, - ACTIONS(2419), 1, + sym_line_continuation, + [104180] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2421), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2423), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2425), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2427), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2825), 1, anon_sym_or, - STATE(1599), 1, + ACTIONS(2861), 1, + anon_sym_RPAREN, + ACTIONS(2863), 1, + anon_sym_COMMA, + STATE(1893), 1, sym_for_in_clause, - STATE(1813), 1, - aux_sym__collection_elements_repeat1, - STATE(2170), 1, + STATE(2237), 1, + aux_sym_argument_list_repeat1, + STATE(2341), 1, sym__comprehension_clauses, - [80471] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2385), 1, + sym_line_continuation, + [104218] = 12, + ACTIONS(2809), 1, anon_sym_RBRACK, - ACTIONS(2417), 1, + ACTIONS(2841), 1, anon_sym_COMMA, - ACTIONS(2419), 1, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2421), 1, + ACTIONS(2845), 1, anon_sym_if, - ACTIONS(2423), 1, + ACTIONS(2847), 1, anon_sym_async, - ACTIONS(2425), 1, + ACTIONS(2849), 1, anon_sym_for, - ACTIONS(2427), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2853), 1, anon_sym_or, - STATE(1599), 1, + STATE(1898), 1, sym_for_in_clause, - STATE(1813), 1, + STATE(2077), 1, aux_sym__collection_elements_repeat1, - STATE(2201), 1, + STATE(2388), 1, sym__comprehension_clauses, - [80508] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2391), 1, + sym_line_continuation, + [104256] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2441), 1, + ACTIONS(2837), 1, + anon_sym_COMMA, + ACTIONS(2865), 1, anon_sym_RPAREN, - STATE(1566), 1, + STATE(1893), 1, sym_for_in_clause, - STATE(1824), 1, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - STATE(2149), 1, + STATE(2536), 1, sym__comprehension_clauses, - [80545] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + [104294] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2443), 1, + ACTIONS(2865), 1, anon_sym_RPAREN, - ACTIONS(2445), 1, + ACTIONS(2867), 1, anon_sym_COMMA, - STATE(1566), 1, + STATE(1893), 1, sym_for_in_clause, - STATE(1952), 1, - aux_sym_argument_list_repeat1, - STATE(2128), 1, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + STATE(2536), 1, sym__comprehension_clauses, - [80582] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2385), 1, + sym_line_continuation, + [104332] = 12, + ACTIONS(2809), 1, anon_sym_RBRACK, - ACTIONS(2417), 1, + ACTIONS(2841), 1, anon_sym_COMMA, - ACTIONS(2419), 1, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2421), 1, + ACTIONS(2845), 1, anon_sym_if, - ACTIONS(2423), 1, + ACTIONS(2847), 1, anon_sym_async, - ACTIONS(2425), 1, + ACTIONS(2849), 1, anon_sym_for, - ACTIONS(2427), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2853), 1, anon_sym_or, - STATE(1599), 1, + STATE(1898), 1, sym_for_in_clause, - STATE(1813), 1, + STATE(2077), 1, aux_sym__collection_elements_repeat1, - STATE(2089), 1, + STATE(2502), 1, sym__comprehension_clauses, - [80619] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2391), 1, + sym_line_continuation, + [104370] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2447), 1, + ACTIONS(2870), 1, anon_sym_RPAREN, - STATE(1566), 1, + ACTIONS(2872), 1, + anon_sym_COMMA, + STATE(1893), 1, sym_for_in_clause, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - STATE(2128), 1, + STATE(2156), 1, + aux_sym_argument_list_repeat1, + STATE(2485), 1, sym__comprehension_clauses, - [80656] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2391), 1, + sym_line_continuation, + [104408] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2449), 1, + ACTIONS(2837), 1, + anon_sym_COMMA, + ACTIONS(2874), 1, anon_sym_RPAREN, - STATE(1566), 1, + STATE(1893), 1, sym_for_in_clause, - STATE(1824), 1, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - STATE(2052), 1, + STATE(2478), 1, sym__comprehension_clauses, - [80693] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + [104446] = 12, + ACTIONS(2809), 1, + anon_sym_RBRACK, + ACTIONS(2841), 1, + anon_sym_COMMA, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2845), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2847), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2849), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2853), 1, anon_sym_or, - ACTIONS(2441), 1, - anon_sym_RPAREN, - ACTIONS(2451), 1, - anon_sym_COMMA, - STATE(1566), 1, + STATE(1898), 1, sym_for_in_clause, - STATE(1824), 1, + STATE(2077), 1, aux_sym__collection_elements_repeat1, - STATE(2149), 1, + STATE(2474), 1, sym__comprehension_clauses, - [80730] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + [104484] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2454), 1, + ACTIONS(2876), 1, anon_sym_RPAREN, - ACTIONS(2456), 1, + ACTIONS(2878), 1, anon_sym_COMMA, - STATE(1566), 1, + STATE(1893), 1, sym_for_in_clause, - STATE(1856), 1, + STATE(2208), 1, aux_sym_argument_list_repeat1, - STATE(2052), 1, + STATE(2346), 1, sym__comprehension_clauses, - [80767] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2385), 1, - anon_sym_RBRACK, - ACTIONS(2417), 1, - anon_sym_COMMA, - ACTIONS(2419), 1, + sym_line_continuation, + [104522] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2421), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2423), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2425), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2427), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2825), 1, anon_sym_or, - STATE(1599), 1, - sym_for_in_clause, - STATE(1813), 1, - aux_sym__collection_elements_repeat1, - STATE(2071), 1, - sym__comprehension_clauses, - [80804] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2385), 1, - anon_sym_RBRACK, - ACTIONS(2417), 1, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(2419), 1, - anon_sym_as, - ACTIONS(2421), 1, - anon_sym_if, - ACTIONS(2423), 1, - anon_sym_async, - ACTIONS(2425), 1, - anon_sym_for, - ACTIONS(2427), 1, - anon_sym_and, - ACTIONS(2429), 1, - anon_sym_or, - STATE(1599), 1, + ACTIONS(2880), 1, + anon_sym_RPAREN, + STATE(1893), 1, sym_for_in_clause, - STATE(1813), 1, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - STATE(2147), 1, + STATE(2346), 1, sym__comprehension_clauses, - [80841] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + [104560] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2458), 1, + ACTIONS(2882), 1, anon_sym_RPAREN, - ACTIONS(2460), 1, + ACTIONS(2884), 1, anon_sym_COMMA, - STATE(1566), 1, + STATE(1893), 1, sym_for_in_clause, - STATE(1899), 1, + STATE(2181), 1, aux_sym_argument_list_repeat1, - STATE(2074), 1, + STATE(2389), 1, sym__comprehension_clauses, - [80878] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + [104598] = 12, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2817), 1, anon_sym_if, - ACTIONS(2395), 1, + ACTIONS(2819), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2821), 1, anon_sym_for, - ACTIONS(2399), 1, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2462), 1, + ACTIONS(2886), 1, anon_sym_RPAREN, - ACTIONS(2464), 1, + ACTIONS(2888), 1, anon_sym_COMMA, - STATE(1566), 1, + STATE(1893), 1, sym_for_in_clause, - STATE(1900), 1, + STATE(2122), 1, aux_sym_argument_list_repeat1, - STATE(2050), 1, + STATE(2478), 1, sym__comprehension_clauses, - [80915] = 12, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2385), 1, + sym_line_continuation, + [104636] = 12, + ACTIONS(2809), 1, anon_sym_RBRACK, - ACTIONS(2417), 1, + ACTIONS(2841), 1, anon_sym_COMMA, - ACTIONS(2419), 1, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2421), 1, + ACTIONS(2845), 1, anon_sym_if, - ACTIONS(2423), 1, + ACTIONS(2847), 1, anon_sym_async, - ACTIONS(2425), 1, + ACTIONS(2849), 1, anon_sym_for, - ACTIONS(2427), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2853), 1, anon_sym_or, - STATE(1599), 1, + STATE(1898), 1, sym_for_in_clause, - STATE(1813), 1, + STATE(2077), 1, aux_sym__collection_elements_repeat1, - STATE(2132), 1, + STATE(2531), 1, sym__comprehension_clauses, - [80952] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2474), 1, - sym__string_end, - STATE(1456), 1, - aux_sym_string_repeat1, - STATE(1612), 1, - aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [80982] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, + sym_line_continuation, + [104674] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - sym__string_end, - STATE(1460), 1, - aux_sym_string_repeat1, - STATE(1612), 1, - aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [81012] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2478), 1, - sym__string_end, - STATE(1453), 1, - aux_sym_string_repeat1, - STATE(1612), 1, + ACTIONS(2896), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81042] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2480), 1, - sym__string_end, - STATE(1460), 1, + STATE(1760), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [104703] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2898), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81072] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2482), 1, - sym__string_end, - STATE(1447), 1, + STATE(1775), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [104732] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2900), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81102] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2484), 1, - sym__string_end, - STATE(1441), 1, + STATE(1777), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [104761] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2902), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81132] = 8, + STATE(1767), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [104790] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2486), 1, - anon_sym_COMMA, - ACTIONS(2488), 1, - anon_sym_as, - ACTIONS(2490), 1, - anon_sym_if, - ACTIONS(2494), 1, - anon_sym_and, - ACTIONS(2496), 1, - anon_sym_or, - STATE(1627), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2492), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [81160] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2498), 1, - sym__string_end, - STATE(1460), 1, - aux_sym_string_repeat1, - STATE(1612), 1, + ACTIONS(2904), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81190] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2500), 1, - sym__string_end, - STATE(1443), 1, + STATE(1775), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [104819] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2906), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81220] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2502), 1, - sym__string_end, - STATE(1452), 1, + STATE(1775), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [104848] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2908), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81250] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2504), 1, - sym__string_end, - STATE(1460), 1, + STATE(1773), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [104877] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2910), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81280] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2506), 1, - sym__string_end, - STATE(1450), 1, + STATE(1779), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [104906] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2912), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81310] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2508), 1, - sym__string_end, - STATE(1460), 1, + STATE(1775), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [104935] = 8, + ACTIONS(2914), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_as, + ACTIONS(2918), 1, + anon_sym_if, + ACTIONS(2922), 1, + anon_sym_and, + ACTIONS(2924), 1, + anon_sym_or, + STATE(1940), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2920), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [104964] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2926), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81340] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2510), 1, - sym__string_end, - STATE(1460), 1, + STATE(1772), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [104993] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2928), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81370] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2512), 1, - sym__string_end, - STATE(1460), 1, + STATE(1775), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [105022] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2930), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81400] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2514), 1, - sym__string_end, - STATE(1454), 1, + STATE(1770), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [105051] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2932), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81430] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2516), 1, - sym__string_end, - STATE(1460), 1, + STATE(1775), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [105080] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2934), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81460] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2518), 1, - sym__string_end, - STATE(1458), 1, + STATE(1775), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [105109] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2936), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81490] = 9, - ACTIONS(2466), 1, - anon_sym_LBRACE2, - ACTIONS(2470), 1, - sym__not_escape_sequence, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2520), 1, - sym__string_end, - STATE(1460), 1, + STATE(1764), 3, + sym_string_content, + sym_interpolation, aux_sym_string_repeat1, - STATE(1612), 1, + [105138] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2938), 1, + anon_sym_LBRACE, + ACTIONS(2944), 1, + sym__not_escape_sequence, + ACTIONS(2947), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2468), 3, + ACTIONS(2941), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81520] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + STATE(1775), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [105167] = 8, + ACTIONS(2914), 1, anon_sym_COMMA, - ACTIONS(2488), 1, + ACTIONS(2916), 1, anon_sym_as, - ACTIONS(2490), 1, + ACTIONS(2918), 1, anon_sym_if, - ACTIONS(2494), 1, + ACTIONS(2922), 1, anon_sym_and, - ACTIONS(2496), 1, + ACTIONS(2924), 1, anon_sym_or, - STATE(1627), 1, + STATE(1940), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2522), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2949), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [81548] = 9, - ACTIONS(2472), 1, + [105196] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 1, - anon_sym_LBRACE2, - ACTIONS(2530), 1, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, sym__not_escape_sequence, - ACTIONS(2533), 1, - sym__string_end, - STATE(1460), 1, - aux_sym_string_repeat1, - STATE(1612), 1, + ACTIONS(2951), 1, + sym_string_end, + STATE(1889), 1, aux_sym_string_content_repeat1, - STATE(1653), 1, - sym_interpolation, - STATE(1656), 1, - sym_string_content, - ACTIONS(2527), 3, + ACTIONS(2892), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [81578] = 5, + STATE(1775), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [105225] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2381), 1, - anon_sym_and, - ACTIONS(2383), 1, - anon_sym_or, - ACTIONS(2537), 1, - anon_sym_as, - ACTIONS(2535), 6, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [81599] = 6, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2953), 1, + sym_string_end, + STATE(1889), 1, + aux_sym_string_content_repeat1, + ACTIONS(2892), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + STATE(1763), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [105254] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + sym__not_escape_sequence, + ACTIONS(2955), 1, + sym_string_end, + STATE(1889), 1, + aux_sym_string_content_repeat1, + ACTIONS(2892), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + STATE(1775), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [105283] = 6, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2381), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2540), 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2467), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [81622] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, + [105307] = 5, + ACTIONS(2461), 1, anon_sym_as, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2535), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - [81643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2549), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(2807), 1, anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [81660] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2549), 9, + sym_line_continuation, + ACTIONS(2459), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [81675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 1, + [105329] = 5, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2496), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2551), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [81694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2553), 9, - anon_sym_COMMA, + ACTIONS(2957), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [81709] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2381), 1, - anon_sym_and, - ACTIONS(2555), 1, - anon_sym_as, - ACTIONS(2549), 7, + sym_line_continuation, + ACTIONS(2452), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_or, anon_sym_RBRACE, - [81728] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 1, + [105351] = 6, + ACTIONS(2916), 1, + anon_sym_as, + ACTIONS(2918), 1, + anon_sym_if, + ACTIONS(2922), 1, anon_sym_and, - ACTIONS(2496), 1, + ACTIONS(2924), 1, anon_sym_or, - ACTIONS(2557), 1, - anon_sym_as, - ACTIONS(2535), 6, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2960), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [81749] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + [105375] = 6, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2490), 1, + ACTIONS(2964), 1, anon_sym_if, - ACTIONS(2494), 1, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2496), 1, + ACTIONS(2968), 1, anon_sym_or, - ACTIONS(2560), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [81772] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2551), 7, + sym_line_continuation, + ACTIONS(2436), 5, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_EQ, - [81791] = 6, - ACTIONS(3), 1, + [105399] = 3, + ACTIONS(2922), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(2488), 1, + sym_line_continuation, + ACTIONS(2463), 8, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2490), 1, anon_sym_if, - ACTIONS(2494), 1, - anon_sym_and, - ACTIONS(2496), 1, - anon_sym_or, - ACTIONS(2562), 5, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_or, anon_sym_RBRACE, sym_type_conversion, - [81814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2555), 1, + [105417] = 6, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2549), 8, - anon_sym_COMMA, + ACTIONS(2964), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + ACTIONS(2966), 1, anon_sym_and, + ACTIONS(2968), 1, anon_sym_or, - anon_sym_RBRACE, - [81831] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2549), 9, + sym_line_continuation, + ACTIONS(2424), 5, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_EQ, - anon_sym_and, - anon_sym_or, - [81846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2549), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + [105441] = 9, + ACTIONS(2962), 1, anon_sym_as, + ACTIONS(2964), 1, anon_sym_if, - anon_sym_EQ, - anon_sym_or, - [81863] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2547), 1, + ACTIONS(2968), 1, anon_sym_or, - ACTIONS(2566), 1, + ACTIONS(2972), 1, anon_sym_from, - ACTIONS(2568), 1, + ACTIONS(2974), 1, anon_sym_COMMA, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - STATE(1707), 1, + STATE(2013), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2564), 2, - sym__newline, - anon_sym_SEMI, - [81892] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2381), 1, - anon_sym_and, - ACTIONS(2383), 1, - anon_sym_or, - ACTIONS(2574), 1, - anon_sym_as, - ACTIONS(2551), 6, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [81913] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1761), 9, + sym_line_continuation, + ACTIONS(2970), 2, sym__newline, anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + [105471] = 6, + ACTIONS(2916), 1, anon_sym_as, + ACTIONS(2918), 1, anon_sym_if, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - [81928] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, + ACTIONS(2922), 1, anon_sym_and, - ACTIONS(2547), 1, + ACTIONS(2924), 1, anon_sym_or, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(2576), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_EQ, - [81951] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1761), 9, + sym_line_continuation, + ACTIONS(2976), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, - anon_sym_and, - anon_sym_or, anon_sym_RBRACE, sym_type_conversion, - [81966] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + [105495] = 6, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2490), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2494), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2496), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2576), 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2436), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [81989] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_as, - ACTIONS(2490), 1, - anon_sym_if, - ACTIONS(2494), 1, + [105519] = 4, + ACTIONS(2922), 1, anon_sym_and, - ACTIONS(2496), 1, + ACTIONS(2924), 1, anon_sym_or, - ACTIONS(2578), 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2459), 7, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [82012] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + [105539] = 6, + ACTIONS(2916), 1, anon_sym_as, - ACTIONS(2490), 1, + ACTIONS(2918), 1, anon_sym_if, - ACTIONS(2494), 1, + ACTIONS(2922), 1, anon_sym_and, - ACTIONS(2496), 1, + ACTIONS(2924), 1, anon_sym_or, - ACTIONS(2540), 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2424), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [82035] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(2540), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_EQ, - [82058] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_as, - ACTIONS(1761), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + [105563] = 5, + ACTIONS(2922), 1, anon_sym_and, + ACTIONS(2924), 1, anon_sym_or, - anon_sym_RBRACE, - [82075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2580), 1, + ACTIONS(2978), 1, anon_sym_as, - ACTIONS(2553), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - [82092] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2582), 9, + sym_line_continuation, + ACTIONS(2452), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, - anon_sym_and, - anon_sym_or, anon_sym_RBRACE, sym_type_conversion, - [82107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2553), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - [82122] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, + [105585] = 6, + ACTIONS(2916), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2918), 1, anon_sym_if, - ACTIONS(2381), 1, + ACTIONS(2922), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2924), 1, anon_sym_or, - ACTIONS(2576), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [82145] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2584), 1, - anon_sym_as, - ACTIONS(2582), 8, + sym_line_continuation, + ACTIONS(2436), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - [82162] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(2562), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, anon_sym_EQ, - [82185] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_as, - ACTIONS(2373), 1, - anon_sym_if, - ACTIONS(2381), 1, - anon_sym_and, - ACTIONS(2383), 1, - anon_sym_or, - ACTIONS(2562), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, - [82208] = 2, - ACTIONS(3), 1, + sym_type_conversion, + [105609] = 3, + ACTIONS(2966), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(2582), 9, + sym_line_continuation, + ACTIONS(2463), 8, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -96917,10805 +117319,12168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_if, anon_sym_EQ, - anon_sym_and, anon_sym_or, - [82223] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(2586), 1, - anon_sym_async, - ACTIONS(2588), 1, - anon_sym_def, - ACTIONS(2590), 1, - anon_sym_class, - STATE(775), 2, - sym_function_definition, - sym_class_definition, - STATE(1681), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [82247] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, - anon_sym_COMMA, - ACTIONS(2594), 1, + [105627] = 6, + ACTIONS(2916), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2918), 1, anon_sym_if, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(2600), 1, - anon_sym_RBRACK, - ACTIONS(2602), 1, + ACTIONS(2922), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(2924), 1, anon_sym_or, - STATE(1789), 1, - aux_sym_subscript_repeat1, - [82275] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2551), 6, + sym_line_continuation, + ACTIONS(2467), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, - [82293] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - anon_sym_as, - ACTIONS(2596), 1, - anon_sym_if, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(2602), 1, - anon_sym_and, - ACTIONS(2604), 1, - anon_sym_or, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - anon_sym_RBRACK, - STATE(1851), 1, - aux_sym_subscript_repeat1, - [82321] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - anon_sym_as, - ACTIONS(2596), 1, - anon_sym_if, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(2602), 1, - anon_sym_and, - ACTIONS(2604), 1, - anon_sym_or, - ACTIONS(2614), 1, - anon_sym_COMMA, - ACTIONS(2616), 1, - anon_sym_RBRACK, - STATE(1903), 1, - aux_sym_subscript_repeat1, - [82349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2584), 1, - anon_sym_as, - ACTIONS(2582), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [82365] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 1, - anon_sym_except, - ACTIONS(1232), 1, - anon_sym_except_STAR, - ACTIONS(2618), 1, - anon_sym_finally, - STATE(806), 1, - sym_finally_clause, - STATE(390), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(393), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [82389] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2427), 1, - anon_sym_and, - ACTIONS(2429), 1, - anon_sym_or, - ACTIONS(2574), 1, - anon_sym_as, - ACTIONS(2551), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [82409] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, + anon_sym_RBRACE, + sym_type_conversion, + [105651] = 6, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2373), 1, + ACTIONS(2964), 1, anon_sym_if, - ACTIONS(2381), 1, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2968), 1, anon_sym_or, - ACTIONS(2620), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [82431] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2568), 1, - anon_sym_COMMA, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - STATE(1707), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2492), 2, + sym_line_continuation, + ACTIONS(2467), 5, sym__newline, anon_sym_SEMI, - [82457] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2622), 1, - anon_sym_as, - ACTIONS(2535), 5, + anon_sym_from, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_EQ, - [82477] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - anon_sym_as, - ACTIONS(2596), 1, - anon_sym_if, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(2602), 1, - anon_sym_and, - ACTIONS(2604), 1, - anon_sym_or, - ACTIONS(2625), 1, - anon_sym_COMMA, - ACTIONS(2627), 1, - anon_sym_RBRACK, - STATE(1956), 1, - aux_sym_subscript_repeat1, - [82505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2580), 1, + [105675] = 4, + ACTIONS(2465), 1, anon_sym_as, - ACTIONS(2553), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [82521] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(2540), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - [82543] = 9, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2633), 1, + sym_line_continuation, + ACTIONS(2463), 7, anon_sym_COMMA, - ACTIONS(2635), 1, anon_sym_if, - ACTIONS(2637), 1, anon_sym_COLON, - STATE(1705), 1, - aux_sym_case_clause_repeat1, - STATE(2150), 1, - sym_if_clause, - [82571] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_as, - ACTIONS(2381), 1, - anon_sym_and, - ACTIONS(2383), 1, - anon_sym_or, - ACTIONS(2639), 5, - anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [82591] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1196), 1, - anon_sym_except_STAR, - ACTIONS(1204), 1, - anon_sym_except, - ACTIONS(2641), 1, - anon_sym_finally, - STATE(771), 1, - sym_finally_clause, - STATE(350), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(391), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [82615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + anon_sym_or, + anon_sym_RBRACE, + [105695] = 4, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2549), 7, + ACTIONS(2968), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2459), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_EQ, + [105715] = 5, + ACTIONS(2966), 1, + anon_sym_and, + ACTIONS(2968), 1, anon_sym_or, - [82631] = 6, - ACTIONS(3), 1, + ACTIONS(2981), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(2419), 1, + sym_line_continuation, + ACTIONS(2452), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + [105737] = 6, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2421), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2427), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2576), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2424), 5, anon_sym_COMMA, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [82653] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, + anon_sym_RBRACE, + [105761] = 5, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2399), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2853), 1, anon_sym_or, - ACTIONS(2639), 5, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2984), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [82673] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 1, + anon_sym_RBRACK, + [105782] = 7, + ACTIONS(1362), 1, anon_sym_except, - ACTIONS(1232), 1, + ACTIONS(1366), 1, anon_sym_except_STAR, - ACTIONS(2618), 1, + ACTIONS(2986), 1, anon_sym_finally, - STATE(748), 1, + STATE(855), 1, sym_finally_clause, - STATE(395), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(494), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(396), 2, + STATE(495), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [82697] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, + [105807] = 9, + ACTIONS(2988), 1, + anon_sym_COMMA, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2381), 1, + ACTIONS(2992), 1, + anon_sym_if, + ACTIONS(2994), 1, + anon_sym_COLON, + ACTIONS(2996), 1, + anon_sym_RBRACK, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2639), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [82717] = 4, - ACTIONS(3), 1, + STATE(2163), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2399), 1, - anon_sym_and, - ACTIONS(2555), 1, + sym_line_continuation, + [105836] = 5, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2549), 6, - anon_sym_RPAREN, + ACTIONS(2851), 1, + anon_sym_and, + ACTIONS(2853), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2984), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_or, - [82735] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + anon_sym_RBRACK, + [105857] = 6, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2845), 1, anon_sym_if, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(2602), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(2853), 1, anon_sym_or, - ACTIONS(2643), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2424), 4, anon_sym_COMMA, - ACTIONS(2645), 1, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - STATE(1935), 1, - aux_sym_subscript_repeat1, - [82763] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, + [105880] = 6, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2845), 1, anon_sym_if, - ACTIONS(2399), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2853), 1, anon_sym_or, - ACTIONS(2540), 4, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2436), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [82785] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + anon_sym_RBRACK, + [105903] = 7, + ACTIONS(59), 1, anon_sym_AT, - ACTIONS(2647), 1, + ACTIONS(3002), 1, anon_sym_async, - ACTIONS(2649), 1, + ACTIONS(3004), 1, anon_sym_def, - ACTIONS(2651), 1, + ACTIONS(3006), 1, anon_sym_class, - STATE(772), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(858), 2, sym_function_definition, sym_class_definition, - STATE(1681), 2, + STATE(1961), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - [82809] = 3, - ACTIONS(3), 1, + [105928] = 7, + ACTIONS(1344), 1, + anon_sym_except, + ACTIONS(1354), 1, + anon_sym_except_STAR, + ACTIONS(3008), 1, + anon_sym_finally, + STATE(899), 1, + sym_finally_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(1779), 1, + sym_line_continuation, + STATE(525), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(529), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [105953] = 4, + ACTIONS(2465), 1, anon_sym_as, - ACTIONS(1761), 7, + ACTIONS(2823), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2463), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, + anon_sym_or, + [105972] = 5, + ACTIONS(2795), 1, + anon_sym_as, + ACTIONS(2805), 1, anon_sym_and, + ACTIONS(2807), 1, anon_sym_or, - [82825] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2555), 1, - anon_sym_as, - ACTIONS(2549), 7, - anon_sym_RPAREN, + sym_line_continuation, + ACTIONS(2984), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACE, + [105993] = 5, + ACTIONS(2815), 1, + anon_sym_as, + ACTIONS(2823), 1, anon_sym_and, + ACTIONS(2825), 1, anon_sym_or, - [82841] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2582), 8, + sym_line_continuation, + ACTIONS(2984), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, + [106014] = 5, + ACTIONS(2815), 1, + anon_sym_as, + ACTIONS(2823), 1, anon_sym_and, + ACTIONS(2825), 1, anon_sym_or, - [82855] = 5, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2399), 1, - anon_sym_and, - ACTIONS(2401), 1, - anon_sym_or, - ACTIONS(2574), 1, - anon_sym_as, - ACTIONS(2551), 5, + sym_line_continuation, + ACTIONS(2984), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [82875] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + [106035] = 5, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2853), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3010), 1, anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(2562), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - [82897] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2419), 1, - anon_sym_as, - ACTIONS(2421), 1, - anon_sym_if, - ACTIONS(2427), 1, - anon_sym_and, - ACTIONS(2429), 1, - anon_sym_or, - ACTIONS(2540), 4, + sym_line_continuation, + ACTIONS(2452), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [82919] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2553), 8, - anon_sym_COMMA, + [106056] = 5, + ACTIONS(2461), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, + ACTIONS(2823), 1, anon_sym_and, + ACTIONS(2825), 1, anon_sym_or, - [82933] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2549), 8, + sym_line_continuation, + ACTIONS(2459), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106077] = 6, + ACTIONS(2815), 1, anon_sym_as, + ACTIONS(2817), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, + ACTIONS(2823), 1, anon_sym_and, + ACTIONS(2825), 1, anon_sym_or, - [82947] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2419), 1, + sym_line_continuation, + ACTIONS(2424), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [106100] = 6, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2421), 1, + ACTIONS(2964), 1, anon_sym_if, - ACTIONS(2427), 1, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2968), 1, anon_sym_or, - ACTIONS(2562), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [82969] = 5, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2399), 1, + sym_line_continuation, + ACTIONS(2976), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [106123] = 5, + ACTIONS(2843), 1, + anon_sym_as, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2853), 1, anon_sym_or, - ACTIONS(2653), 1, - anon_sym_as, - ACTIONS(2535), 5, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2984), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [82989] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + anon_sym_RBRACK, + [106144] = 8, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2964), 1, anon_sym_if, - ACTIONS(2576), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - [83011] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2547), 1, + ACTIONS(2968), 1, anon_sym_or, - ACTIONS(2568), 1, + ACTIONS(3015), 1, anon_sym_COMMA, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - STATE(1707), 1, + STATE(2050), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2656), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3013), 2, sym__newline, anon_sym_SEMI, - [83037] = 6, - ACTIONS(3), 1, + [106171] = 5, + ACTIONS(2823), 1, + anon_sym_and, + ACTIONS(2825), 1, + anon_sym_or, + ACTIONS(3017), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + ACTIONS(2452), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106192] = 6, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2393), 1, + ACTIONS(2797), 1, anon_sym_if, - ACTIONS(2399), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2562), 4, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [83059] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + anon_sym_RBRACE, + [106215] = 9, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2598), 1, + ACTIONS(2994), 1, anon_sym_COLON, - ACTIONS(2602), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2658), 1, + ACTIONS(3022), 1, anon_sym_COMMA, - ACTIONS(2660), 1, + ACTIONS(3024), 1, anon_sym_RBRACK, - STATE(1893), 1, + STATE(2244), 1, aux_sym_subscript_repeat1, - [83087] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2545), 1, + sym_line_continuation, + [106244] = 9, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2547), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2568), 1, + ACTIONS(3026), 1, anon_sym_COMMA, - ACTIONS(2570), 1, + ACTIONS(3028), 1, + anon_sym_if, + ACTIONS(3030), 1, + anon_sym_COLON, + STATE(2021), 1, + aux_sym_case_clause_repeat1, + STATE(2494), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106273] = 8, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2572), 1, + ACTIONS(2964), 1, anon_sym_if, - STATE(1707), 1, + ACTIONS(2966), 1, + anon_sym_and, + ACTIONS(2968), 1, + anon_sym_or, + ACTIONS(2974), 1, + anon_sym_COMMA, + STATE(2013), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2662), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2920), 2, sym__newline, anon_sym_SEMI, - [83113] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 8, - anon_sym_COMMA, + [106300] = 8, + ACTIONS(2962), 1, anon_sym_as, + ACTIONS(2964), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, + ACTIONS(2966), 1, anon_sym_and, + ACTIONS(2968), 1, anon_sym_or, - [83127] = 9, - ACTIONS(3), 1, + ACTIONS(2974), 1, + anon_sym_COMMA, + STATE(2013), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2594), 1, + sym_line_continuation, + ACTIONS(2771), 2, + sym__newline, + anon_sym_SEMI, + [106327] = 9, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2598), 1, + ACTIONS(2994), 1, anon_sym_COLON, - ACTIONS(2602), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2664), 1, + ACTIONS(3032), 1, anon_sym_COMMA, - ACTIONS(2666), 1, + ACTIONS(3034), 1, anon_sym_RBRACK, - STATE(1840), 1, + STATE(2241), 1, aux_sym_subscript_repeat1, - [83155] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(2670), 1, - anon_sym_COMMA, - STATE(1764), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2668), 2, - sym__newline, - anon_sym_SEMI, - [83181] = 5, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2371), 1, + sym_line_continuation, + [106356] = 8, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2381), 1, - anon_sym_and, - ACTIONS(2383), 1, - anon_sym_or, - ACTIONS(2639), 5, - anon_sym_COMMA, + ACTIONS(2964), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [83201] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2547), 1, + ACTIONS(2968), 1, anon_sym_or, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(2674), 1, + ACTIONS(3038), 1, anon_sym_COMMA, - STATE(1765), 1, + STATE(2049), 1, aux_sym_print_statement_repeat1, - ACTIONS(2672), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3036), 2, sym__newline, anon_sym_SEMI, - [83227] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + [106383] = 8, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2635), 1, + ACTIONS(2964), 1, anon_sym_if, - ACTIONS(2676), 1, - anon_sym_COMMA, - ACTIONS(2678), 1, - anon_sym_COLON, - STATE(1692), 1, - aux_sym_case_clause_repeat1, - STATE(2072), 1, - sym_if_clause, - [83255] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2547), 1, + ACTIONS(2968), 1, anon_sym_or, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(2682), 1, + ACTIONS(3042), 1, anon_sym_COMMA, - STATE(1759), 1, + STATE(2039), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2680), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3040), 2, sym__newline, anon_sym_SEMI, - [83281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2419), 1, + [106410] = 5, + ACTIONS(2461), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2853), 1, anon_sym_or, - ACTIONS(2639), 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2459), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [83301] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2570), 1, + [106431] = 9, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2572), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2578), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2994), 1, + anon_sym_COLON, + ACTIONS(2998), 1, + anon_sym_and, + ACTIONS(3000), 1, + anon_sym_or, + ACTIONS(3044), 1, anon_sym_COMMA, - [83323] = 3, - ACTIONS(3), 1, + ACTIONS(3046), 1, + anon_sym_RBRACK, + STATE(2169), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1779), 1, + sym_line_continuation, + [106460] = 4, + ACTIONS(2465), 1, anon_sym_as, - ACTIONS(1761), 7, - anon_sym_RPAREN, + ACTIONS(2851), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2463), 6, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_and, - anon_sym_or, - [83339] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, + anon_sym_RBRACK, anon_sym_or, - ACTIONS(2568), 1, - anon_sym_COMMA, - ACTIONS(2570), 1, + [106479] = 6, + ACTIONS(2843), 1, anon_sym_as, - ACTIONS(2572), 1, + ACTIONS(2845), 1, anon_sym_if, - STATE(1707), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2684), 2, - sym__newline, - anon_sym_SEMI, - [83365] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_as, - ACTIONS(2399), 1, + ACTIONS(2851), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2853), 1, anon_sym_or, - ACTIONS(2639), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [83385] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2580), 1, - anon_sym_as, - ACTIONS(2553), 7, + sym_line_continuation, + ACTIONS(2467), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, + [106502] = 8, + ACTIONS(2962), 1, + anon_sym_as, + ACTIONS(2964), 1, + anon_sym_if, + ACTIONS(2966), 1, anon_sym_and, + ACTIONS(2968), 1, anon_sym_or, - [83401] = 5, - ACTIONS(3), 1, + ACTIONS(2974), 1, + anon_sym_COMMA, + STATE(2013), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + ACTIONS(3048), 2, + sym__newline, + anon_sym_SEMI, + [106529] = 6, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2399), 1, + ACTIONS(2817), 1, + anon_sym_if, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2639), 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2467), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [83421] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1196), 1, - anon_sym_except_STAR, - ACTIONS(1204), 1, - anon_sym_except, - ACTIONS(2641), 1, - anon_sym_finally, - STATE(779), 1, - sym_finally_clause, - STATE(351), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(378), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [83445] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2427), 1, - anon_sym_and, - ACTIONS(2555), 1, + [106552] = 5, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2549), 6, + ACTIONS(2823), 1, + anon_sym_and, + ACTIONS(2825), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2984), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - anon_sym_or, - [83463] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, + [106573] = 9, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2393), 1, - anon_sym_if, - ACTIONS(2399), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2576), 4, - anon_sym_RPAREN, + ACTIONS(3028), 1, + anon_sym_if, + ACTIONS(3050), 1, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [83485] = 5, - ACTIONS(3), 1, + ACTIONS(3052), 1, + anon_sym_COLON, + STATE(1986), 1, + aux_sym_case_clause_repeat1, + STATE(2449), 1, + sym_if_clause, + ACTIONS(3), 2, sym_comment, - ACTIONS(2419), 1, + sym_line_continuation, + [106602] = 9, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2992), 1, + anon_sym_if, + ACTIONS(2994), 1, + anon_sym_COLON, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2639), 5, + ACTIONS(3054), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3056), 1, anon_sym_RBRACK, - [83505] = 8, - ACTIONS(3), 1, + STATE(2098), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2570), 1, + sym_line_continuation, + [106631] = 8, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2572), 1, + ACTIONS(2964), 1, anon_sym_if, - ACTIONS(2670), 1, + ACTIONS(2966), 1, + anon_sym_and, + ACTIONS(2968), 1, + anon_sym_or, + ACTIONS(2974), 1, anon_sym_COMMA, - STATE(1749), 1, + STATE(2013), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2686), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3058), 2, sym__newline, anon_sym_SEMI, - [83531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2555), 1, + [106658] = 5, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2549), 7, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2984), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [83547] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2419), 1, + anon_sym_RBRACE, + [106679] = 6, + ACTIONS(2815), 1, anon_sym_as, - ACTIONS(2427), 1, + ACTIONS(2817), 1, + anon_sym_if, + ACTIONS(2823), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2825), 1, anon_sym_or, - ACTIONS(2639), 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2436), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [83567] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + [106702] = 9, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2598), 1, + ACTIONS(2994), 1, anon_sym_COLON, - ACTIONS(2602), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2688), 1, + ACTIONS(3060), 1, anon_sym_COMMA, - ACTIONS(2690), 1, + ACTIONS(3062), 1, anon_sym_RBRACK, - STATE(1843), 1, + STATE(2184), 1, aux_sym_subscript_repeat1, - [83595] = 5, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2427), 1, + sym_line_continuation, + [106731] = 9, + ACTIONS(2990), 1, + anon_sym_as, + ACTIONS(2992), 1, + anon_sym_if, + ACTIONS(2994), 1, + anon_sym_COLON, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2692), 1, - anon_sym_as, - ACTIONS(2535), 5, + ACTIONS(3064), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3066), 1, anon_sym_RBRACK, - [83615] = 3, - ACTIONS(3), 1, + STATE(2153), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2584), 1, + sym_line_continuation, + [106760] = 8, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2582), 7, - anon_sym_COMMA, + ACTIONS(2964), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + ACTIONS(2966), 1, anon_sym_and, + ACTIONS(2968), 1, anon_sym_or, - [83631] = 6, - ACTIONS(3), 1, + ACTIONS(3042), 1, + anon_sym_COMMA, + STATE(2047), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(2695), 3, + sym_line_continuation, + ACTIONS(3068), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, - [83652] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + [106787] = 9, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2697), 1, - anon_sym_COMMA, - ACTIONS(2699), 1, + ACTIONS(2994), 1, anon_sym_COLON, - STATE(1777), 1, - aux_sym_match_statement_repeat1, - [83677] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2547), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2570), 1, + ACTIONS(3070), 1, + anon_sym_COMMA, + ACTIONS(3072), 1, + anon_sym_RBRACK, + STATE(2185), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106816] = 9, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2572), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2701), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(2994), 1, + anon_sym_COLON, + ACTIONS(2998), 1, + anon_sym_and, + ACTIONS(3000), 1, + anon_sym_or, + ACTIONS(3074), 1, anon_sym_COMMA, - [83698] = 5, - ACTIONS(3), 1, + ACTIONS(3076), 1, + anon_sym_RBRACK, + STATE(2205), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106845] = 7, + ACTIONS(1344), 1, + anon_sym_except, + ACTIONS(1354), 1, + anon_sym_except_STAR, + ACTIONS(3008), 1, + anon_sym_finally, + STATE(850), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(485), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(491), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [106870] = 7, + ACTIONS(1362), 1, + anon_sym_except, + ACTIONS(1366), 1, + anon_sym_except_STAR, + ACTIONS(2986), 1, + anon_sym_finally, + STATE(833), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(630), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(641), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [106895] = 7, + ACTIONS(59), 1, + anon_sym_AT, + ACTIONS(3078), 1, + anon_sym_async, + ACTIONS(3080), 1, + anon_sym_def, + ACTIONS(3082), 1, + anon_sym_class, + ACTIONS(3), 2, sym_comment, - ACTIONS(2391), 1, + sym_line_continuation, + STATE(837), 2, + sym_function_definition, + sym_class_definition, + STATE(1961), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [106920] = 5, + ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2399), 1, + ACTIONS(2805), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2807), 1, anon_sym_or, - ACTIONS(2703), 4, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2984), 5, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [83717] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + anon_sym_RBRACE, + [106941] = 9, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2994), 1, + anon_sym_COLON, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2705), 1, - anon_sym_COLON, - ACTIONS(1234), 2, + ACTIONS(3084), 1, anon_sym_COMMA, + ACTIONS(3086), 1, anon_sym_RBRACK, - [83740] = 6, - ACTIONS(3), 1, + STATE(2126), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106970] = 4, + ACTIONS(3088), 1, + anon_sym_and, + ACTIONS(3090), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2707), 1, + sym_line_continuation, + ACTIONS(2459), 5, anon_sym_RPAREN, - ACTIONS(2709), 1, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - ACTIONS(2712), 1, - anon_sym_async, - ACTIONS(2715), 1, - anon_sym_for, - STATE(1564), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [83761] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - sym_identifier, - ACTIONS(2720), 1, - anon_sym_DOT, - ACTIONS(2722), 1, - anon_sym___future__, - STATE(1751), 1, - aux_sym_import_prefix_repeat1, - STATE(1832), 1, - sym_import_prefix, - STATE(2108), 2, - sym_relative_import, - sym_dotted_name, - [83784] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, + anon_sym_EQ, + [106988] = 6, + ACTIONS(2847), 1, anon_sym_async, - ACTIONS(2397), 1, + ACTIONS(2849), 1, anon_sym_for, - ACTIONS(2724), 1, - anon_sym_RPAREN, - ACTIONS(2726), 1, + ACTIONS(3092), 1, anon_sym_if, - STATE(1605), 3, + ACTIONS(3094), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1878), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [83805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + [107010] = 6, + ACTIONS(2962), 1, anon_sym_as, + ACTIONS(2964), 1, anon_sym_if, - anon_sym_EQ, + ACTIONS(2966), 1, anon_sym_and, + ACTIONS(2968), 1, anon_sym_or, - [83818] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(2728), 3, + sym_line_continuation, + ACTIONS(3096), 3, sym__newline, anon_sym_SEMI, - anon_sym_EQ, - [83839] = 8, - ACTIONS(3), 1, + anon_sym_COMMA, + [107032] = 5, + ACTIONS(2795), 1, + anon_sym_as, + ACTIONS(2805), 1, + anon_sym_and, + ACTIONS(2807), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2377), 1, + sym_line_continuation, + ACTIONS(3098), 4, + anon_sym_if, anon_sym_async, - ACTIONS(2379), 1, anon_sym_for, - ACTIONS(2730), 1, - anon_sym_COMMA, - ACTIONS(2732), 1, anon_sym_RBRACE, - STATE(1610), 1, - sym_for_in_clause, - STATE(1821), 1, - aux_sym_dictionary_repeat1, - STATE(2134), 1, - sym__comprehension_clauses, - [83864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2553), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + [107052] = 6, + ACTIONS(2962), 1, anon_sym_as, + ACTIONS(2964), 1, anon_sym_if, + ACTIONS(2966), 1, + anon_sym_and, + ACTIONS(2968), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3100), 3, + sym__newline, + anon_sym_SEMI, anon_sym_EQ, + [107074] = 5, + ACTIONS(2998), 1, anon_sym_and, + ACTIONS(3000), 1, anon_sym_or, - [83877] = 2, - ACTIONS(3), 1, + ACTIONS(3102), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(2582), 7, - anon_sym_RPAREN, + sym_line_continuation, + ACTIONS(2452), 4, anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [107094] = 6, + ACTIONS(2990), 1, anon_sym_as, + ACTIONS(2992), 1, anon_sym_if, - anon_sym_EQ, + ACTIONS(2998), 1, anon_sym_and, + ACTIONS(3000), 1, anon_sym_or, - [83890] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2377), 1, + sym_line_continuation, + ACTIONS(2436), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [107116] = 8, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2734), 1, + ACTIONS(3105), 1, anon_sym_COMMA, - ACTIONS(2736), 1, + ACTIONS(3107), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1867), 1, + STATE(2178), 1, aux_sym_dictionary_repeat1, - STATE(2092), 1, + STATE(2373), 1, sym__comprehension_clauses, - [83915] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(2738), 1, - anon_sym_COMMA, - ACTIONS(2740), 1, - anon_sym_COLON, - STATE(1781), 1, - aux_sym_assert_statement_repeat1, - [83940] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2707), 1, - anon_sym_RBRACE, - ACTIONS(2742), 1, - anon_sym_if, - ACTIONS(2745), 1, - anon_sym_async, - ACTIONS(2748), 1, - anon_sym_for, - STATE(1574), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [83961] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_as, - ACTIONS(2381), 1, - anon_sym_and, - ACTIONS(2383), 1, - anon_sym_or, - ACTIONS(2703), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [83980] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + sym_line_continuation, + [107142] = 8, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2540), 3, + ACTIONS(3109), 1, anon_sym_COMMA, + ACTIONS(3111), 1, anon_sym_COLON, - anon_sym_RBRACK, - [84001] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2751), 1, - sym_identifier, - ACTIONS(2753), 1, - anon_sym_LPAREN, - ACTIONS(2755), 1, - anon_sym_STAR, - STATE(1711), 1, - sym_dotted_name, - STATE(1745), 1, - sym_aliased_import, - STATE(1998), 1, - sym_wildcard_import, - STATE(2008), 1, - sym__import_list, - [84026] = 6, - ACTIONS(2472), 1, + STATE(2194), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2757), 1, - anon_sym_LBRACE2, - ACTIONS(2762), 1, - sym__not_escape_sequence, - ACTIONS(2765), 1, - sym__string_end, - STATE(1578), 1, - aux_sym_string_content_repeat1, - ACTIONS(2759), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [84047] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [107168] = 3, + ACTIONS(2998), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, - ACTIONS(2582), 7, + sym_line_continuation, + ACTIONS(2463), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_and, anon_sym_or, - [84060] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, + [107184] = 3, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2604), 1, - anon_sym_or, - ACTIONS(2767), 1, - anon_sym_as, - ACTIONS(2535), 4, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [84079] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2602), 1, - anon_sym_and, - ACTIONS(2604), 1, - anon_sym_or, - ACTIONS(2551), 5, + sym_line_continuation, + ACTIONS(2463), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [84096] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2549), 7, - anon_sym_COMMA, + anon_sym_EQ, + anon_sym_or, + [107200] = 8, + ACTIONS(2668), 1, anon_sym_as, + ACTIONS(2670), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(2672), 1, anon_sym_and, + ACTIONS(2674), 1, anon_sym_or, - [84109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, - anon_sym_and, - ACTIONS(2549), 6, + ACTIONS(3109), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3113), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_or, - [84124] = 6, - ACTIONS(3), 1, + STATE(2194), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2377), 1, + sym_line_continuation, + [107226] = 8, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2770), 1, - anon_sym_if, - ACTIONS(2772), 1, + ACTIONS(3115), 1, + anon_sym_COMMA, + ACTIONS(3117), 1, anon_sym_RBRACE, - STATE(1574), 3, + STATE(1902), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [84145] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, - anon_sym_as, - ACTIONS(2776), 1, - anon_sym_if, - ACTIONS(2778), 1, - anon_sym_and, - ACTIONS(2780), 1, - anon_sym_or, - ACTIONS(2540), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [84166] = 8, - ACTIONS(3), 1, + STATE(2218), 1, + aux_sym_dictionary_repeat1, + STATE(2350), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(2409), 1, + sym_line_continuation, + [107252] = 8, + ACTIONS(2811), 1, anon_sym_RPAREN, - ACTIONS(2411), 1, + ACTIONS(2813), 1, anon_sym_COMMA, - ACTIONS(2774), 1, - anon_sym_as, - ACTIONS(2776), 1, - anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(3090), 1, anon_sym_or, - STATE(1836), 1, - aux_sym_argument_list_repeat1, - [84191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2553), 7, - anon_sym_COMMA, + ACTIONS(3119), 1, anon_sym_as, + ACTIONS(3121), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [84204] = 6, + STATE(2085), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107278] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 1, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3123), 1, + anon_sym_LBRACE, + ACTIONS(3128), 1, + sym__not_escape_sequence, + ACTIONS(3131), 1, + sym_string_end, + STATE(1864), 1, + aux_sym_string_content_repeat1, + ACTIONS(3125), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [107302] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(3121), 1, anon_sym_if, - ACTIONS(2728), 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2424), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [84225] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2778), 1, + [107324] = 6, + ACTIONS(2962), 1, + anon_sym_as, + ACTIONS(2964), 1, + anon_sym_if, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(2968), 1, anon_sym_or, - ACTIONS(2782), 1, - anon_sym_as, - ACTIONS(2535), 4, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3133), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, + [107346] = 6, + ACTIONS(2819), 1, + anon_sym_async, + ACTIONS(2821), 1, + anon_sym_for, + ACTIONS(3094), 1, + anon_sym_RPAREN, + ACTIONS(3135), 1, anon_sym_if, - anon_sym_EQ, - [84244] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2377), 1, + sym_line_continuation, + STATE(1869), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [107368] = 8, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2785), 1, + ACTIONS(3137), 1, anon_sym_COMMA, - ACTIONS(2787), 1, + ACTIONS(3139), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1884), 1, + STATE(2166), 1, aux_sym_dictionary_repeat1, - STATE(2069), 1, + STATE(2384), 1, sym__comprehension_clauses, - [84269] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2778), 1, - anon_sym_and, - ACTIONS(2780), 1, - anon_sym_or, - ACTIONS(2551), 5, + sym_line_continuation, + [107394] = 6, + ACTIONS(3141), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - [84286] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2707), 1, - anon_sym_RBRACK, - ACTIONS(2789), 1, + ACTIONS(3143), 1, anon_sym_if, - ACTIONS(2792), 1, + ACTIONS(3146), 1, anon_sym_async, - ACTIONS(2795), 1, + ACTIONS(3149), 1, anon_sym_for, - STATE(1592), 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1869), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [84307] = 5, - ACTIONS(3), 1, + [107416] = 7, + ACTIONS(3152), 1, + sym_identifier, + ACTIONS(3154), 1, + anon_sym_DOT, + ACTIONS(3156), 1, + anon_sym___future__, + STATE(2055), 1, + aux_sym_import_prefix_repeat1, + STATE(2120), 1, + sym_import_prefix, + ACTIONS(3), 2, sym_comment, - ACTIONS(2419), 1, - anon_sym_as, - ACTIONS(2427), 1, + sym_line_continuation, + STATE(2448), 2, + sym_relative_import, + sym_dotted_name, + [107440] = 5, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2703), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [84326] = 2, - ACTIONS(3), 1, + ACTIONS(3158), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(2549), 7, + sym_line_continuation, + ACTIONS(2452), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_EQ, + [107460] = 5, + ACTIONS(2843), 1, + anon_sym_as, + ACTIONS(2851), 1, anon_sym_and, + ACTIONS(2853), 1, anon_sym_or, - [84339] = 7, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2594), 1, + sym_line_continuation, + ACTIONS(3098), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [107480] = 8, + ACTIONS(2920), 1, + anon_sym_RBRACK, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(2602), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2798), 2, + ACTIONS(3161), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [84362] = 8, - ACTIONS(3), 1, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2492), 1, - anon_sym_RPAREN, - ACTIONS(2774), 1, + sym_line_continuation, + [107506] = 8, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2800), 1, + ACTIONS(3109), 1, anon_sym_COMMA, - STATE(1819), 1, + ACTIONS(3163), 1, + anon_sym_COLON, + STATE(2194), 1, aux_sym_assert_statement_repeat1, - [84387] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2778), 1, - anon_sym_and, - ACTIONS(2549), 6, - anon_sym_RPAREN, + sym_line_continuation, + [107532] = 8, + ACTIONS(2801), 1, + anon_sym_async, + ACTIONS(2803), 1, + anon_sym_for, + ACTIONS(3165), 1, anon_sym_COMMA, + ACTIONS(3167), 1, + anon_sym_RBRACE, + STATE(1902), 1, + sym_for_in_clause, + STATE(2223), 1, + aux_sym_dictionary_repeat1, + STATE(2416), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107558] = 8, + ACTIONS(2668), 1, anon_sym_as, + ACTIONS(2670), 1, anon_sym_if, - anon_sym_EQ, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, anon_sym_or, - [84402] = 2, - ACTIONS(3), 1, + ACTIONS(3169), 1, + anon_sym_COMMA, + ACTIONS(3171), 1, + anon_sym_COLON, + STATE(2070), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107584] = 4, + ACTIONS(2998), 1, + anon_sym_and, + ACTIONS(3000), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(1761), 7, + sym_line_continuation, + ACTIONS(2459), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, + [107602] = 6, + ACTIONS(3141), 1, + anon_sym_RBRACK, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3176), 1, + anon_sym_async, + ACTIONS(3179), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1878), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [107624] = 8, + ACTIONS(2920), 1, + anon_sym_RPAREN, + ACTIONS(3088), 1, anon_sym_and, + ACTIONS(3090), 1, anon_sym_or, - [84415] = 6, - ACTIONS(3), 1, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_if, + ACTIONS(3182), 1, + anon_sym_COMMA, + STATE(2093), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2423), 1, + sym_line_continuation, + [107650] = 8, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2425), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2724), 1, - anon_sym_RBRACK, - ACTIONS(2802), 1, - anon_sym_if, - STATE(1615), 3, + ACTIONS(3184), 1, + anon_sym_COMMA, + ACTIONS(3186), 1, + anon_sym_RBRACE, + STATE(1902), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [84436] = 6, - ACTIONS(3), 1, + STATE(2132), 1, + aux_sym_dictionary_repeat1, + STATE(2422), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107676] = 8, + ACTIONS(3188), 1, + sym_identifier, + ACTIONS(3190), 1, + anon_sym_LPAREN, + ACTIONS(3192), 1, + anon_sym_STAR, + STATE(1990), 1, + sym_dotted_name, + STATE(2054), 1, + sym_aliased_import, + STATE(2304), 1, + sym__import_list, + STATE(2306), 1, + sym_wildcard_import, + ACTIONS(3), 2, sym_comment, - ACTIONS(2594), 1, + sym_line_continuation, + [107702] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2562), 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3100), 3, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - [84457] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, + anon_sym_EQ, + [107724] = 8, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2728), 3, - anon_sym_RPAREN, + ACTIONS(3109), 1, anon_sym_COMMA, - anon_sym_EQ, - [84478] = 6, - ACTIONS(3), 1, + ACTIONS(3194), 1, + anon_sym_COLON, + STATE(2194), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2774), 1, + sym_line_continuation, + [107750] = 6, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(2998), 1, + anon_sym_and, + ACTIONS(3000), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2467), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [107772] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2576), 3, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2467), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [84499] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 1, + [107794] = 8, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2804), 1, + ACTIONS(3196), 1, anon_sym_COMMA, - ACTIONS(2806), 1, + ACTIONS(3198), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1938), 1, + STATE(2106), 1, aux_sym_dictionary_repeat1, - STATE(2140), 1, + STATE(2469), 1, sym__comprehension_clauses, - [84524] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, + sym_line_continuation, + [107820] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(3121), 1, anon_sym_if, - ACTIONS(2738), 1, - anon_sym_COMMA, - ACTIONS(2808), 1, - anon_sym_COLON, - STATE(1781), 1, - aux_sym_assert_statement_repeat1, - [84549] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2395), 1, - anon_sym_async, - ACTIONS(2397), 1, - anon_sym_for, - ACTIONS(2726), 1, - anon_sym_if, - ACTIONS(2772), 1, + sym_line_continuation, + ACTIONS(2436), 3, anon_sym_RPAREN, - STATE(1564), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [84570] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 1, - anon_sym_async, - ACTIONS(2379), 1, - anon_sym_for, - ACTIONS(2810), 1, anon_sym_COMMA, - ACTIONS(2812), 1, - anon_sym_RBRACE, - STATE(1610), 1, - sym_for_in_clause, - STATE(1896), 1, - aux_sym_dictionary_repeat1, - STATE(2065), 1, - sym__comprehension_clauses, - [84595] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2492), 1, - anon_sym_RBRACK, - ACTIONS(2594), 1, + anon_sym_EQ, + [107842] = 8, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2814), 1, + ACTIONS(3200), 1, anon_sym_COMMA, - STATE(1798), 1, - aux_sym_assert_statement_repeat1, - [84620] = 8, + ACTIONS(3202), 1, + anon_sym_COLON, + STATE(2121), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107868] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 1, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3204), 1, + anon_sym_LBRACE, + ACTIONS(3208), 1, + sym__not_escape_sequence, + ACTIONS(3210), 1, + sym_string_end, + STATE(1864), 1, + aux_sym_string_content_repeat1, + ACTIONS(3206), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [107892] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(3121), 1, anon_sym_if, - ACTIONS(2738), 1, - anon_sym_COMMA, - ACTIONS(2816), 1, - anon_sym_COLON, - STATE(1781), 1, - aux_sym_assert_statement_repeat1, - [84645] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2774), 1, + sym_line_continuation, + ACTIONS(3100), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [107914] = 7, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2562), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [84666] = 6, - ACTIONS(3), 1, + ACTIONS(3212), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(2377), 1, + sym_line_continuation, + ACTIONS(1316), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107938] = 8, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2724), 1, + ACTIONS(3214), 1, + anon_sym_COMMA, + ACTIONS(3216), 1, anon_sym_RBRACE, - ACTIONS(2770), 1, + STATE(1902), 1, + sym_for_in_clause, + STATE(2268), 1, + aux_sym_dictionary_repeat1, + STATE(2508), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107964] = 6, + ACTIONS(2819), 1, + anon_sym_async, + ACTIONS(2821), 1, + anon_sym_for, + ACTIONS(3135), 1, anon_sym_if, - STATE(1584), 3, + ACTIONS(3218), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1867), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [84687] = 6, - ACTIONS(3), 1, + [107986] = 5, + ACTIONS(2815), 1, + anon_sym_as, + ACTIONS(2823), 1, + anon_sym_and, + ACTIONS(2825), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2594), 1, + sym_line_continuation, + ACTIONS(3098), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [108006] = 7, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2994), 1, + anon_sym_COLON, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2576), 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3220), 2, anon_sym_COMMA, - anon_sym_COLON, anon_sym_RBRACK, - [84708] = 6, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2818), 1, - anon_sym_LBRACE2, - ACTIONS(2822), 1, - sym__not_escape_sequence, - ACTIONS(2824), 1, - sym__string_end, - STATE(1578), 1, - aux_sym_string_content_repeat1, - ACTIONS(2820), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [84729] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 1, + [108030] = 7, + ACTIONS(1270), 1, anon_sym_COLON, - ACTIONS(2594), 1, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(1160), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [84752] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(2738), 1, + sym_line_continuation, + ACTIONS(1268), 2, anon_sym_COMMA, - ACTIONS(2826), 1, - anon_sym_COLON, - STATE(1781), 1, - aux_sym_assert_statement_repeat1, - [84777] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2423), 1, + anon_sym_RBRACK, + [108054] = 6, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2425), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2772), 1, - anon_sym_RBRACK, - ACTIONS(2802), 1, + ACTIONS(3094), 1, + anon_sym_RBRACE, + ACTIONS(3222), 1, anon_sym_if, - STATE(1592), 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1901), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [84798] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, + [108076] = 6, + ACTIONS(2847), 1, + anon_sym_async, + ACTIONS(2849), 1, + anon_sym_for, + ACTIONS(3092), 1, anon_sym_if, - ACTIONS(2828), 1, - anon_sym_COMMA, - ACTIONS(2830), 1, - anon_sym_COLON, - STATE(1911), 1, - aux_sym_match_statement_repeat1, - [84823] = 8, - ACTIONS(3), 1, + ACTIONS(3218), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(2377), 1, + sym_line_continuation, + STATE(1851), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [108098] = 8, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2832), 1, + ACTIONS(3224), 1, anon_sym_COMMA, - ACTIONS(2834), 1, + ACTIONS(3226), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1902), 1, sym_for_in_clause, - STATE(1953), 1, + STATE(2078), 1, aux_sym_dictionary_repeat1, - STATE(2158), 1, + STATE(2520), 1, sym__comprehension_clauses, - [84848] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2377), 1, - anon_sym_async, - ACTIONS(2379), 1, - anon_sym_for, - ACTIONS(2836), 1, + sym_line_continuation, + [108124] = 6, + ACTIONS(2990), 1, + anon_sym_as, + ACTIONS(2992), 1, + anon_sym_if, + ACTIONS(2998), 1, + anon_sym_and, + ACTIONS(3000), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2424), 3, anon_sym_COMMA, - ACTIONS(2838), 1, + anon_sym_COLON, + anon_sym_RBRACK, + [108146] = 6, + ACTIONS(3141), 1, anon_sym_RBRACE, - STATE(1610), 1, - sym_for_in_clause, - STATE(1780), 1, - aux_sym_dictionary_repeat1, - STATE(2192), 1, - sym__comprehension_clauses, - [84873] = 8, - ACTIONS(3), 1, + ACTIONS(3228), 1, + anon_sym_if, + ACTIONS(3231), 1, + anon_sym_async, + ACTIONS(3234), 1, + anon_sym_for, + ACTIONS(3), 2, sym_comment, - ACTIONS(2377), 1, + sym_line_continuation, + STATE(1901), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [108168] = 6, + ACTIONS(2801), 1, anon_sym_async, - ACTIONS(2379), 1, + ACTIONS(2803), 1, anon_sym_for, - ACTIONS(2840), 1, - anon_sym_COMMA, - ACTIONS(2842), 1, + ACTIONS(3218), 1, anon_sym_RBRACE, - STATE(1610), 1, - sym_for_in_clause, - STATE(1914), 1, - aux_sym_dictionary_repeat1, - STATE(2055), 1, - sym__comprehension_clauses, - [84898] = 4, - ACTIONS(3), 1, + ACTIONS(3222), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, - ACTIONS(2846), 1, - anon_sym_DOT, - STATE(1674), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(2844), 4, - sym__newline, - anon_sym_SEMI, + sym_line_continuation, + STATE(1897), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [108190] = 4, + ACTIONS(3237), 1, anon_sym_COMMA, - anon_sym_as, - [84914] = 6, - ACTIONS(3), 1, + STATE(1909), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2488), 1, - anon_sym_as, - ACTIONS(2490), 1, + sym_line_continuation, + ACTIONS(3239), 4, anon_sym_if, - ACTIONS(2494), 1, - anon_sym_and, - ACTIONS(2496), 1, - anon_sym_or, - ACTIONS(2620), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [84934] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, - anon_sym_as, - ACTIONS(2776), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108207] = 7, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2848), 2, - anon_sym_RPAREN, + ACTIONS(3241), 1, anon_sym_COMMA, - [84954] = 3, - ACTIONS(2472), 1, + ACTIONS(3243), 1, + anon_sym_as, + ACTIONS(3245), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108230] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 2, - anon_sym_LBRACE2, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3247), 2, + anon_sym_LBRACE, sym__not_escape_sequence, - ACTIONS(2852), 4, + ACTIONS(3249), 4, sym__string_content, - sym__string_end, + sym_string_end, sym__escape_interpolation, sym_escape_sequence, - [84968] = 6, - ACTIONS(3), 1, + [108247] = 4, + ACTIONS(3251), 1, + anon_sym_COMMA, + STATE(1929), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2774), 1, - anon_sym_as, - ACTIONS(2776), 1, + sym_line_continuation, + ACTIONS(3253), 4, anon_sym_if, - ACTIONS(2778), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108264] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2854), 2, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 2, anon_sym_RPAREN, anon_sym_COMMA, - [84988] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2856), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2858), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [85002] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + [108285] = 6, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2964), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(2968), 1, anon_sym_or, - ACTIONS(1222), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [85022] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2860), 1, + sym_line_continuation, + ACTIONS(3257), 2, + sym__newline, + anon_sym_SEMI, + [108306] = 4, + ACTIONS(3259), 1, anon_sym_COMMA, - STATE(1677), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(1034), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [85038] = 6, - ACTIONS(3), 1, + STATE(1929), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2774), 1, + sym_line_continuation, + ACTIONS(3261), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108323] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2862), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [85058] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2864), 1, + sym_line_continuation, + ACTIONS(2976), 2, + anon_sym_COMMA, + anon_sym_COLON, + [108344] = 4, + ACTIONS(3263), 1, anon_sym_COMMA, - STATE(1684), 1, + STATE(1906), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2866), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3265), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [85074] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, - anon_sym_and, - ACTIONS(2547), 1, - anon_sym_or, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(2868), 2, - sym__newline, - anon_sym_SEMI, - [85094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, + [108361] = 4, + ACTIONS(3269), 1, anon_sym_COMMA, - STATE(1680), 1, + STATE(1912), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2870), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3267), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [85110] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + [108378] = 7, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2874), 2, - anon_sym_COMMA, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3098), 1, anon_sym_COLON, - [85130] = 4, - ACTIONS(3), 1, + ACTIONS(3272), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, - ACTIONS(2878), 1, + sym_line_continuation, + [108401] = 4, + ACTIONS(3274), 1, anon_sym_COMMA, - STATE(1633), 1, + STATE(1914), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2876), 4, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3267), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [85146] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2881), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2883), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [85160] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - anon_sym_as, - ACTIONS(2596), 1, - anon_sym_if, - ACTIONS(2602), 1, + anon_sym_RBRACE, + [108418] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2885), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [85180] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2887), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2889), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [85194] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2891), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2893), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [85208] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(3121), 1, anon_sym_if, - ACTIONS(2778), 1, - anon_sym_and, - ACTIONS(2780), 1, - anon_sym_or, - ACTIONS(2895), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 2, anon_sym_RPAREN, anon_sym_COMMA, - [85228] = 4, - ACTIONS(3), 1, + [108439] = 4, + ACTIONS(3281), 1, + anon_sym_DOT, + STATE(1916), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2897), 1, + sym_line_continuation, + ACTIONS(3279), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1639), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2876), 4, + anon_sym_as, + [108456] = 6, + ACTIONS(2962), 1, + anon_sym_as, + ACTIONS(2964), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [85244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, + ACTIONS(2966), 1, anon_sym_and, - ACTIONS(2547), 1, + ACTIONS(2968), 1, anon_sym_or, - ACTIONS(2570), 1, - anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(2560), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3284), 2, sym__newline, anon_sym_SEMI, - [85264] = 4, - ACTIONS(3), 1, + [108477] = 5, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2900), 1, + sym_line_continuation, + ACTIONS(3286), 3, anon_sym_COMMA, - STATE(1649), 1, + anon_sym_if, + anon_sym_COLON, + [108496] = 4, + ACTIONS(3288), 1, + anon_sym_COMMA, + STATE(1914), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2902), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3253), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [85280] = 6, - ACTIONS(3), 1, + [108513] = 6, + ACTIONS(2990), 1, + anon_sym_as, + ACTIONS(2992), 1, + anon_sym_if, + ACTIONS(2998), 1, + anon_sym_and, + ACTIONS(3000), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, + sym_line_continuation, + ACTIONS(3290), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [108534] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(3121), 1, anon_sym_if, - ACTIONS(2904), 2, - anon_sym_COMMA, - anon_sym_COLON, - [85300] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2906), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2908), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [85314] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2488), 1, + sym_line_continuation, + ACTIONS(3292), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [108555] = 6, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2490), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2494), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2496), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2910), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1318), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [85334] = 4, - ACTIONS(3), 1, + anon_sym_RBRACK, + [108576] = 6, + ACTIONS(3088), 1, + anon_sym_and, + ACTIONS(3090), 1, + anon_sym_or, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, - ACTIONS(2912), 1, + sym_line_continuation, + ACTIONS(3290), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1684), 1, + [108597] = 4, + ACTIONS(3294), 1, + anon_sym_COMMA, + STATE(1914), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2914), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3261), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [85350] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [108614] = 4, + ACTIONS(3296), 1, + anon_sym_COMMA, + STATE(1925), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2916), 1, + sym_line_continuation, + ACTIONS(2976), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108631] = 4, + ACTIONS(3299), 1, anon_sym_COMMA, - STATE(1629), 1, + STATE(1919), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2902), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3265), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [85366] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, + anon_sym_RBRACE, + [108648] = 6, + ACTIONS(3088), 1, + anon_sym_and, + ACTIONS(3090), 1, + anon_sym_or, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(3121), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3301), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [108669] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2918), 2, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 2, anon_sym_RPAREN, anon_sym_COMMA, - [85386] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2920), 1, + [108690] = 4, + ACTIONS(3305), 1, anon_sym_COMMA, - STATE(1633), 1, + STATE(1929), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2866), 4, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3267), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [85402] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, + anon_sym_RBRACK, + [108707] = 4, + ACTIONS(3308), 1, anon_sym_COMMA, - STATE(1639), 1, + STATE(1924), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2866), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3239), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [85418] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2924), 1, + [108724] = 4, + ACTIONS(3310), 1, anon_sym_COMMA, - STATE(1639), 1, + STATE(1942), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2914), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3239), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [85434] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, + [108741] = 6, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2885), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [85454] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2774), 1, - anon_sym_as, - ACTIONS(2776), 1, - anon_sym_if, - ACTIONS(2778), 1, - anon_sym_and, - ACTIONS(2780), 1, - anon_sym_or, - ACTIONS(2926), 2, - anon_sym_RPAREN, + sym_line_continuation, + ACTIONS(3312), 2, anon_sym_COMMA, - [85474] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2928), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2930), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [85488] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + anon_sym_RBRACK, + [108762] = 6, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2932), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2976), 2, anon_sym_COMMA, anon_sym_RBRACK, - [85508] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, + [108783] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2904), 2, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 2, anon_sym_COMMA, - [85528] = 3, - ACTIONS(2472), 1, + anon_sym_COLON, + [108804] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 2, - anon_sym_LBRACE2, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3314), 2, + anon_sym_LBRACE, sym__not_escape_sequence, - ACTIONS(2936), 4, + ACTIONS(3316), 4, sym__string_content, - sym__string_end, + sym_string_end, sym__escape_interpolation, sym_escape_sequence, - [85542] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + [108821] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2578), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3318), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [85562] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + [108842] = 4, + ACTIONS(3320), 1, + anon_sym_COMMA, + STATE(1944), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2594), 1, + sym_line_continuation, + ACTIONS(892), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108859] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2560), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [85582] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + sym_line_continuation, + ACTIONS(3322), 2, + anon_sym_COMMA, + anon_sym_COLON, + [108880] = 6, + ACTIONS(2916), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2918), 1, anon_sym_if, - ACTIONS(2918), 2, + ACTIONS(2922), 1, + anon_sym_and, + ACTIONS(2924), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3301), 2, anon_sym_COMMA, - anon_sym_COLON, - [85602] = 3, - ACTIONS(2472), 1, + anon_sym_RBRACE, + [108901] = 4, + ACTIONS(3324), 1, + anon_sym_COMMA, + STATE(1925), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2938), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2940), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [85616] = 4, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(1130), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108918] = 4, + ACTIONS(3328), 1, + anon_sym_DOT, + STATE(1916), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2942), 1, + sym_line_continuation, + ACTIONS(3326), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1650), 1, + anon_sym_as, + [108935] = 4, + ACTIONS(3330), 1, + anon_sym_COMMA, + STATE(1912), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2870), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3261), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [85632] = 6, - ACTIONS(3), 1, + [108952] = 4, + ACTIONS(3332), 1, + anon_sym_COMMA, + STATE(1912), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2488), 1, - anon_sym_as, - ACTIONS(2490), 1, + sym_line_continuation, + ACTIONS(3253), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(2494), 1, - anon_sym_and, - ACTIONS(2496), 1, - anon_sym_or, - ACTIONS(2895), 2, + anon_sym_async, + anon_sym_for, + [108969] = 4, + ACTIONS(3334), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [85652] = 4, - ACTIONS(3), 1, + STATE(1944), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2944), 1, + sym_line_continuation, + ACTIONS(2679), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108986] = 4, + ACTIONS(3337), 1, anon_sym_COMMA, - STATE(1645), 1, + STATE(1943), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2870), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3265), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [85668] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + [109003] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2631), 1, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, anon_sym_if, - ACTIONS(2946), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3322), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2948), 1, + [109024] = 6, + ACTIONS(3088), 1, + anon_sym_and, + ACTIONS(3090), 1, + anon_sym_or, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2950), 1, - anon_sym_COLON, - [85690] = 6, - ACTIONS(3), 1, + ACTIONS(3121), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, - ACTIONS(2545), 1, + sym_line_continuation, + ACTIONS(3339), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [109045] = 4, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2547), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2570), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2459), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [109062] = 6, + ACTIONS(2962), 1, anon_sym_as, - ACTIONS(2572), 1, + ACTIONS(2964), 1, anon_sym_if, - ACTIONS(2952), 2, + ACTIONS(2966), 1, + anon_sym_and, + ACTIONS(2968), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2960), 2, sym__newline, anon_sym_SEMI, - [85710] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, + [109083] = 6, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(2998), 1, + anon_sym_and, + ACTIONS(3000), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1316), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [109104] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2560), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [85730] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(3121), 1, anon_sym_if, - ACTIONS(2778), 1, - anon_sym_and, - ACTIONS(2780), 1, - anon_sym_or, - ACTIONS(2578), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3341), 2, anon_sym_RPAREN, anon_sym_COMMA, - [85750] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, + [109125] = 6, + ACTIONS(2916), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(2918), 1, anon_sym_if, - ACTIONS(2778), 1, + ACTIONS(2922), 1, anon_sym_and, - ACTIONS(2780), 1, + ACTIONS(2924), 1, anon_sym_or, - ACTIONS(2910), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [85770] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2954), 1, + sym_line_continuation, + ACTIONS(3339), 2, anon_sym_COMMA, - STATE(1648), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2902), 4, - anon_sym_RPAREN, + anon_sym_RBRACE, + [109146] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [85786] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(2578), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3341), 2, anon_sym_COMMA, anon_sym_COLON, - [85806] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + [109167] = 6, + ACTIONS(2990), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2992), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2998), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(3000), 1, anon_sym_or, - ACTIONS(2895), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2960), 2, anon_sym_COMMA, anon_sym_RBRACK, - [85826] = 7, + [109188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(2703), 1, - anon_sym_COLON, - ACTIONS(2956), 1, - anon_sym_else, - [85848] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3343), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3345), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [109205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 1, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3347), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3349), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [109222] = 7, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(2948), 1, + ACTIONS(3243), 1, anon_sym_as, - ACTIONS(2958), 1, + ACTIONS(3351), 1, anon_sym_COMMA, - ACTIONS(2960), 1, + ACTIONS(3353), 1, anon_sym_COLON, - [85870] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2846), 1, + sym_line_continuation, + [109245] = 4, + ACTIONS(3328), 1, anon_sym_DOT, - STATE(1683), 1, + STATE(1941), 1, aux_sym_dotted_name_repeat1, - ACTIONS(2962), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3355), 4, sym__newline, anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - [85886] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + [109262] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2551), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [85902] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2490), 1, + ACTIONS(3121), 1, anon_sym_if, - ACTIONS(2494), 1, - anon_sym_and, - ACTIONS(2496), 1, - anon_sym_or, - ACTIONS(2885), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [85922] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2964), 1, + sym_line_continuation, + ACTIONS(2960), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1677), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2578), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [85938] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2967), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2969), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [85952] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + [109283] = 6, + ACTIONS(2916), 1, anon_sym_as, - ACTIONS(2596), 1, + ACTIONS(2918), 1, anon_sym_if, - ACTIONS(2602), 1, + ACTIONS(2922), 1, anon_sym_and, - ACTIONS(2604), 1, + ACTIONS(2924), 1, anon_sym_or, - ACTIONS(1234), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [85972] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2971), 1, + sym_line_continuation, + ACTIONS(3290), 2, anon_sym_COMMA, - STATE(1633), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2914), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [85988] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 1, + anon_sym_RBRACE, + [109304] = 4, + ACTIONS(3359), 1, anon_sym_AT, - STATE(1681), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1961), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - ACTIONS(2973), 3, + ACTIONS(3357), 3, anon_sym_async, anon_sym_def, anon_sym_class, - [86004] = 6, - ACTIONS(3), 1, + [109321] = 6, + ACTIONS(2990), 1, + anon_sym_as, + ACTIONS(2992), 1, + anon_sym_if, + ACTIONS(2998), 1, + anon_sym_and, + ACTIONS(3000), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, + sym_line_continuation, + ACTIONS(3301), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [109342] = 6, + ACTIONS(3088), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(3090), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(3121), 1, anon_sym_if, - ACTIONS(2862), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2976), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [86024] = 4, + [109363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_DOT, - STATE(1683), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(2978), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [86040] = 4, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3362), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3364), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [109380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_COMMA, - STATE(1684), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2876), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [86056] = 5, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3366), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3368), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [109397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3370), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3372), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [109414] = 6, + ACTIONS(2916), 1, anon_sym_as, - ACTIONS(2986), 3, - anon_sym_COMMA, + ACTIONS(2918), 1, anon_sym_if, - anon_sym_COLON, - [86074] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + ACTIONS(2922), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2924), 1, anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(2988), 1, - anon_sym_COLON, - [86093] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [109435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 1, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3374), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3376), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [109452] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3378), 5, anon_sym_COMMA, - STATE(1687), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [109464] = 4, + ACTIONS(3380), 1, + anon_sym_COMMA, + STATE(1970), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2578), 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2976), 3, sym__newline, anon_sym_SEMI, anon_sym_from, - [86108] = 2, - ACTIONS(3), 1, + [109480] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2993), 5, + sym_line_continuation, + ACTIONS(3383), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [86119] = 6, - ACTIONS(3), 1, + [109492] = 6, + ACTIONS(3385), 1, + anon_sym_LBRACE, + ACTIONS(3387), 1, + anon_sym_RBRACE, + ACTIONS(3389), 1, + aux_sym_format_specifier_token1, + STATE(1998), 1, + aux_sym_format_specifier_repeat1, + STATE(2151), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + sym_line_continuation, + [109512] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2995), 1, - anon_sym_else, - [86138] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(2997), 1, + ACTIONS(3391), 1, anon_sym_else, - [86157] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2978), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COMMA, + sym_line_continuation, + [109532] = 6, + ACTIONS(2668), 1, anon_sym_as, - [86168] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2999), 1, - anon_sym_COMMA, - ACTIONS(3001), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(3003), 1, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3393), 1, anon_sym_COLON, - STATE(1743), 1, - aux_sym_case_clause_repeat1, - STATE(2115), 1, - sym_if_clause, - [86187] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3001), 1, - anon_sym_if, - ACTIONS(3005), 1, + sym_line_continuation, + [109552] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2920), 5, anon_sym_COMMA, - ACTIONS(3007), 1, anon_sym_COLON, - STATE(1743), 1, - aux_sym_case_clause_repeat1, - STATE(2095), 1, - sym_if_clause, - [86206] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109564] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3395), 1, anon_sym_COLON, - [86225] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3011), 1, - anon_sym_DOT, - STATE(1725), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(2844), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + sym_line_continuation, + [109584] = 6, + ACTIONS(2668), 1, anon_sym_as, - [86240] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3397), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109604] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(3013), 1, - anon_sym_COLON, - [86259] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3399), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109624] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(3015), 1, - anon_sym_COLON, - [86278] = 6, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(3017), 1, - anon_sym_RBRACE, - ACTIONS(3019), 1, - anon_sym_LBRACE2, - ACTIONS(3021), 1, - aux_sym_format_specifier_token1, - STATE(1717), 1, - aux_sym_format_specifier_repeat1, - STATE(1791), 1, - sym_interpolation, - [86297] = 6, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(3019), 1, - anon_sym_LBRACE2, - ACTIONS(3023), 1, - anon_sym_RBRACE, - ACTIONS(3025), 1, - aux_sym_format_specifier_token1, - STATE(1698), 1, - aux_sym_format_specifier_repeat1, - STATE(1791), 1, - sym_interpolation, - [86316] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(3027), 1, - anon_sym_COLON, - [86335] = 2, - ACTIONS(3), 1, + ACTIONS(3401), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109644] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2492), 5, + sym_line_continuation, + ACTIONS(1403), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [86346] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + [109656] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3403), 1, anon_sym_else, - [86365] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3031), 1, + sym_line_continuation, + [109676] = 4, + ACTIONS(3405), 1, anon_sym_DOT, - STATE(1703), 1, + STATE(1993), 1, aux_sym_dotted_name_repeat1, - ACTIONS(2978), 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3355), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [86380] = 6, - ACTIONS(3), 1, + [109692] = 6, + ACTIONS(3385), 1, + anon_sym_LBRACE, + ACTIONS(3407), 1, + anon_sym_RBRACE, + ACTIONS(3409), 1, + aux_sym_format_specifier_token1, + STATE(1972), 1, + aux_sym_format_specifier_repeat1, + STATE(2151), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, - ACTIONS(3001), 1, + sym_line_continuation, + [109712] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(3034), 1, - anon_sym_COMMA, - ACTIONS(3036), 1, - anon_sym_COLON, - STATE(1743), 1, - aux_sym_case_clause_repeat1, - STATE(2157), 1, - sym_if_clause, - [86399] = 6, - ACTIONS(3), 1, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3411), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, - ACTIONS(3001), 1, + sym_line_continuation, + [109732] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(3038), 1, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3413), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109752] = 6, + ACTIONS(3415), 1, anon_sym_COMMA, - ACTIONS(3040), 1, + ACTIONS(3417), 1, + anon_sym_if, + ACTIONS(3419), 1, anon_sym_COLON, - STATE(1743), 1, + STATE(2060), 1, aux_sym_case_clause_repeat1, - STATE(2159), 1, + STATE(2455), 1, sym_if_clause, - [86418] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2751), 1, - sym_identifier, - STATE(1767), 1, - sym_dotted_name, - STATE(1895), 1, - sym_aliased_import, - ACTIONS(3042), 2, - sym__newline, - anon_sym_SEMI, - [86435] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3044), 1, - anon_sym_COMMA, - STATE(1687), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(1034), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [86450] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3046), 1, - anon_sym_COLON, - ACTIONS(3048), 1, - anon_sym_EQ, - ACTIONS(3050), 1, - anon_sym_RBRACE, - ACTIONS(3052), 1, - sym_type_conversion, - STATE(2061), 1, - sym_format_specifier, - [86469] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [109772] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2876), 5, + sym_line_continuation, + ACTIONS(3383), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [86480] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + [109784] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(3054), 1, - anon_sym_as, - ACTIONS(3056), 1, + ACTIONS(3421), 1, anon_sym_COLON, - [86499] = 5, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3060), 1, + sym_line_continuation, + [109804] = 6, + ACTIONS(3423), 1, + anon_sym_COLON, + ACTIONS(3425), 1, + anon_sym_EQ, + ACTIONS(3427), 1, + anon_sym_RBRACE, + ACTIONS(3429), 1, + sym_type_conversion, + STATE(2407), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109824] = 5, + ACTIONS(3433), 1, anon_sym_COMMA, - ACTIONS(3062), 1, + ACTIONS(3435), 1, anon_sym_as, - STATE(1761), 1, + STATE(2032), 1, aux_sym__import_list_repeat1, - ACTIONS(3058), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3431), 2, sym__newline, anon_sym_SEMI, - [86516] = 2, - ACTIONS(3), 1, + [109842] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3437), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, - ACTIONS(3064), 5, + sym_line_continuation, + [109862] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3267), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [86527] = 5, - ACTIONS(3), 1, + [109874] = 4, + ACTIONS(3405), 1, + anon_sym_DOT, + STATE(2014), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2751), 1, - sym_identifier, - STATE(1767), 1, - sym_dotted_name, - STATE(1895), 1, - sym_aliased_import, - ACTIONS(3066), 2, - sym__newline, - anon_sym_SEMI, - [86544] = 6, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(3326), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [109890] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3439), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, + sym_line_continuation, + [109910] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3441), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109930] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(3068), 1, - anon_sym_COLON, - [86563] = 4, - ACTIONS(3), 1, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3443), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, + sym_line_continuation, + [109950] = 6, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2551), 3, + ACTIONS(3445), 1, anon_sym_as, - anon_sym_if, + ACTIONS(3447), 1, anon_sym_COLON, - [86578] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2751), 1, - sym_identifier, - ACTIONS(3070), 1, - anon_sym_LPAREN, - STATE(1711), 1, - sym_dotted_name, - STATE(1745), 1, - sym_aliased_import, - STATE(2026), 1, - sym__import_list, - [86597] = 6, - ACTIONS(2472), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3072), 1, + sym_line_continuation, + [109970] = 6, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3452), 1, anon_sym_RBRACE, - ACTIONS(3074), 1, - anon_sym_LBRACE2, - ACTIONS(3077), 1, + ACTIONS(3454), 1, aux_sym_format_specifier_token1, - STATE(1717), 1, + STATE(1998), 1, aux_sym_format_specifier_repeat1, - STATE(1791), 1, + STATE(2151), 1, sym_interpolation, - [86616] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, sym_comment, - ACTIONS(2751), 1, - sym_identifier, - STATE(1767), 1, - sym_dotted_name, - STATE(1895), 1, - sym_aliased_import, - ACTIONS(3042), 2, - sym__newline, - anon_sym_SEMI, - [86633] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [109990] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3457), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110010] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110030] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2708), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [110042] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3064), 5, + sym_line_continuation, + ACTIONS(3378), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + [110054] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3461), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110074] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2679), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - [86644] = 6, - ACTIONS(3), 1, + sym_type_conversion, + [110086] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + sym_line_continuation, + ACTIONS(2710), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [110098] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2703), 1, - anon_sym_COLON, - [86663] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3463), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110118] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(3080), 1, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3465), 1, anon_sym_COLON, - [86682] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110138] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2993), 5, + sym_line_continuation, + ACTIONS(3378), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [86693] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE, + [110150] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3467), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, - ACTIONS(3064), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + sym_line_continuation, + [110170] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [86704] = 6, - ACTIONS(3), 1, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3469), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, + sym_line_continuation, + [110190] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3471), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110210] = 6, + ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2631), 1, + ACTIONS(2670), 1, anon_sym_if, - ACTIONS(3082), 1, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3473), 1, anon_sym_COLON, - [86723] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110230] = 4, + ACTIONS(3475), 1, + anon_sym_COMMA, + STATE(1970), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3011), 1, + sym_line_continuation, + ACTIONS(1130), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [110246] = 4, + ACTIONS(3477), 1, anon_sym_DOT, - STATE(1703), 1, + STATE(2014), 1, aux_sym_dotted_name_repeat1, - ACTIONS(2962), 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3279), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [86738] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(3084), 1, + [110262] = 6, + ACTIONS(3423), 1, anon_sym_COLON, - [86757] = 2, - ACTIONS(3), 1, + ACTIONS(3480), 1, + anon_sym_EQ, + ACTIONS(3482), 1, + anon_sym_RBRACE, + ACTIONS(3484), 1, + sym_type_conversion, + STATE(2499), 1, + sym_format_specifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(2876), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [86768] = 6, - ACTIONS(3), 1, + sym_line_continuation, + [110282] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, + sym_line_continuation, + ACTIONS(3279), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(2956), 1, - anon_sym_else, - [86787] = 2, - ACTIONS(3), 1, + [110294] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2993), 5, + sym_line_continuation, + ACTIONS(3267), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [86798] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + [110306] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(3054), 1, - anon_sym_as, - ACTIONS(3086), 1, + ACTIONS(3486), 1, anon_sym_COLON, - [86817] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(3088), 1, - anon_sym_else, - [86836] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [110326] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2876), 5, + sym_line_continuation, + ACTIONS(3383), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [86847] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, + [110338] = 4, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2629), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2459), 3, anon_sym_as, - ACTIONS(2631), 1, anon_sym_if, - ACTIONS(3090), 1, - anon_sym_else, - [86866] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 1, anon_sym_COLON, - ACTIONS(3092), 1, - anon_sym_EQ, - ACTIONS(3094), 1, - anon_sym_RBRACE, - ACTIONS(3096), 1, - sym_type_conversion, - STATE(2096), 1, - sym_format_specifier, - [86885] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, + [110354] = 6, + ACTIONS(3417), 1, anon_sym_if, - ACTIONS(3098), 1, - anon_sym_else, - [86904] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2676), 1, + ACTIONS(3488), 1, anon_sym_COMMA, - ACTIONS(2678), 1, + ACTIONS(3490), 1, anon_sym_COLON, - ACTIONS(3001), 1, - anon_sym_if, - STATE(1693), 1, + STATE(2060), 1, aux_sym_case_clause_repeat1, - STATE(2072), 1, + STATE(2374), 1, sym_if_clause, - [86923] = 6, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2606), 1, - anon_sym_and, - ACTIONS(2608), 1, - anon_sym_or, - ACTIONS(2629), 1, - anon_sym_as, - ACTIONS(2631), 1, - anon_sym_if, - ACTIONS(3100), 1, - anon_sym_else, - [86942] = 6, - ACTIONS(3), 1, + sym_line_continuation, + [110374] = 5, + ACTIONS(3188), 1, + sym_identifier, + STATE(2046), 1, + sym_dotted_name, + STATE(2248), 1, + sym_aliased_import, + ACTIONS(3), 2, sym_comment, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2637), 1, - anon_sym_COLON, - ACTIONS(3001), 1, - anon_sym_if, - STATE(1704), 1, - aux_sym_case_clause_repeat1, - STATE(2150), 1, - sym_if_clause, - [86961] = 6, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(3492), 2, + sym__newline, + anon_sym_SEMI, + [110392] = 6, + ACTIONS(3188), 1, + sym_identifier, + ACTIONS(3494), 1, + anon_sym_LPAREN, + STATE(1990), 1, + sym_dotted_name, + STATE(2054), 1, + sym_aliased_import, + STATE(2300), 1, + sym__import_list, + ACTIONS(3), 2, sym_comment, - ACTIONS(2545), 1, + sym_line_continuation, + [110412] = 6, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, anon_sym_and, - ACTIONS(2547), 1, + ACTIONS(2674), 1, anon_sym_or, - ACTIONS(2570), 1, + ACTIONS(3445), 1, anon_sym_as, - ACTIONS(2572), 1, - anon_sym_if, - ACTIONS(3102), 1, - sym__newline, - [86980] = 2, - ACTIONS(3), 1, + ACTIONS(3496), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3104), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [86990] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [110432] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3108), 1, + sym_line_continuation, + ACTIONS(3267), 5, anon_sym_COMMA, - STATE(1757), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3106), 2, - sym__newline, - anon_sym_SEMI, - [87004] = 4, - ACTIONS(3), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [110444] = 5, + ACTIONS(3188), 1, + sym_identifier, + STATE(2046), 1, + sym_dotted_name, + STATE(2248), 1, + sym_aliased_import, + ACTIONS(3), 2, sym_comment, - ACTIONS(3112), 1, - anon_sym_COMMA, - STATE(1742), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3110), 2, + sym_line_continuation, + ACTIONS(3492), 2, sym__newline, anon_sym_SEMI, - [87018] = 4, - ACTIONS(3), 1, + [110462] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, + anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3272), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, - ACTIONS(3115), 1, - anon_sym_COMMA, - STATE(1743), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3118), 2, + sym_line_continuation, + [110482] = 6, + ACTIONS(2668), 1, + anon_sym_as, + ACTIONS(2670), 1, anon_sym_if, + ACTIONS(2672), 1, + anon_sym_and, + ACTIONS(2674), 1, + anon_sym_or, + ACTIONS(3098), 1, anon_sym_COLON, - [87032] = 5, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110502] = 6, + ACTIONS(2962), 1, + anon_sym_as, + ACTIONS(2964), 1, + anon_sym_if, + ACTIONS(2966), 1, + anon_sym_and, + ACTIONS(2968), 1, + anon_sym_or, + ACTIONS(3498), 1, + sym__newline, + ACTIONS(3), 2, sym_comment, - ACTIONS(3120), 1, + sym_line_continuation, + [110522] = 5, + ACTIONS(3188), 1, sym_identifier, - STATE(1753), 1, + STATE(2046), 1, sym_dotted_name, - STATE(1924), 1, + STATE(2248), 1, sym_aliased_import, - STATE(2127), 1, - sym__import_list, - [87048] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3060), 1, - anon_sym_COMMA, - STATE(1762), 1, - aux_sym__import_list_repeat1, - ACTIONS(3058), 2, + sym_line_continuation, + ACTIONS(3500), 2, sym__newline, anon_sym_SEMI, - [87062] = 5, - ACTIONS(3), 1, + [110540] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3042), 1, + sym_line_continuation, + ACTIONS(3279), 4, + anon_sym_DOT, anon_sym_RPAREN, - ACTIONS(3120), 1, - sym_identifier, - STATE(1939), 1, - sym_dotted_name, - STATE(2003), 1, - sym_aliased_import, - [87078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3124), 1, anon_sym_COMMA, - STATE(1766), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3122), 2, + anon_sym_as, + [110551] = 4, + ACTIONS(3504), 1, + anon_sym_COMMA, + STATE(2037), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3502), 2, sym__newline, anon_sym_SEMI, - [87092] = 4, - ACTIONS(3), 1, + [110566] = 4, + ACTIONS(3508), 1, + anon_sym_DOT, + STATE(2033), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3108), 1, + sym_line_continuation, + ACTIONS(3506), 2, + anon_sym_import, + sym_identifier, + [110581] = 4, + ACTIONS(3513), 1, anon_sym_COMMA, - STATE(1758), 1, + STATE(2040), 1, aux_sym_global_statement_repeat1, - ACTIONS(3126), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3511), 2, sym__newline, anon_sym_SEMI, - [87106] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2670), 1, + [110596] = 4, + ACTIONS(3513), 1, anon_sym_COMMA, - STATE(1687), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3128), 2, + STATE(2041), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3515), 2, sym__newline, anon_sym_SEMI, - [87120] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 1, - sym_identifier, - STATE(1753), 1, - sym_dotted_name, - STATE(1924), 1, - sym_aliased_import, - STATE(2180), 1, - sym__import_list, - [87136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3132), 1, - anon_sym_DOT, - STATE(1756), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(3130), 2, - anon_sym_import, - sym_identifier, - [87150] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3042), 1, - anon_sym_RPAREN, - ACTIONS(3120), 1, - sym_identifier, - STATE(1939), 1, - sym_dotted_name, - STATE(2003), 1, - sym_aliased_import, - [87166] = 5, - ACTIONS(3), 1, + [110611] = 4, + ACTIONS(3519), 1, + anon_sym_COMMA, + STATE(2036), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3058), 1, - anon_sym_RPAREN, - ACTIONS(3134), 1, + sym_line_continuation, + ACTIONS(3517), 2, + sym__newline, + anon_sym_SEMI, + [110626] = 4, + ACTIONS(3524), 1, anon_sym_COMMA, - ACTIONS(3136), 1, - anon_sym_as, - STATE(1858), 1, + STATE(2037), 1, aux_sym__import_list_repeat1, - [87182] = 5, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3046), 1, - anon_sym_COLON, - ACTIONS(3138), 1, - anon_sym_RBRACE, - ACTIONS(3140), 1, - sym_type_conversion, - STATE(2186), 1, - sym_format_specifier, - [87198] = 4, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(3522), 2, + sym__newline, + anon_sym_SEMI, + [110641] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3144), 1, - anon_sym_COLON, - ACTIONS(3146), 1, - anon_sym_EQ, - ACTIONS(3142), 2, - anon_sym_RPAREN, + sym_line_continuation, + ACTIONS(3527), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [110652] = 4, + ACTIONS(3042), 1, anon_sym_COMMA, - [87212] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3150), 1, - anon_sym_DOT, - STATE(1756), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(3148), 2, - anon_sym_import, - sym_identifier, - [87226] = 4, - ACTIONS(3), 1, + STATE(1970), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3108), 1, + sym_line_continuation, + ACTIONS(3529), 2, + sym__newline, + anon_sym_SEMI, + [110667] = 4, + ACTIONS(3513), 1, anon_sym_COMMA, - STATE(1769), 1, + STATE(2052), 1, aux_sym_global_statement_repeat1, - ACTIONS(3153), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3531), 2, sym__newline, anon_sym_SEMI, - [87240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3108), 1, + [110682] = 4, + ACTIONS(3513), 1, anon_sym_COMMA, - STATE(1769), 1, + STATE(2052), 1, aux_sym_global_statement_repeat1, - ACTIONS(3155), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3533), 2, sym__newline, anon_sym_SEMI, - [87254] = 4, - ACTIONS(3), 1, + [110697] = 5, + ACTIONS(3500), 1, + anon_sym_RPAREN, + ACTIONS(3535), 1, + sym_identifier, + STATE(2206), 1, + sym_dotted_name, + STATE(2316), 1, + sym_aliased_import, + ACTIONS(3), 2, sym_comment, - ACTIONS(3157), 1, + sym_line_continuation, + [110714] = 4, + ACTIONS(3537), 1, anon_sym_COMMA, - STATE(1687), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(1230), 2, + STATE(2037), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3502), 2, sym__newline, anon_sym_SEMI, - [87268] = 5, - ACTIONS(3), 1, + [110729] = 5, + ACTIONS(3492), 1, + anon_sym_RPAREN, + ACTIONS(3535), 1, + sym_identifier, + STATE(2206), 1, + sym_dotted_name, + STATE(2316), 1, + sym_aliased_import, + ACTIONS(3), 2, sym_comment, - ACTIONS(2751), 1, + sym_line_continuation, + [110746] = 5, + ACTIONS(3535), 1, sym_identifier, - STATE(1711), 1, + STATE(2056), 1, sym_dotted_name, - STATE(1745), 1, + STATE(2264), 1, sym_aliased_import, - STATE(2015), 1, + STATE(2444), 1, sym__import_list, - [87284] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3161), 1, - anon_sym_COMMA, - STATE(1763), 1, - aux_sym__import_list_repeat1, - ACTIONS(3159), 2, + sym_line_continuation, + [110763] = 3, + ACTIONS(3435), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3539), 3, sym__newline, anon_sym_SEMI, - [87298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, anon_sym_COMMA, - STATE(1763), 1, - aux_sym__import_list_repeat1, - ACTIONS(3159), 2, + [110776] = 4, + ACTIONS(3042), 1, + anon_sym_COMMA, + STATE(1970), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3541), 2, sym__newline, anon_sym_SEMI, - [87312] = 4, - ACTIONS(3), 1, + [110791] = 5, + ACTIONS(3535), 1, + sym_identifier, + STATE(2056), 1, + sym_dotted_name, + STATE(2264), 1, + sym_aliased_import, + STATE(2446), 1, + sym__import_list, + ACTIONS(3), 2, sym_comment, - ACTIONS(3167), 1, + sym_line_continuation, + [110808] = 4, + ACTIONS(3545), 1, anon_sym_COMMA, - STATE(1763), 1, - aux_sym__import_list_repeat1, - ACTIONS(3165), 2, + STATE(2036), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3543), 2, sym__newline, anon_sym_SEMI, - [87326] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2670), 1, + [110823] = 4, + ACTIONS(3547), 1, anon_sym_COMMA, - STATE(1687), 1, + STATE(1970), 1, aux_sym_assert_statement_repeat1, - ACTIONS(3170), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1288), 2, sym__newline, anon_sym_SEMI, - [87340] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, + [110838] = 4, + ACTIONS(3551), 1, anon_sym_COMMA, - STATE(1742), 1, + STATE(2036), 1, aux_sym_print_statement_repeat1, - ACTIONS(3172), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3549), 2, sym__newline, anon_sym_SEMI, - [87354] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3178), 1, + [110853] = 4, + ACTIONS(3555), 1, anon_sym_COMMA, - STATE(1742), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3176), 2, + STATE(2052), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3553), 2, sym__newline, anon_sym_SEMI, - [87368] = 3, - ACTIONS(3), 1, + [110868] = 4, + ACTIONS(3560), 1, + anon_sym_COMMA, + STATE(2051), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3062), 1, - anon_sym_as, - ACTIONS(3180), 3, + sym_line_continuation, + ACTIONS(3558), 2, sym__newline, anon_sym_SEMI, + [110883] = 4, + ACTIONS(3433), 1, anon_sym_COMMA, - [87380] = 2, - ACTIONS(3), 1, + STATE(2043), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2978), 4, + sym_line_continuation, + ACTIONS(3431), 2, + sym__newline, + anon_sym_SEMI, + [110898] = 4, + ACTIONS(3564), 1, anon_sym_DOT, + STATE(2033), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3562), 2, + anon_sym_import, + sym_identifier, + [110913] = 5, + ACTIONS(3431), 1, anon_sym_RPAREN, + ACTIONS(3566), 1, anon_sym_COMMA, + ACTIONS(3568), 1, anon_sym_as, - [87390] = 4, - ACTIONS(3), 1, + STATE(2073), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3184), 1, - anon_sym_COMMA, - STATE(1769), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3182), 2, - sym__newline, - anon_sym_SEMI, - [87404] = 5, - ACTIONS(3), 1, + sym_line_continuation, + [110930] = 5, + ACTIONS(3188), 1, + sym_identifier, + STATE(1990), 1, + sym_dotted_name, + STATE(2054), 1, + sym_aliased_import, + STATE(2297), 1, + sym__import_list, + ACTIONS(3), 2, sym_comment, - ACTIONS(3046), 1, + sym_line_continuation, + [110947] = 5, + ACTIONS(3423), 1, anon_sym_COLON, - ACTIONS(3187), 1, + ACTIONS(3570), 1, anon_sym_RBRACE, - ACTIONS(3189), 1, + ACTIONS(3572), 1, sym_type_conversion, - STATE(2102), 1, + STATE(2435), 1, sym_format_specifier, - [87420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3066), 1, - anon_sym_RPAREN, - ACTIONS(3120), 1, - sym_identifier, - STATE(1939), 1, - sym_dotted_name, - STATE(2003), 1, - sym_aliased_import, - [87436] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_SEMI, - ACTIONS(3193), 1, - sym__newline, - STATE(1811), 1, - aux_sym__simple_statements_repeat1, - [87449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3195), 1, - anon_sym_SEMI, - ACTIONS(3197), 1, - sym__newline, - STATE(1960), 1, - aux_sym__simple_statements_repeat1, - [87462] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3199), 1, - anon_sym_COMMA, - ACTIONS(3202), 1, - anon_sym_RBRACE, - STATE(1774), 1, - aux_sym_dictionary_repeat1, - [87475] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [110964] = 4, + ACTIONS(3576), 1, + anon_sym_COLON, + ACTIONS(3578), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2333), 1, + sym_line_continuation, + ACTIONS(3574), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3204), 1, - anon_sym_in, - STATE(1382), 1, - aux_sym__patterns_repeat1, - [87488] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, + [110979] = 4, + ACTIONS(3580), 1, anon_sym_COMMA, - ACTIONS(3206), 1, - anon_sym_in, - STATE(1382), 1, - aux_sym__patterns_repeat1, - [87501] = 4, - ACTIONS(3), 1, + STATE(2060), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3208), 1, - anon_sym_COMMA, - ACTIONS(3210), 1, + sym_line_continuation, + ACTIONS(3583), 2, + anon_sym_if, anon_sym_COLON, - STATE(1830), 1, - aux_sym_match_statement_repeat1, - [87514] = 4, - ACTIONS(3), 1, + [110994] = 5, + ACTIONS(3492), 1, + anon_sym_RPAREN, + ACTIONS(3535), 1, + sym_identifier, + STATE(2206), 1, + sym_dotted_name, + STATE(2316), 1, + sym_aliased_import, + ACTIONS(3), 2, sym_comment, - ACTIONS(2365), 1, + sym_line_continuation, + [111011] = 5, + ACTIONS(3423), 1, anon_sym_COLON, - ACTIONS(3212), 1, - anon_sym_COMMA, - STATE(1783), 1, - aux_sym__parameters_repeat1, - [87527] = 4, - ACTIONS(3), 1, + ACTIONS(3585), 1, + anon_sym_RBRACE, + ACTIONS(3587), 1, + sym_type_conversion, + STATE(2383), 1, + sym_format_specifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(2333), 1, + sym_line_continuation, + [111028] = 4, + ACTIONS(3589), 1, anon_sym_COMMA, - ACTIONS(3214), 1, + ACTIONS(3591), 1, anon_sym_in, - STATE(1382), 1, + STATE(2104), 1, aux_sym__patterns_repeat1, - [87540] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1104), 1, - anon_sym_RBRACE, - ACTIONS(3216), 1, + sym_line_continuation, + [111042] = 4, + ACTIONS(3593), 1, anon_sym_COMMA, - STATE(1774), 1, - aux_sym_dictionary_repeat1, - [87553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1034), 1, + ACTIONS(3595), 1, anon_sym_COLON, - ACTIONS(3218), 1, + STATE(2170), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111056] = 4, + ACTIONS(2811), 1, + anon_sym_RPAREN, + ACTIONS(2813), 1, anon_sym_COMMA, - STATE(1782), 1, - aux_sym_assert_statement_repeat1, - [87566] = 4, - ACTIONS(3), 1, + STATE(2085), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2578), 1, - anon_sym_COLON, - ACTIONS(3220), 1, + sym_line_continuation, + [111070] = 4, + ACTIONS(3326), 1, + anon_sym_import, + ACTIONS(3597), 1, + anon_sym_DOT, + STATE(2215), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111084] = 4, + ACTIONS(3589), 1, anon_sym_COMMA, - STATE(1782), 1, - aux_sym_assert_statement_repeat1, - [87579] = 4, - ACTIONS(3), 1, + ACTIONS(3599), 1, + anon_sym_in, + STATE(2104), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3223), 1, + sym_line_continuation, + [111098] = 4, + ACTIONS(3589), 1, anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_COLON, - STATE(1783), 1, - aux_sym__parameters_repeat1, - [87592] = 3, - ACTIONS(3), 1, + ACTIONS(3601), 1, + anon_sym_in, + STATE(2104), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3230), 1, - anon_sym_EQ, - ACTIONS(3228), 2, + sym_line_continuation, + [111112] = 4, + ACTIONS(3589), 1, + anon_sym_COMMA, + ACTIONS(3603), 1, + anon_sym_in, + STATE(2104), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111126] = 4, + ACTIONS(3605), 1, anon_sym_COMMA, + ACTIONS(3607), 1, anon_sym_COLON, - [87603] = 4, - ACTIONS(3), 1, + STATE(2217), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(948), 1, + sym_line_continuation, + [111140] = 4, + ACTIONS(3609), 1, anon_sym_RPAREN, - ACTIONS(3232), 1, + ACTIONS(3611), 1, anon_sym_COMMA, - STATE(1866), 1, + STATE(2089), 1, aux_sym_argument_list_repeat1, - [87616] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1206), 1, - anon_sym_COLON, - ACTIONS(3234), 1, + sym_line_continuation, + [111154] = 4, + ACTIONS(3502), 1, + anon_sym_RPAREN, + ACTIONS(3613), 1, anon_sym_COMMA, - STATE(1805), 1, - aux_sym_with_clause_repeat1, - [87629] = 4, - ACTIONS(3), 1, + STATE(2198), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(970), 1, + sym_line_continuation, + [111168] = 4, + ACTIONS(3502), 1, anon_sym_RPAREN, - ACTIONS(3236), 1, + ACTIONS(3615), 1, anon_sym_COMMA, - STATE(1866), 1, - aux_sym_argument_list_repeat1, - [87642] = 4, - ACTIONS(3), 1, + STATE(2198), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3238), 1, + sym_line_continuation, + [111182] = 4, + ACTIONS(3617), 1, anon_sym_RPAREN, - ACTIONS(3240), 1, + ACTIONS(3619), 1, anon_sym_COMMA, - STATE(1809), 1, + STATE(2074), 1, aux_sym_with_clause_repeat1, - [87655] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3242), 1, + sym_line_continuation, + [111196] = 4, + ACTIONS(3054), 1, anon_sym_COMMA, - ACTIONS(3244), 1, + ACTIONS(3056), 1, anon_sym_RBRACK, - STATE(1844), 1, + STATE(2105), 1, aux_sym_subscript_repeat1, - [87668] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3246), 1, + sym_line_continuation, + [111210] = 4, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(3248), 1, + ACTIONS(3622), 1, + anon_sym_RPAREN, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111224] = 4, + ACTIONS(1114), 1, anon_sym_RBRACK, - STATE(1844), 1, - aux_sym_subscript_repeat1, - [87681] = 3, - ACTIONS(2472), 1, + ACTIONS(3624), 1, + anon_sym_COMMA, + STATE(2179), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3250), 1, + sym_line_continuation, + [111238] = 4, + ACTIONS(1190), 1, anon_sym_RBRACE, - ACTIONS(3252), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [87692] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2578), 1, - anon_sym_RBRACK, - ACTIONS(3254), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - STATE(1792), 1, - aux_sym_assert_statement_repeat1, - [87705] = 4, - ACTIONS(3), 1, + STATE(2162), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3257), 1, - anon_sym_SEMI, - ACTIONS(3259), 1, - sym__newline, - STATE(1910), 1, - aux_sym__simple_statements_repeat1, - [87718] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [111252] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3261), 1, + sym_line_continuation, + ACTIONS(2710), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [111262] = 4, + ACTIONS(3628), 1, anon_sym_SEMI, - ACTIONS(3264), 1, + ACTIONS(3630), 1, sym__newline, - STATE(1794), 1, + STATE(2099), 1, aux_sym__simple_statements_repeat1, - [87731] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3046), 1, - anon_sym_COLON, - ACTIONS(3266), 1, + sym_line_continuation, + [111276] = 4, + ACTIONS(1868), 1, + anon_sym_RBRACK, + ACTIONS(3632), 1, + anon_sym_COMMA, + STATE(2088), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111290] = 4, + ACTIONS(3255), 1, + anon_sym_RPAREN, + ACTIONS(3634), 1, + anon_sym_COMMA, + STATE(2082), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111304] = 4, + ACTIONS(3301), 1, anon_sym_RBRACE, - STATE(2098), 1, - sym_format_specifier, - [87744] = 3, - ACTIONS(3), 1, + ACTIONS(3637), 1, + anon_sym_COMMA, + STATE(2083), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3270), 1, - anon_sym_EQ, - ACTIONS(3268), 2, - sym__newline, + sym_line_continuation, + [111318] = 4, + ACTIONS(3640), 1, anon_sym_SEMI, - [87755] = 4, - ACTIONS(3), 1, + ACTIONS(3642), 1, + sym__newline, + STATE(2236), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111332] = 4, + ACTIONS(1046), 1, + anon_sym_RPAREN, + ACTIONS(3644), 1, + anon_sym_COMMA, + STATE(2082), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, + sym_line_continuation, + [111346] = 4, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(2441), 1, + ACTIONS(2874), 1, anon_sym_RPAREN, - STATE(1824), 1, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - [87768] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1034), 1, - anon_sym_RBRACK, - ACTIONS(3272), 1, + sym_line_continuation, + [111360] = 4, + ACTIONS(2976), 1, + anon_sym_RPAREN, + ACTIONS(3646), 1, anon_sym_COMMA, - STATE(1792), 1, + STATE(2087), 1, aux_sym_assert_statement_repeat1, - [87781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [87790] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1745), 1, + sym_line_continuation, + [111374] = 4, + ACTIONS(2679), 1, anon_sym_RBRACK, - ACTIONS(3274), 1, + ACTIONS(3649), 1, anon_sym_COMMA, - STATE(1818), 1, + STATE(2088), 1, aux_sym__patterns_repeat1, - [87803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2751), 1, - sym_identifier, - STATE(1767), 1, - sym_dotted_name, - STATE(1895), 1, - sym_aliased_import, - [87816] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2333), 1, + sym_line_continuation, + [111388] = 4, + ACTIONS(1044), 1, + anon_sym_RPAREN, + ACTIONS(3652), 1, anon_sym_COMMA, - ACTIONS(3276), 1, - anon_sym_in, - STATE(1382), 1, - aux_sym__patterns_repeat1, - [87829] = 2, - ACTIONS(3), 1, + STATE(2082), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3182), 3, - sym__newline, - anon_sym_SEMI, + sym_line_continuation, + [111402] = 4, + ACTIONS(3654), 1, anon_sym_COMMA, - [87838] = 2, - ACTIONS(3), 1, + ACTIONS(3657), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111416] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2052), 3, + sym_line_continuation, + ACTIONS(2346), 3, sym__newline, anon_sym_SEMI, anon_sym_in, - [87847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3278), 1, + [111426] = 4, + ACTIONS(1130), 1, + anon_sym_RBRACK, + ACTIONS(3659), 1, anon_sym_COMMA, - ACTIONS(3281), 1, - anon_sym_COLON, - STATE(1805), 1, - aux_sym_with_clause_repeat1, - [87860] = 4, - ACTIONS(3), 1, + STATE(2254), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2333), 1, + sym_line_continuation, + [111440] = 4, + ACTIONS(1130), 1, + anon_sym_RPAREN, + ACTIONS(3661), 1, anon_sym_COMMA, - ACTIONS(3283), 1, - anon_sym_in, - STATE(1382), 1, - aux_sym__patterns_repeat1, - [87873] = 4, - ACTIONS(3), 1, + STATE(2087), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2730), 1, + sym_line_continuation, + [111454] = 3, + ACTIONS(1521), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1519), 2, + anon_sym_except_STAR, + anon_sym_finally, + [111466] = 4, + ACTIONS(3196), 1, anon_sym_COMMA, - ACTIONS(2732), 1, + ACTIONS(3198), 1, anon_sym_RBRACE, - STATE(1821), 1, + STATE(2106), 1, aux_sym_dictionary_repeat1, - [87886] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2333), 1, - anon_sym_COMMA, - ACTIONS(3285), 1, - anon_sym_in, - STATE(1382), 1, - aux_sym__patterns_repeat1, - [87899] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [111480] = 4, + ACTIONS(3663), 1, + anon_sym_SEMI, + ACTIONS(3665), 1, + sym__newline, + STATE(2103), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1218), 1, - anon_sym_RPAREN, - ACTIONS(3287), 1, - anon_sym_COMMA, - STATE(1908), 1, - aux_sym_with_clause_repeat1, - [87912] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [111494] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(1745), 1, + sym_line_continuation, + ACTIONS(1497), 3, anon_sym_RPAREN, - ACTIONS(3289), 1, anon_sym_COMMA, - STATE(1855), 1, - aux_sym__patterns_repeat1, - [87925] = 4, - ACTIONS(3), 1, + anon_sym_EQ, + [111504] = 4, + ACTIONS(3667), 1, + anon_sym_COMMA, + ACTIONS(3669), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(583), 1, + sym_line_continuation, + [111518] = 4, + ACTIONS(577), 1, sym__newline, - ACTIONS(3291), 1, + ACTIONS(3671), 1, anon_sym_SEMI, - STATE(1794), 1, + STATE(2189), 1, aux_sym__simple_statements_repeat1, - [87938] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2885), 1, - anon_sym_RBRACE, - ACTIONS(3293), 1, + sym_line_continuation, + [111532] = 4, + ACTIONS(2837), 1, anon_sym_COMMA, - STATE(1812), 1, + ACTIONS(2839), 1, + anon_sym_RPAREN, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - [87951] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1026), 1, - anon_sym_RBRACK, - ACTIONS(3296), 1, + sym_line_continuation, + [111546] = 4, + ACTIONS(1114), 1, + anon_sym_RBRACE, + ACTIONS(3673), 1, anon_sym_COMMA, - STATE(1917), 1, + STATE(2083), 1, aux_sym__collection_elements_repeat1, - [87964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1385), 1, - anon_sym_except, - ACTIONS(1387), 2, - anon_sym_except_STAR, - anon_sym_finally, - [87975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2578), 1, - anon_sym_RPAREN, - ACTIONS(3298), 1, - anon_sym_COMMA, - STATE(1815), 1, - aux_sym_assert_statement_repeat1, - [87988] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, + sym_line_continuation, + [111560] = 4, + ACTIONS(3184), 1, anon_sym_COMMA, - ACTIONS(3301), 1, - anon_sym_RPAREN, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - [88001] = 4, - ACTIONS(3), 1, + ACTIONS(3186), 1, + anon_sym_RBRACE, + STATE(2132), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(3303), 1, - anon_sym_RPAREN, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - [88014] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [111574] = 4, + ACTIONS(581), 1, + sym__newline, + ACTIONS(3675), 1, + anon_sym_SEMI, + STATE(2189), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2305), 1, - anon_sym_RBRACK, - ACTIONS(3305), 1, + sym_line_continuation, + [111588] = 4, + ACTIONS(892), 1, + anon_sym_in, + ACTIONS(3677), 1, anon_sym_COMMA, - STATE(1818), 1, + STATE(2144), 1, aux_sym__patterns_repeat1, - [88027] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1034), 1, - anon_sym_RPAREN, - ACTIONS(3308), 1, - anon_sym_COMMA, - STATE(1815), 1, - aux_sym_assert_statement_repeat1, - [88040] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2333), 1, + sym_line_continuation, + [111602] = 4, + ACTIONS(3679), 1, anon_sym_COMMA, - ACTIONS(3310), 1, - anon_sym_in, - STATE(1382), 1, - aux_sym__patterns_repeat1, - [88053] = 4, - ACTIONS(3), 1, + ACTIONS(3681), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1106), 1, + sym_line_continuation, + [111616] = 4, + ACTIONS(1194), 1, anon_sym_RBRACE, - ACTIONS(3312), 1, + ACTIONS(3683), 1, anon_sym_COMMA, - STATE(1774), 1, + STATE(2162), 1, aux_sym_dictionary_repeat1, - [88066] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1026), 1, - anon_sym_RBRACE, - ACTIONS(3314), 1, + sym_line_continuation, + [111630] = 4, + ACTIONS(3589), 1, anon_sym_COMMA, - STATE(1812), 1, - aux_sym__collection_elements_repeat1, - [88079] = 4, - ACTIONS(3), 1, + ACTIONS(3685), 1, + anon_sym_in, + STATE(2104), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2333), 1, + sym_line_continuation, + [111644] = 4, + ACTIONS(3589), 1, anon_sym_COMMA, - ACTIONS(3316), 1, + ACTIONS(3687), 1, anon_sym_in, - STATE(1382), 1, + STATE(2104), 1, aux_sym__patterns_repeat1, - [88092] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1026), 1, - anon_sym_RPAREN, - ACTIONS(3318), 1, + sym_line_continuation, + [111658] = 4, + ACTIONS(2837), 1, anon_sym_COMMA, - STATE(1949), 1, + ACTIONS(3689), 1, + anon_sym_RPAREN, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - [88105] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2369), 1, + sym_line_continuation, + [111672] = 4, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(2385), 1, - anon_sym_RBRACE, - STATE(1822), 1, + ACTIONS(3691), 1, + anon_sym_RPAREN, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - [88118] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3320), 1, - anon_sym_LPAREN, - ACTIONS(3322), 1, - anon_sym_COLON, - STATE(2129), 1, - sym_argument_list, - [88131] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [111686] = 3, + ACTIONS(1504), 1, + anon_sym_except, + ACTIONS(3), 2, sym_comment, - ACTIONS(2409), 1, + sym_line_continuation, + ACTIONS(1506), 2, + anon_sym_except_STAR, + anon_sym_finally, + [111698] = 4, + ACTIONS(2886), 1, anon_sym_RPAREN, - ACTIONS(2411), 1, + ACTIONS(2888), 1, anon_sym_COMMA, - STATE(1836), 1, + STATE(2122), 1, aux_sym_argument_list_repeat1, - [88144] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3324), 1, + sym_line_continuation, + [111712] = 4, + ACTIONS(3693), 1, anon_sym_RPAREN, - ACTIONS(3326), 1, + ACTIONS(3695), 1, anon_sym_COMMA, - STATE(1838), 1, + STATE(2124), 1, aux_sym_argument_list_repeat1, - [88157] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2365), 1, - anon_sym_RPAREN, - ACTIONS(3328), 1, + sym_line_continuation, + [111726] = 4, + ACTIONS(2837), 1, anon_sym_COMMA, - STATE(1898), 1, - aux_sym__parameters_repeat1, - [88170] = 4, - ACTIONS(3), 1, + ACTIONS(3697), 1, + anon_sym_RPAREN, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3330), 1, - anon_sym_COMMA, - ACTIONS(3333), 1, + sym_line_continuation, + [111740] = 4, + ACTIONS(1286), 1, anon_sym_COLON, - STATE(1830), 1, - aux_sym_match_statement_repeat1, - [88183] = 4, - ACTIONS(3), 1, + ACTIONS(3699), 1, + anon_sym_COMMA, + STATE(2192), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2664), 1, + sym_line_continuation, + [111754] = 4, + ACTIONS(3084), 1, anon_sym_COMMA, - ACTIONS(2666), 1, + ACTIONS(3086), 1, anon_sym_RBRACK, - STATE(1841), 1, + STATE(2127), 1, aux_sym_subscript_repeat1, - [88196] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2718), 1, + sym_line_continuation, + [111768] = 4, + ACTIONS(3595), 1, + anon_sym_RPAREN, + ACTIONS(3701), 1, + anon_sym_COMMA, + STATE(2160), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111782] = 4, + ACTIONS(1868), 1, + anon_sym_RPAREN, + ACTIONS(3703), 1, + anon_sym_COMMA, + STATE(2240), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111796] = 3, + ACTIONS(3578), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3574), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [111808] = 4, + ACTIONS(3152), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3705), 1, anon_sym_import, - STATE(2107), 1, + STATE(2429), 1, sym_dotted_name, - [88209] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111822] = 4, + ACTIONS(3707), 1, + anon_sym_COMMA, + ACTIONS(3709), 1, + anon_sym_COLON, + STATE(2217), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2431), 1, + sym_line_continuation, + [111836] = 4, + ACTIONS(1070), 1, anon_sym_RPAREN, - ACTIONS(2433), 1, + ACTIONS(3711), 1, anon_sym_COMMA, - STATE(1785), 1, + STATE(2082), 1, aux_sym_argument_list_repeat1, - [88222] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3337), 1, + sym_line_continuation, + [111850] = 4, + ACTIONS(1114), 1, anon_sym_RPAREN, - ACTIONS(3339), 1, + ACTIONS(3713), 1, anon_sym_COMMA, - STATE(1787), 1, + STATE(2221), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111864] = 4, + ACTIONS(1082), 1, + anon_sym_RPAREN, + ACTIONS(3715), 1, + anon_sym_COMMA, + STATE(2082), 1, aux_sym_argument_list_repeat1, - [88235] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, + sym_line_continuation, + [111878] = 4, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(3341), 1, + ACTIONS(2865), 1, anon_sym_RPAREN, - STATE(1824), 1, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - [88248] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(946), 1, + sym_line_continuation, + [111892] = 4, + ACTIONS(3717), 1, + anon_sym_COMMA, + ACTIONS(3719), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111906] = 4, + ACTIONS(3721), 1, + anon_sym_COMMA, + ACTIONS(3723), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111920] = 3, + ACTIONS(3725), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3574), 2, anon_sym_RPAREN, - ACTIONS(3343), 1, anon_sym_COMMA, - STATE(1866), 1, - aux_sym_argument_list_repeat1, - [88261] = 4, - ACTIONS(3), 1, + [111932] = 4, + ACTIONS(3589), 1, + anon_sym_COMMA, + ACTIONS(3727), 1, + anon_sym_in, + STATE(2104), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, + sym_line_continuation, + [111946] = 4, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(3345), 1, + ACTIONS(3729), 1, anon_sym_RPAREN, - STATE(1824), 1, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - [88274] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(950), 1, + sym_line_continuation, + [111960] = 4, + ACTIONS(2837), 1, + anon_sym_COMMA, + ACTIONS(3731), 1, anon_sym_RPAREN, - ACTIONS(3347), 1, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111974] = 4, + ACTIONS(1154), 1, + anon_sym_RBRACE, + ACTIONS(3733), 1, anon_sym_COMMA, - STATE(1866), 1, - aux_sym_argument_list_repeat1, - [88287] = 3, - ACTIONS(3), 1, + STATE(2162), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1372), 1, - anon_sym_except, - ACTIONS(1370), 2, - anon_sym_except_STAR, - anon_sym_finally, - [88298] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [111988] = 4, + ACTIONS(3589), 1, + anon_sym_COMMA, + ACTIONS(3735), 1, + anon_sym_in, + STATE(2104), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3349), 1, + sym_line_continuation, + [112002] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1497), 3, anon_sym_COMMA, - ACTIONS(3351), 1, - anon_sym_RBRACK, - STATE(1844), 1, - aux_sym_subscript_repeat1, - [88311] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_EQ, + [112012] = 4, + ACTIONS(3423), 1, + anon_sym_COLON, + ACTIONS(3737), 1, + anon_sym_RBRACE, + STATE(2496), 1, + sym_format_specifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(3353), 1, + sym_line_continuation, + [112026] = 4, + ACTIONS(2809), 1, + anon_sym_RPAREN, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(3355), 1, - anon_sym_RBRACK, - STATE(1844), 1, - aux_sym_subscript_repeat1, - [88324] = 4, - ACTIONS(3), 1, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3357), 1, + sym_line_continuation, + [112040] = 4, + ACTIONS(599), 1, + sym__newline, + ACTIONS(3739), 1, + anon_sym_SEMI, + STATE(2189), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112054] = 4, + ACTIONS(3188), 1, + sym_identifier, + STATE(2046), 1, + sym_dotted_name, + STATE(2248), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112068] = 4, + ACTIONS(3224), 1, anon_sym_COMMA, - ACTIONS(3359), 1, - anon_sym_RBRACK, - STATE(1844), 1, - aux_sym_subscript_repeat1, - [88337] = 4, - ACTIONS(3), 1, + ACTIONS(3226), 1, + anon_sym_RBRACE, + STATE(2078), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112082] = 4, + ACTIONS(3741), 1, + anon_sym_SEMI, + ACTIONS(3743), 1, + sym__newline, + STATE(2159), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112096] = 4, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_COLON, + STATE(2428), 1, + sym_argument_list, + ACTIONS(3), 2, sym_comment, - ACTIONS(3361), 1, + sym_line_continuation, + [112110] = 4, + ACTIONS(3749), 1, + anon_sym_RPAREN, + ACTIONS(3751), 1, anon_sym_COMMA, - ACTIONS(3363), 1, - anon_sym_RBRACK, - STATE(1844), 1, - aux_sym_subscript_repeat1, - [88350] = 4, - ACTIONS(3), 1, + STATE(2118), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3365), 1, + sym_line_continuation, + [112124] = 3, + ACTIONS(3755), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3753), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3368), 1, - anon_sym_RBRACK, - STATE(1844), 1, - aux_sym_subscript_repeat1, - [88363] = 4, - ACTIONS(3), 1, + [112136] = 4, + ACTIONS(2679), 1, + anon_sym_in, + ACTIONS(3757), 1, + anon_sym_COMMA, + STATE(2144), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(942), 1, + sym_line_continuation, + [112150] = 4, + ACTIONS(2831), 1, anon_sym_RPAREN, - ACTIONS(3370), 1, + ACTIONS(2833), 1, anon_sym_COMMA, - STATE(1866), 1, + STATE(2158), 1, aux_sym_argument_list_repeat1, - [88376] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(944), 1, + sym_line_continuation, + [112164] = 4, + ACTIONS(2837), 1, + anon_sym_COMMA, + ACTIONS(2855), 1, anon_sym_RPAREN, - ACTIONS(3372), 1, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112178] = 4, + ACTIONS(3760), 1, + anon_sym_RPAREN, + ACTIONS(3762), 1, anon_sym_COMMA, - STATE(1866), 1, + STATE(2161), 1, aux_sym_argument_list_repeat1, - [88389] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112192] = 4, + ACTIONS(2988), 1, + anon_sym_COMMA, + ACTIONS(2996), 1, + anon_sym_RBRACK, + STATE(2164), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2385), 1, + sym_line_continuation, + [112206] = 4, + ACTIONS(2835), 1, anon_sym_RPAREN, - ACTIONS(2389), 1, + ACTIONS(2837), 1, anon_sym_COMMA, - STATE(1824), 1, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - [88402] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3046), 1, + sym_line_continuation, + [112220] = 4, + ACTIONS(3423), 1, anon_sym_COLON, - ACTIONS(3374), 1, + ACTIONS(3764), 1, anon_sym_RBRACE, - STATE(2034), 1, + STATE(2382), 1, sym_format_specifier, - [88415] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3376), 1, - anon_sym_COMMA, - ACTIONS(3378), 1, - anon_sym_RBRACK, - STATE(1844), 1, - aux_sym_subscript_repeat1, - [88428] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2688), 1, - anon_sym_COMMA, - ACTIONS(2690), 1, - anon_sym_RBRACK, - STATE(1842), 1, - aux_sym_subscript_repeat1, - [88441] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [112234] = 3, + ACTIONS(3768), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, - ACTIONS(3380), 1, + sym_line_continuation, + ACTIONS(3766), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112246] = 4, + ACTIONS(3770), 1, anon_sym_COMMA, - ACTIONS(3382), 1, + ACTIONS(3772), 1, anon_sym_RBRACK, - STATE(1844), 1, + STATE(2090), 1, aux_sym_subscript_repeat1, - [88454] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2592), 1, + sym_line_continuation, + [112260] = 4, + ACTIONS(3774), 1, anon_sym_COMMA, - ACTIONS(2600), 1, + ACTIONS(3776), 1, anon_sym_RBRACK, - STATE(1790), 1, + STATE(2090), 1, aux_sym_subscript_repeat1, - [88467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2385), 1, - anon_sym_RBRACK, - ACTIONS(2417), 1, - anon_sym_COMMA, - STATE(1813), 1, - aux_sym__collection_elements_repeat1, - [88480] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(968), 1, + sym_line_continuation, + [112274] = 4, + ACTIONS(1074), 1, anon_sym_RPAREN, - ACTIONS(3384), 1, + ACTIONS(3778), 1, anon_sym_COMMA, - STATE(1866), 1, + STATE(2082), 1, aux_sym_argument_list_repeat1, - [88493] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2305), 1, - anon_sym_RPAREN, - ACTIONS(3386), 1, + sym_line_continuation, + [112288] = 4, + ACTIONS(3137), 1, anon_sym_COMMA, - STATE(1855), 1, - aux_sym__patterns_repeat1, - [88506] = 4, - ACTIONS(3), 1, + ACTIONS(3139), 1, + anon_sym_RBRACE, + STATE(2166), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(966), 1, + sym_line_continuation, + [112302] = 4, + ACTIONS(1068), 1, anon_sym_RPAREN, - ACTIONS(3389), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - STATE(1866), 1, + STATE(2082), 1, aux_sym_argument_list_repeat1, - [88519] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2967), 1, - anon_sym_RBRACE, - ACTIONS(2969), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [88530] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3159), 1, - anon_sym_RPAREN, - ACTIONS(3391), 1, + sym_line_continuation, + [112316] = 4, + ACTIONS(2793), 1, anon_sym_COMMA, - STATE(1928), 1, - aux_sym__import_list_repeat1, - [88543] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 1, - anon_sym_COLON, - ACTIONS(3393), 1, + ACTIONS(2809), 1, anon_sym_RBRACE, - STATE(2182), 1, - sym_format_specifier, - [88556] = 4, - ACTIONS(3), 1, + STATE(2101), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3159), 1, + sym_line_continuation, + [112330] = 4, + ACTIONS(1062), 1, anon_sym_RPAREN, - ACTIONS(3395), 1, + ACTIONS(3782), 1, anon_sym_COMMA, - STATE(1928), 1, - aux_sym__import_list_repeat1, - [88569] = 4, - ACTIONS(3), 1, + STATE(2082), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3397), 1, - anon_sym_SEMI, - ACTIONS(3399), 1, + sym_line_continuation, + [112344] = 4, + ACTIONS(601), 1, sym__newline, - STATE(1877), 1, + ACTIONS(3784), 1, + anon_sym_SEMI, + STATE(2189), 1, aux_sym__simple_statements_repeat1, - [88582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 1, - anon_sym_except, - ACTIONS(1374), 2, - anon_sym_except_STAR, - anon_sym_finally, - [88593] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3401), 1, + sym_line_continuation, + [112358] = 4, + ACTIONS(2789), 1, anon_sym_RPAREN, - ACTIONS(3403), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1845), 1, - aux_sym_argument_list_repeat1, - [88606] = 4, - ACTIONS(3), 1, + STATE(2190), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2413), 1, + sym_line_continuation, + [112372] = 4, + ACTIONS(1060), 1, anon_sym_RPAREN, - ACTIONS(2415), 1, + ACTIONS(3788), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(2082), 1, aux_sym_argument_list_repeat1, - [88619] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, + sym_line_continuation, + [112386] = 4, + ACTIONS(3790), 1, anon_sym_COMMA, - ACTIONS(2435), 1, - anon_sym_RPAREN, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - [88632] = 4, - ACTIONS(3), 1, + ACTIONS(3793), 1, + anon_sym_RBRACE, + STATE(2162), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2848), 1, - anon_sym_RPAREN, - ACTIONS(3405), 1, + sym_line_continuation, + [112400] = 4, + ACTIONS(3795), 1, anon_sym_COMMA, - STATE(1866), 1, - aux_sym_argument_list_repeat1, - [88645] = 4, - ACTIONS(3), 1, + ACTIONS(3797), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1108), 1, + sym_line_continuation, + [112414] = 4, + ACTIONS(3799), 1, + anon_sym_COMMA, + ACTIONS(3801), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112428] = 4, + ACTIONS(3355), 1, + anon_sym_import, + ACTIONS(3597), 1, + anon_sym_DOT, + STATE(2066), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112442] = 4, + ACTIONS(1150), 1, anon_sym_RBRACE, - ACTIONS(3408), 1, + ACTIONS(3803), 1, anon_sym_COMMA, - STATE(1774), 1, + STATE(2162), 1, aux_sym_dictionary_repeat1, - [88658] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3046), 1, + sym_line_continuation, + [112456] = 4, + ACTIONS(3423), 1, anon_sym_COLON, - ACTIONS(3410), 1, + ACTIONS(3805), 1, anon_sym_RBRACE, - STATE(2105), 1, + STATE(2370), 1, sym_format_specifier, - [88671] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2938), 1, - anon_sym_RBRACE, - ACTIONS(2940), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [88682] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2734), 1, + sym_line_continuation, + [112470] = 4, + ACTIONS(3807), 1, anon_sym_COMMA, - ACTIONS(2736), 1, - anon_sym_RBRACE, - STATE(1867), 1, - aux_sym_dictionary_repeat1, - [88695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2962), 1, - anon_sym_import, - ACTIONS(3412), 1, - anon_sym_DOT, - STATE(1963), 1, - aux_sym_dotted_name_repeat1, - [88708] = 4, - ACTIONS(3), 1, + ACTIONS(3809), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2387), 1, - anon_sym_RPAREN, - ACTIONS(2389), 1, + sym_line_continuation, + [112484] = 4, + ACTIONS(3811), 1, anon_sym_COMMA, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - [88721] = 4, - ACTIONS(3), 1, + ACTIONS(3813), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2785), 1, + sym_line_continuation, + [112498] = 4, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(3815), 1, anon_sym_COMMA, - ACTIONS(2787), 1, - anon_sym_RBRACE, - STATE(1884), 1, - aux_sym_dictionary_repeat1, - [88734] = 4, - ACTIONS(3), 1, + STATE(2174), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2610), 1, + sym_line_continuation, + [112512] = 4, + ACTIONS(3044), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(3046), 1, anon_sym_RBRACK, - STATE(1849), 1, + STATE(2168), 1, aux_sym_subscript_repeat1, - [88747] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2405), 1, + sym_line_continuation, + [112526] = 4, + ACTIONS(2882), 1, anon_sym_RPAREN, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - [88760] = 4, - ACTIONS(3), 1, + ACTIONS(2884), 1, + anon_sym_COMMA, + STATE(2181), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3414), 1, + sym_line_continuation, + [112540] = 4, + ACTIONS(3817), 1, anon_sym_RPAREN, - ACTIONS(3416), 1, + ACTIONS(3819), 1, anon_sym_COMMA, - STATE(1854), 1, + STATE(2183), 1, aux_sym_argument_list_repeat1, - [88773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(581), 1, - sym__newline, - ACTIONS(3418), 1, - anon_sym_SEMI, - STATE(1794), 1, - aux_sym__simple_statements_repeat1, - [88786] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_RBRACE, - ACTIONS(2883), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [88797] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2986), 3, + sym_line_continuation, + [112554] = 4, + ACTIONS(3821), 1, anon_sym_COMMA, - anon_sym_if, + ACTIONS(3824), 1, anon_sym_COLON, - [88806] = 3, - ACTIONS(2472), 1, + STATE(2174), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2887), 1, - anon_sym_RBRACE, - ACTIONS(2889), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [88817] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [112568] = 4, + ACTIONS(3826), 1, + anon_sym_SEMI, + ACTIONS(3828), 1, + sym__newline, + STATE(2137), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3120), 1, - sym_identifier, - STATE(1939), 1, - sym_dotted_name, - STATE(2003), 1, - sym_aliased_import, - [88830] = 3, - ACTIONS(2472), 1, + sym_line_continuation, + [112582] = 4, + ACTIONS(3070), 1, + anon_sym_COMMA, + ACTIONS(3072), 1, + anon_sym_RBRACK, + STATE(2186), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2906), 1, - anon_sym_RBRACE, - ACTIONS(2908), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [88841] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [112596] = 3, + ACTIONS(3830), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2454), 1, - anon_sym_RPAREN, - ACTIONS(2456), 1, + sym_line_continuation, + ACTIONS(3753), 2, anon_sym_COMMA, - STATE(1856), 1, - aux_sym_argument_list_repeat1, - [88854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1076), 1, + anon_sym_COLON, + [112608] = 4, + ACTIONS(1178), 1, anon_sym_RBRACE, - ACTIONS(3420), 1, + ACTIONS(3832), 1, anon_sym_COMMA, - STATE(1774), 1, + STATE(2162), 1, aux_sym_dictionary_repeat1, - [88867] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2891), 1, - anon_sym_RBRACE, - ACTIONS(2893), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [88878] = 3, - ACTIONS(2472), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_RBRACE, - ACTIONS(2858), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [88889] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1380), 1, - anon_sym_except, - ACTIONS(1378), 2, - anon_sym_except_STAR, - anon_sym_finally, - [88900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2844), 1, - anon_sym_import, - ACTIONS(3412), 1, - anon_sym_DOT, - STATE(1871), 1, - aux_sym_dotted_name_repeat1, - [88913] = 3, - ACTIONS(3), 1, + sym_line_continuation, + [112622] = 4, + ACTIONS(3301), 1, + anon_sym_RBRACK, + ACTIONS(3834), 1, + anon_sym_COMMA, + STATE(2179), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1361), 1, - anon_sym_except, - ACTIONS(1359), 2, - anon_sym_except_STAR, - anon_sym_finally, - [88924] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [112636] = 3, + ACTIONS(2972), 1, + anon_sym_from, + ACTIONS(3), 2, sym_comment, - ACTIONS(2458), 1, + sym_line_continuation, + ACTIONS(2970), 2, + sym__newline, + anon_sym_SEMI, + [112648] = 4, + ACTIONS(1038), 1, anon_sym_RPAREN, - ACTIONS(2460), 1, + ACTIONS(3837), 1, anon_sym_COMMA, - STATE(1899), 1, + STATE(2082), 1, aux_sym_argument_list_repeat1, - [88937] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112662] = 4, + ACTIONS(3839), 1, + anon_sym_COMMA, + ACTIONS(3841), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3422), 1, + sym_line_continuation, + [112676] = 4, + ACTIONS(1036), 1, anon_sym_RPAREN, - ACTIONS(3424), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - STATE(1901), 1, + STATE(2082), 1, aux_sym_argument_list_repeat1, - [88950] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3426), 1, + sym_line_continuation, + [112690] = 4, + ACTIONS(3845), 1, anon_sym_COMMA, - ACTIONS(3428), 1, + ACTIONS(3847), 1, anon_sym_RBRACK, - STATE(1844), 1, + STATE(2090), 1, aux_sym_subscript_repeat1, - [88963] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3430), 1, + sym_line_continuation, + [112704] = 4, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3432), 1, + ACTIONS(3851), 1, anon_sym_RBRACK, - STATE(1844), 1, + STATE(2090), 1, aux_sym_subscript_repeat1, - [88976] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2614), 1, + sym_line_continuation, + [112718] = 4, + ACTIONS(3853), 1, anon_sym_COMMA, - ACTIONS(2616), 1, + ACTIONS(3855), 1, anon_sym_RBRACK, - STATE(1904), 1, + STATE(2090), 1, aux_sym_subscript_repeat1, - [88989] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3180), 3, - sym__newline, - anon_sym_SEMI, + sym_line_continuation, + [112732] = 4, + ACTIONS(3060), 1, anon_sym_COMMA, - [88998] = 4, - ACTIONS(3), 1, + ACTIONS(3062), 1, + anon_sym_RBRACK, + STATE(2182), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1090), 1, - anon_sym_RBRACE, - ACTIONS(3434), 1, - anon_sym_COMMA, - STATE(1774), 1, - aux_sym_dictionary_repeat1, - [89011] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [112746] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(974), 1, - anon_sym_RPAREN, - ACTIONS(3436), 1, + sym_line_continuation, + ACTIONS(3553), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1866), 1, - aux_sym_argument_list_repeat1, - [89024] = 4, - ACTIONS(3), 1, + [112756] = 4, + ACTIONS(3857), 1, + anon_sym_SEMI, + ACTIONS(3860), 1, + sym__newline, + STATE(2189), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3226), 1, + sym_line_continuation, + [112770] = 4, + ACTIONS(3824), 1, anon_sym_RPAREN, - ACTIONS(3438), 1, + ACTIONS(3862), 1, anon_sym_COMMA, - STATE(1898), 1, + STATE(2190), 1, aux_sym__parameters_repeat1, - [89037] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(986), 1, - anon_sym_RPAREN, - ACTIONS(3441), 1, + sym_line_continuation, + [112784] = 3, + ACTIONS(3867), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3865), 2, + sym__newline, + anon_sym_SEMI, + [112796] = 4, + ACTIONS(3617), 1, + anon_sym_COLON, + ACTIONS(3869), 1, anon_sym_COMMA, - STATE(1866), 1, - aux_sym_argument_list_repeat1, - [89050] = 4, - ACTIONS(3), 1, + STATE(2192), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(918), 1, + sym_line_continuation, + [112810] = 4, + ACTIONS(1298), 1, anon_sym_RPAREN, - ACTIONS(3443), 1, + ACTIONS(3872), 1, anon_sym_COMMA, - STATE(1866), 1, - aux_sym_argument_list_repeat1, - [89063] = 4, - ACTIONS(3), 1, + STATE(2074), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(988), 1, - anon_sym_RPAREN, - ACTIONS(3445), 1, + sym_line_continuation, + [112824] = 4, + ACTIONS(1130), 1, + anon_sym_COLON, + ACTIONS(3874), 1, anon_sym_COMMA, - STATE(1866), 1, - aux_sym_argument_list_repeat1, - [89076] = 3, - ACTIONS(3), 1, + STATE(2202), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3447), 1, + sym_line_continuation, + [112838] = 4, + ACTIONS(3423), 1, anon_sym_COLON, - ACTIONS(3142), 2, + ACTIONS(3876), 1, + anon_sym_RBRACE, + STATE(2440), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112852] = 3, + ACTIONS(1528), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1526), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112864] = 3, + ACTIONS(1508), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1510), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112876] = 4, + ACTIONS(3522), 1, anon_sym_RPAREN, + ACTIONS(3878), 1, anon_sym_COMMA, - [89087] = 4, - ACTIONS(3), 1, + STATE(2198), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3449), 1, + sym_line_continuation, + [112890] = 4, + ACTIONS(3881), 1, + anon_sym_SEMI, + ACTIONS(3883), 1, + sym__newline, + STATE(2216), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112904] = 4, + ACTIONS(3589), 1, anon_sym_COMMA, - ACTIONS(3451), 1, - anon_sym_RBRACK, - STATE(1844), 1, - aux_sym_subscript_repeat1, - [89100] = 4, - ACTIONS(3), 1, + ACTIONS(3885), 1, + anon_sym_in, + STATE(2104), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3453), 1, + sym_line_continuation, + [112918] = 4, + ACTIONS(3887), 1, anon_sym_COMMA, - ACTIONS(3455), 1, + ACTIONS(3889), 1, anon_sym_RBRACK, - STATE(1844), 1, + STATE(2090), 1, aux_sym_subscript_repeat1, - [89113] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2658), 1, + sym_line_continuation, + [112932] = 4, + ACTIONS(2976), 1, + anon_sym_COLON, + ACTIONS(3891), 1, + anon_sym_COMMA, + STATE(2202), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112946] = 3, + ACTIONS(1532), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1530), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112958] = 4, + ACTIONS(2837), 1, + anon_sym_COMMA, + ACTIONS(2859), 1, + anon_sym_RPAREN, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112972] = 4, + ACTIONS(3894), 1, anon_sym_COMMA, - ACTIONS(2660), 1, + ACTIONS(3896), 1, anon_sym_RBRACK, - STATE(1892), 1, + STATE(2090), 1, aux_sym_subscript_repeat1, - [89126] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3457), 1, - anon_sym_EQ, - ACTIONS(3228), 2, + sym_line_continuation, + [112986] = 3, + ACTIONS(3568), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3539), 2, anon_sym_RPAREN, anon_sym_COMMA, - [89137] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 3, - sym__newline, - anon_sym_SEMI, + [112998] = 4, + ACTIONS(1006), 1, + anon_sym_RPAREN, + ACTIONS(3898), 1, anon_sym_COMMA, - [89146] = 4, - ACTIONS(3), 1, + STATE(2082), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3281), 1, + sym_line_continuation, + [113012] = 4, + ACTIONS(1084), 1, anon_sym_RPAREN, - ACTIONS(3461), 1, + ACTIONS(3900), 1, anon_sym_COMMA, - STATE(1908), 1, + STATE(2082), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113026] = 4, + ACTIONS(3902), 1, + anon_sym_COMMA, + ACTIONS(3904), 1, + anon_sym_COLON, + STATE(2115), 1, aux_sym_with_clause_repeat1, - [89159] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113040] = 4, + ACTIONS(3074), 1, + anon_sym_COMMA, + ACTIONS(3076), 1, + anon_sym_RBRACK, + STATE(2201), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3464), 1, + sym_line_continuation, + [113054] = 4, + ACTIONS(3906), 1, anon_sym_RPAREN, - ACTIONS(3466), 1, + ACTIONS(3908), 1, anon_sym_COMMA, - STATE(1897), 1, + STATE(2207), 1, aux_sym_argument_list_repeat1, - [89172] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113068] = 4, + ACTIONS(3165), 1, + anon_sym_COMMA, + ACTIONS(3167), 1, + anon_sym_RBRACE, + STATE(2223), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113082] = 3, + ACTIONS(3372), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3370), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113094] = 4, + ACTIONS(2876), 1, + anon_sym_RPAREN, + ACTIONS(2878), 1, + anon_sym_COMMA, + STATE(2208), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113108] = 4, + ACTIONS(3279), 1, + anon_sym_import, + ACTIONS(3910), 1, + anon_sym_DOT, + STATE(2215), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(579), 1, + sym_line_continuation, + [113122] = 4, + ACTIONS(589), 1, sym__newline, - ACTIONS(3468), 1, + ACTIONS(3913), 1, anon_sym_SEMI, - STATE(1794), 1, + STATE(2189), 1, aux_sym__simple_statements_repeat1, - [89185] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3470), 1, + sym_line_continuation, + [113136] = 4, + ACTIONS(3915), 1, anon_sym_COMMA, - ACTIONS(3472), 1, + ACTIONS(3918), 1, anon_sym_COLON, - STATE(1830), 1, + STATE(2217), 1, aux_sym_match_statement_repeat1, - [89198] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3474), 1, - anon_sym_RPAREN, - ACTIONS(3476), 1, + sym_line_continuation, + [113150] = 4, + ACTIONS(1152), 1, + anon_sym_RBRACE, + ACTIONS(3920), 1, anon_sym_COMMA, - STATE(1829), 1, - aux_sym__parameters_repeat1, - [89211] = 4, - ACTIONS(3), 1, + STATE(2162), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2462), 1, - anon_sym_RPAREN, - ACTIONS(2464), 1, + sym_line_continuation, + [113164] = 4, + ACTIONS(3115), 1, anon_sym_COMMA, - STATE(1900), 1, - aux_sym_argument_list_repeat1, - [89224] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1078), 1, + ACTIONS(3117), 1, anon_sym_RBRACE, - ACTIONS(3478), 1, - anon_sym_COMMA, - STATE(1774), 1, + STATE(2218), 1, aux_sym_dictionary_repeat1, - [89237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3480), 1, - anon_sym_SEMI, - ACTIONS(3482), 1, - sym__newline, - STATE(1931), 1, - aux_sym__simple_statements_repeat1, - [89250] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2566), 1, - anon_sym_from, - ACTIONS(2564), 2, - sym__newline, - anon_sym_SEMI, - [89261] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [113178] = 4, + ACTIONS(3589), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, + anon_sym_in, + STATE(2104), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2885), 1, - anon_sym_RBRACK, - ACTIONS(3484), 1, + sym_line_continuation, + [113192] = 4, + ACTIONS(3301), 1, + anon_sym_RPAREN, + ACTIONS(3924), 1, anon_sym_COMMA, - STATE(1917), 1, + STATE(2221), 1, aux_sym__collection_elements_repeat1, - [89274] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, + sym_line_continuation, + [113206] = 3, + ACTIONS(3249), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3247), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113218] = 4, + ACTIONS(1164), 1, + anon_sym_RBRACE, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3487), 1, - anon_sym_RPAREN, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - [89287] = 4, - ACTIONS(3), 1, + STATE(2162), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, + sym_line_continuation, + [113232] = 4, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(2447), 1, + ACTIONS(2880), 1, anon_sym_RPAREN, - STATE(1824), 1, + STATE(2123), 1, aux_sym__collection_elements_repeat1, - [89300] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(575), 1, + sym_line_continuation, + [113246] = 3, + ACTIONS(3931), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3929), 2, sym__newline, - ACTIONS(3489), 1, anon_sym_SEMI, - STATE(1794), 1, - aux_sym__simple_statements_repeat1, - [89313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(3491), 1, - anon_sym_RPAREN, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - [89326] = 3, - ACTIONS(2472), 1, + [113258] = 4, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3933), 1, + anon_sym_COLON, + STATE(2528), 1, + sym_argument_list, + ACTIONS(3), 2, sym_comment, - ACTIONS(2850), 1, - anon_sym_RBRACE, - ACTIONS(2852), 2, - anon_sym_LBRACE2, + sym_line_continuation, + [113272] = 3, + ACTIONS(3368), 1, aux_sym_format_specifier_token1, - [89337] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, sym_comment, - ACTIONS(2840), 1, - anon_sym_COMMA, - ACTIONS(2842), 1, + sym_line_continuation, + ACTIONS(3366), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1914), 1, - aux_sym_dictionary_repeat1, - [89350] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3058), 1, + [113284] = 4, + ACTIONS(3935), 1, anon_sym_RPAREN, - ACTIONS(3134), 1, + ACTIONS(3937), 1, anon_sym_COMMA, - STATE(1860), 1, - aux_sym__import_list_repeat1, - [89363] = 4, - ACTIONS(3), 1, + STATE(2193), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2836), 1, + sym_line_continuation, + [113298] = 4, + ACTIONS(2861), 1, + anon_sym_RPAREN, + ACTIONS(2863), 1, anon_sym_COMMA, - ACTIONS(2838), 1, - anon_sym_RBRACE, - STATE(1780), 1, - aux_sym_dictionary_repeat1, - [89376] = 4, - ACTIONS(3), 1, + STATE(2237), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2407), 1, + sym_line_continuation, + [113312] = 4, + ACTIONS(3939), 1, anon_sym_RPAREN, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - [89389] = 4, - ACTIONS(3), 1, + ACTIONS(3941), 1, + anon_sym_COMMA, + STATE(2239), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2804), 1, + sym_line_continuation, + [113326] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3943), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2806), 1, + [113336] = 3, + ACTIONS(3364), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3362), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1938), 1, - aux_sym_dictionary_repeat1, - [89402] = 4, - ACTIONS(3), 1, + [113348] = 4, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3034), 1, + anon_sym_RBRACK, + STATE(2242), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3165), 1, + sym_line_continuation, + [113362] = 4, + ACTIONS(3535), 1, + sym_identifier, + STATE(2206), 1, + sym_dotted_name, + STATE(2316), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113376] = 4, + ACTIONS(2870), 1, anon_sym_RPAREN, - ACTIONS(3493), 1, + ACTIONS(2872), 1, anon_sym_COMMA, - STATE(1928), 1, - aux_sym__import_list_repeat1, - [89415] = 4, - ACTIONS(3), 1, + STATE(2156), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3496), 1, - anon_sym_SEMI, - ACTIONS(3498), 1, + sym_line_continuation, + [113390] = 4, + ACTIONS(575), 1, sym__newline, - STATE(1920), 1, + ACTIONS(3945), 1, + anon_sym_SEMI, + STATE(2189), 1, aux_sym__simple_statements_repeat1, - [89428] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2333), 1, + sym_line_continuation, + [113404] = 4, + ACTIONS(1010), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, anon_sym_COMMA, - ACTIONS(3500), 1, - anon_sym_in, - STATE(1382), 1, - aux_sym__patterns_repeat1, - [89441] = 4, - ACTIONS(3), 1, + STATE(2082), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(601), 1, - sym__newline, - ACTIONS(3502), 1, - anon_sym_SEMI, - STATE(1794), 1, - aux_sym__simple_statements_repeat1, - [89454] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [113418] = 4, + ACTIONS(3949), 1, + anon_sym_RPAREN, + ACTIONS(3951), 1, + anon_sym_COMMA, + STATE(2154), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3504), 1, - anon_sym_SEMI, - ACTIONS(3506), 1, - sym__newline, - STATE(1946), 1, - aux_sym__simple_statements_repeat1, - [89467] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [113432] = 4, + ACTIONS(1008), 1, + anon_sym_RPAREN, + ACTIONS(3953), 1, + anon_sym_COMMA, + STATE(2082), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2333), 1, + sym_line_continuation, + [113446] = 4, + ACTIONS(2679), 1, + anon_sym_RPAREN, + ACTIONS(3955), 1, anon_sym_COMMA, - ACTIONS(3508), 1, - anon_sym_in, - STATE(1382), 1, + STATE(2240), 1, aux_sym__patterns_repeat1, - [89480] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3510), 1, + sym_line_continuation, + [113460] = 4, + ACTIONS(3958), 1, anon_sym_COMMA, - ACTIONS(3512), 1, + ACTIONS(3960), 1, anon_sym_RBRACK, - STATE(1844), 1, + STATE(2090), 1, aux_sym_subscript_repeat1, - [89493] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3514), 1, + sym_line_continuation, + [113474] = 4, + ACTIONS(3962), 1, anon_sym_COMMA, - ACTIONS(3516), 1, + ACTIONS(3964), 1, anon_sym_RBRACK, - STATE(1844), 1, + STATE(2090), 1, aux_sym_subscript_repeat1, - [89506] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3518), 1, + sym_line_continuation, + [113488] = 4, + ACTIONS(3966), 1, anon_sym_COMMA, - ACTIONS(3520), 1, - anon_sym_COLON, - STATE(1786), 1, - aux_sym_with_clause_repeat1, - [89519] = 4, - ACTIONS(3), 1, + ACTIONS(3968), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(998), 1, - anon_sym_RPAREN, - ACTIONS(3522), 1, + sym_line_continuation, + [113502] = 4, + ACTIONS(3970), 1, anon_sym_COMMA, - STATE(1866), 1, - aux_sym_argument_list_repeat1, - [89532] = 4, - ACTIONS(3), 1, + ACTIONS(3972), 1, + anon_sym_RBRACK, + STATE(2090), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1100), 1, - anon_sym_RBRACE, - ACTIONS(3524), 1, + sym_line_continuation, + [113516] = 4, + ACTIONS(3105), 1, anon_sym_COMMA, - STATE(1774), 1, + ACTIONS(3107), 1, + anon_sym_RBRACE, + STATE(2178), 1, aux_sym_dictionary_repeat1, - [89545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3180), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [89556] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1000), 1, - anon_sym_RPAREN, - ACTIONS(3526), 1, - anon_sym_COMMA, - STATE(1866), 1, - aux_sym_argument_list_repeat1, - [89569] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2643), 1, + sym_line_continuation, + [113530] = 4, + ACTIONS(3064), 1, anon_sym_COMMA, - ACTIONS(2645), 1, + ACTIONS(3066), 1, anon_sym_RBRACK, - STATE(1934), 1, + STATE(2152), 1, aux_sym_subscript_repeat1, - [89582] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2449), 1, - anon_sym_RPAREN, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - [89595] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [113544] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3528), 1, + sym_line_continuation, + ACTIONS(2388), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [113554] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3539), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [113564] = 4, + ACTIONS(1066), 1, anon_sym_RPAREN, - ACTIONS(3530), 1, + ACTIONS(3974), 1, anon_sym_COMMA, - STATE(1937), 1, + STATE(2082), 1, aux_sym_argument_list_repeat1, - [89608] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113578] = 3, + ACTIONS(3316), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, - ACTIONS(2443), 1, + sym_line_continuation, + ACTIONS(3314), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113590] = 4, + ACTIONS(1064), 1, anon_sym_RPAREN, - ACTIONS(2445), 1, + ACTIONS(3976), 1, anon_sym_COMMA, - STATE(1952), 1, + STATE(2082), 1, aux_sym_argument_list_repeat1, - [89621] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3532), 1, - anon_sym_RPAREN, - ACTIONS(3534), 1, + sym_line_continuation, + [113604] = 3, + ACTIONS(3345), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3343), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113616] = 3, + ACTIONS(3349), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3347), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113628] = 4, + ACTIONS(2976), 1, + anon_sym_RBRACK, + ACTIONS(3978), 1, anon_sym_COMMA, - STATE(1954), 1, - aux_sym_argument_list_repeat1, - [89634] = 4, - ACTIONS(3), 1, + STATE(2254), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(577), 1, + sym_line_continuation, + [113642] = 4, + ACTIONS(3981), 1, + anon_sym_SEMI, + ACTIONS(3983), 1, + sym__newline, + STATE(2256), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113656] = 4, + ACTIONS(593), 1, sym__newline, - ACTIONS(3536), 1, + ACTIONS(3985), 1, anon_sym_SEMI, - STATE(1794), 1, + STATE(2189), 1, aux_sym__simple_statements_repeat1, - [89647] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2437), 1, - anon_sym_RPAREN, - ACTIONS(2439), 1, + sym_line_continuation, + [113670] = 4, + ACTIONS(3749), 1, + anon_sym_RBRACK, + ACTIONS(3987), 1, anon_sym_COMMA, - STATE(1940), 1, - aux_sym_argument_list_repeat1, - [89660] = 4, - ACTIONS(3), 1, + STATE(2081), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2625), 1, - anon_sym_COMMA, - ACTIONS(2627), 1, + sym_line_continuation, + [113684] = 4, + ACTIONS(2809), 1, anon_sym_RBRACK, - STATE(1957), 1, - aux_sym_subscript_repeat1, - [89673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2885), 1, - anon_sym_RPAREN, - ACTIONS(3538), 1, + ACTIONS(2841), 1, anon_sym_COMMA, - STATE(1949), 1, + STATE(2077), 1, aux_sym__collection_elements_repeat1, - [89686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3543), 1, - anon_sym_in, - ACTIONS(3541), 2, - sym__newline, - anon_sym_SEMI, - [89697] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3474), 1, - anon_sym_COLON, - ACTIONS(3545), 1, + sym_line_continuation, + [113698] = 4, + ACTIONS(2837), 1, anon_sym_COMMA, - STATE(1778), 1, - aux_sym__parameters_repeat1, - [89710] = 4, - ACTIONS(3), 1, + ACTIONS(2857), 1, + anon_sym_RPAREN, + STATE(2123), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1018), 1, + sym_line_continuation, + [113712] = 4, + ACTIONS(2827), 1, anon_sym_RPAREN, - ACTIONS(3547), 1, + ACTIONS(2829), 1, anon_sym_COMMA, - STATE(1866), 1, + STATE(2251), 1, aux_sym_argument_list_repeat1, - [89723] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_RBRACE, - ACTIONS(3549), 1, - anon_sym_COMMA, - STATE(1774), 1, - aux_sym_dictionary_repeat1, - [89736] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1016), 1, + sym_line_continuation, + [113726] = 4, + ACTIONS(3989), 1, anon_sym_RPAREN, - ACTIONS(3551), 1, + ACTIONS(3991), 1, anon_sym_COMMA, - STATE(1866), 1, + STATE(2249), 1, aux_sym_argument_list_repeat1, - [89749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3320), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, - anon_sym_COLON, - STATE(2221), 1, - sym_argument_list, - [89762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - anon_sym_COMMA, - ACTIONS(3557), 1, - anon_sym_RBRACK, - STATE(1844), 1, - aux_sym_subscript_repeat1, - [89775] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_COMMA, - ACTIONS(3561), 1, - anon_sym_RBRACK, - STATE(1844), 1, - aux_sym_subscript_repeat1, - [89788] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3563), 1, + sym_line_continuation, + [113740] = 3, + ACTIONS(3993), 1, anon_sym_EQ, - ACTIONS(3142), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3574), 2, anon_sym_COMMA, anon_sym_COLON, - [89799] = 4, - ACTIONS(3), 1, + [113752] = 3, + ACTIONS(3376), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, - ACTIONS(3565), 1, + sym_line_continuation, + ACTIONS(3374), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113764] = 4, + ACTIONS(3431), 1, anon_sym_RPAREN, - ACTIONS(3567), 1, + ACTIONS(3566), 1, anon_sym_COMMA, - STATE(1810), 1, - aux_sym__patterns_repeat1, - [89812] = 4, - ACTIONS(3), 1, + STATE(2072), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(593), 1, - sym__newline, - ACTIONS(3569), 1, - anon_sym_SEMI, - STATE(1794), 1, - aux_sym__simple_statements_repeat1, - [89825] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [113778] = 4, + ACTIONS(3022), 1, + anon_sym_COMMA, + ACTIONS(3024), 1, + anon_sym_RBRACK, + STATE(2243), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2832), 1, + sym_line_continuation, + [113792] = 4, + ACTIONS(3214), 1, anon_sym_COMMA, - ACTIONS(2834), 1, + ACTIONS(3216), 1, anon_sym_RBRACE, - STATE(1953), 1, + STATE(2268), 1, aux_sym_dictionary_repeat1, - [89838] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113806] = 3, + ACTIONS(3993), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(2810), 1, + sym_line_continuation, + ACTIONS(3574), 2, anon_sym_COMMA, - ACTIONS(2812), 1, + anon_sym_COLON, + [113818] = 4, + ACTIONS(1192), 1, anon_sym_RBRACE, - STATE(1896), 1, + ACTIONS(3995), 1, + anon_sym_COMMA, + STATE(2162), 1, aux_sym_dictionary_repeat1, - [89851] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2978), 1, - anon_sym_import, - ACTIONS(3571), 1, - anon_sym_DOT, - STATE(1963), 1, - aux_sym_dotted_name_repeat1, - [89864] = 4, - ACTIONS(3), 1, + sym_line_continuation, + [113832] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2403), 1, + sym_line_continuation, + ACTIONS(2679), 2, anon_sym_RPAREN, - STATE(1824), 1, - aux_sym__collection_elements_repeat1, - [89877] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3565), 1, - anon_sym_RBRACK, - ACTIONS(3574), 1, anon_sym_COMMA, - STATE(1800), 1, - aux_sym__patterns_repeat1, - [89890] = 3, - ACTIONS(3), 1, + [113841] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3576), 1, + sym_line_continuation, + ACTIONS(3617), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3578), 1, - anon_sym_DASH_GT, - [89900] = 2, - ACTIONS(3), 1, + [113850] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(1251), 2, + sym_line_continuation, + ACTIONS(3997), 2, anon_sym_RPAREN, anon_sym_COMMA, - [89908] = 2, - ACTIONS(3), 1, + [113859] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(1326), 2, + sym_line_continuation, + ACTIONS(3574), 2, anon_sym_COMMA, anon_sym_COLON, - [89916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3580), 1, - anon_sym_COLON, - ACTIONS(3582), 1, - anon_sym_DASH_GT, - [89926] = 2, - ACTIONS(3), 1, + [113868] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3584), 2, + sym_line_continuation, + ACTIONS(3220), 2, anon_sym_COMMA, anon_sym_RBRACK, - [89934] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3228), 2, - anon_sym_COMMA, - anon_sym_COLON, - [89942] = 2, - ACTIONS(3), 1, + [113877] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3142), 2, + sym_line_continuation, + ACTIONS(3255), 2, anon_sym_RPAREN, anon_sym_COMMA, - [89950] = 2, - ACTIONS(3), 1, + [113886] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(1326), 2, + sym_line_continuation, + ACTIONS(3617), 2, anon_sym_RPAREN, anon_sym_COMMA, - [89958] = 2, - ACTIONS(3), 1, + [113895] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2978), 2, - anon_sym_import, - anon_sym_DOT, - [89966] = 2, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(3999), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [113904] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3586), 2, + sym_line_continuation, + ACTIONS(4001), 2, sym__newline, anon_sym_SEMI, - [89974] = 2, - ACTIONS(3), 1, + [113913] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3588), 2, + sym_line_continuation, + ACTIONS(4003), 2, sym__newline, anon_sym_SEMI, - [89982] = 2, - ACTIONS(3), 1, + [113922] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3590), 2, + sym_line_continuation, + ACTIONS(4005), 2, sym__newline, anon_sym_SEMI, - [89990] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3584), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [89998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3226), 2, - anon_sym_COMMA, - anon_sym_COLON, - [90006] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3592), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [90014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2329), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [90022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3594), 1, - anon_sym_LPAREN, - STATE(2007), 1, - sym_parameters, - [90032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3594), 1, + [113931] = 3, + ACTIONS(4007), 1, anon_sym_LPAREN, - STATE(2009), 1, + STATE(2305), 1, sym_parameters, - [90042] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2305), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [90050] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [113942] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3264), 2, + sym_line_continuation, + ACTIONS(4009), 2, sym__newline, anon_sym_SEMI, - [90058] = 2, - ACTIONS(3), 1, + [113951] = 3, + ACTIONS(4007), 1, + anon_sym_LPAREN, + STATE(2308), 1, + sym_parameters, + ACTIONS(3), 2, sym_comment, - ACTIONS(2345), 2, - anon_sym_RPAREN, + sym_line_continuation, + [113962] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3301), 2, anon_sym_COMMA, - [90066] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE, + [113971] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3596), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [90074] = 2, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(4011), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113980] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3598), 2, - sym__newline, - anon_sym_SEMI, - [90082] = 2, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(4013), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113989] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2680), 2, + sym_line_continuation, + ACTIONS(4015), 2, sym__newline, anon_sym_SEMI, - [90090] = 2, - ACTIONS(3), 1, + [113998] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3600), 2, + sym_line_continuation, + ACTIONS(2708), 2, anon_sym_RPAREN, anon_sym_COMMA, - [90098] = 2, - ACTIONS(3), 1, + [114007] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3281), 2, + sym_line_continuation, + ACTIONS(4017), 2, anon_sym_COMMA, anon_sym_COLON, - [90106] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2885), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [90114] = 2, - ACTIONS(3), 1, + [114016] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3584), 2, + sym_line_continuation, + ACTIONS(2920), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [90122] = 2, - ACTIONS(3), 1, + anon_sym_RBRACK, + [114025] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3592), 2, + sym_line_continuation, + ACTIONS(4013), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [90130] = 2, - ACTIONS(3), 1, + anon_sym_RBRACK, + [114034] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3600), 2, + sym_line_continuation, + ACTIONS(3574), 2, anon_sym_COMMA, anon_sym_COLON, - [90138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3202), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [90146] = 2, - ACTIONS(3), 1, + [114043] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3142), 2, - anon_sym_COMMA, - anon_sym_COLON, - [90154] = 2, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(3013), 2, + sym__newline, + anon_sym_SEMI, + [114052] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3602), 2, + sym_line_continuation, + ACTIONS(2920), 2, sym__newline, anon_sym_SEMI, - [90162] = 2, - ACTIONS(3), 1, + [114061] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4017), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114070] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2305), 2, + sym_line_continuation, + ACTIONS(2708), 2, anon_sym_COMMA, anon_sym_RBRACK, - [90170] = 2, - ACTIONS(3), 1, + [114079] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2329), 2, + sym_line_continuation, + ACTIONS(2710), 2, anon_sym_COMMA, anon_sym_RBRACK, - [90178] = 2, - ACTIONS(3), 1, + [114088] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3604), 2, + sym_line_continuation, + ACTIONS(4019), 2, sym__newline, anon_sym_SEMI, - [90186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3606), 2, + [114097] = 3, + ACTIONS(4021), 1, anon_sym_COLON, + ACTIONS(4023), 1, anon_sym_DASH_GT, - [90194] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114108] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3180), 2, + sym_line_continuation, + ACTIONS(3574), 2, anon_sym_RPAREN, anon_sym_COMMA, - [90202] = 3, - ACTIONS(3), 1, + [114117] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3594), 1, - anon_sym_LPAREN, - STATE(1969), 1, - sym_parameters, - [90212] = 2, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(4025), 2, + sym__newline, + anon_sym_SEMI, + [114126] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2492), 2, + sym_line_continuation, + ACTIONS(4027), 2, sym__newline, anon_sym_SEMI, - [90220] = 2, - ACTIONS(3), 1, + [114135] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2920), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114144] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2345), 2, + sym_line_continuation, + ACTIONS(2679), 2, anon_sym_COMMA, anon_sym_RBRACK, - [90228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3608), 1, - anon_sym_COLON, - ACTIONS(3610), 1, - anon_sym_DASH_GT, - [90238] = 2, - ACTIONS(3), 1, + [114153] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3612), 2, + sym_line_continuation, + ACTIONS(4029), 2, sym__newline, anon_sym_SEMI, - [90246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3614), 1, + [114162] = 3, + ACTIONS(4031), 1, anon_sym_COLON, - ACTIONS(3616), 1, + ACTIONS(4033), 1, anon_sym_DASH_GT, - [90256] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2492), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [90264] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114173] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3618), 2, + sym_line_continuation, + ACTIONS(4035), 2, sym__newline, anon_sym_SEMI, - [90272] = 2, - ACTIONS(3), 1, + [114182] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(1251), 2, + sym_line_continuation, + ACTIONS(4013), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [90280] = 2, - ACTIONS(3), 1, + [114191] = 3, + ACTIONS(4037), 1, + anon_sym_COLON, + ACTIONS(4039), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114202] = 3, + ACTIONS(4007), 1, + anon_sym_LPAREN, + STATE(2313), 1, + sym_parameters, + ACTIONS(3), 2, sym_comment, - ACTIONS(2848), 2, + sym_line_continuation, + [114213] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4011), 2, anon_sym_RPAREN, anon_sym_COMMA, - [90288] = 2, - ACTIONS(3), 1, + [114222] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3620), 2, + sym_line_continuation, + ACTIONS(3301), 2, anon_sym_RPAREN, anon_sym_COMMA, - [90296] = 2, - ACTIONS(3), 1, + [114231] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3622), 2, + sym_line_continuation, + ACTIONS(4041), 2, sym__newline, anon_sym_SEMI, - [90304] = 2, - ACTIONS(3), 1, + [114240] = 3, + ACTIONS(4043), 1, + anon_sym_COLON, + ACTIONS(4045), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, sym_comment, - ACTIONS(2798), 2, + sym_line_continuation, + [114251] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4011), 2, anon_sym_COMMA, anon_sym_RBRACK, - [90312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3594), 1, - anon_sym_LPAREN, - STATE(1966), 1, - sym_parameters, - [90322] = 2, - ACTIONS(3), 1, + [114260] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3142), 2, - anon_sym_COMMA, + sym_line_continuation, + ACTIONS(4047), 2, anon_sym_COLON, - [90330] = 2, - ACTIONS(3), 1, + anon_sym_DASH_GT, + [114269] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2885), 2, + sym_line_continuation, + ACTIONS(3539), 2, anon_sym_RPAREN, anon_sym_COMMA, - [90338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2885), 2, + [114278] = 3, + ACTIONS(4049), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [90346] = 2, - ACTIONS(3), 1, + STATE(1937), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3281), 2, - anon_sym_RPAREN, + sym_line_continuation, + [114289] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3048), 2, + sym__newline, + anon_sym_SEMI, + [114298] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3753), 2, anon_sym_COMMA, - [90354] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [114307] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3624), 2, + sym_line_continuation, + ACTIONS(3058), 2, sym__newline, anon_sym_SEMI, - [90362] = 2, - ACTIONS(3), 1, + [114316] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3459), 2, - anon_sym_RPAREN, + sym_line_continuation, + ACTIONS(3301), 2, anon_sym_COMMA, - [90370] = 2, - ACTIONS(3), 1, + anon_sym_RBRACK, + [114325] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2492), 2, - anon_sym_RPAREN, + sym_line_continuation, + ACTIONS(3824), 2, anon_sym_COMMA, - [90378] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [114334] = 3, + ACTIONS(4007), 1, + anon_sym_LPAREN, + STATE(2298), 1, + sym_parameters, + ACTIONS(3), 2, sym_comment, - ACTIONS(3626), 2, - sym__newline, - anon_sym_SEMI, - [90386] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114345] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3628), 2, - sym__newline, - anon_sym_SEMI, - [90394] = 2, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(3824), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114354] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3592), 2, + sym_line_continuation, + ACTIONS(3753), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114363] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1403), 2, anon_sym_COMMA, anon_sym_RBRACK, - [90402] = 2, - ACTIONS(3), 1, + [114372] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3228), 2, + sym_line_continuation, + ACTIONS(1403), 2, anon_sym_RPAREN, anon_sym_COMMA, - [90410] = 2, - ACTIONS(3), 1, + [114381] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3630), 2, + sym_line_continuation, + ACTIONS(3860), 2, sym__newline, anon_sym_SEMI, - [90418] = 2, - ACTIONS(3), 1, + [114390] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(2656), 2, + sym_line_continuation, + ACTIONS(4051), 2, sym__newline, anon_sym_SEMI, - [90426] = 2, - ACTIONS(3), 1, + [114399] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3226), 2, + sym_line_continuation, + ACTIONS(3943), 2, anon_sym_RPAREN, anon_sym_COMMA, - [90434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2662), 2, - sym__newline, - anon_sym_SEMI, - [90442] = 2, - ACTIONS(3), 1, + [114408] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3632), 1, - anon_sym_RPAREN, - [90449] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3634), 1, - anon_sym_RBRACE, - [90456] = 2, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(3279), 2, + anon_sym_import, + anon_sym_DOT, + [114417] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3636), 1, - anon_sym_COLON_EQ, - [90463] = 2, - ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(4053), 2, + sym__newline, + anon_sym_SEMI, + [114426] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(3638), 1, + sym_line_continuation, + ACTIONS(3793), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [90470] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3640), 1, - sym_identifier, - [90477] = 2, - ACTIONS(3), 1, + [114435] = 2, + ACTIONS(4055), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3642), 1, - anon_sym_RPAREN, - [90484] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114443] = 2, + ACTIONS(4057), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(2806), 1, + sym_line_continuation, + [114451] = 2, + ACTIONS(4059), 1, anon_sym_RBRACE, - [90491] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3644), 1, + sym_line_continuation, + [114459] = 2, + ACTIONS(4061), 1, anon_sym_RBRACK, - [90498] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3646), 1, + sym_line_continuation, + [114467] = 2, + ACTIONS(4063), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114475] = 2, + ACTIONS(4065), 1, anon_sym_COLON, - [90505] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2842), 1, + sym_line_continuation, + [114483] = 2, + ACTIONS(3117), 1, anon_sym_RBRACE, - [90512] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3648), 1, - anon_sym_COLON, - [90519] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114491] = 2, + ACTIONS(4067), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3650), 1, - anon_sym_RBRACK, - [90526] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114499] = 2, + ACTIONS(3922), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(3652), 1, + sym_line_continuation, + [114507] = 2, + ACTIONS(4069), 1, anon_sym_RBRACE, - [90533] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3654), 1, + sym_line_continuation, + [114515] = 2, + ACTIONS(4071), 1, sym_identifier, - [90540] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3656), 1, - sym_identifier, - [90547] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114523] = 2, + ACTIONS(4073), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(3658), 1, + sym_line_continuation, + [114531] = 2, + ACTIONS(4075), 1, anon_sym_RPAREN, - [90554] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114539] = 2, + ACTIONS(4077), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(3660), 1, + sym_line_continuation, + [114547] = 2, + ACTIONS(4079), 1, anon_sym_in, - [90561] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3662), 1, - anon_sym_RPAREN, - [90568] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114555] = 2, + ACTIONS(4081), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3664), 1, - anon_sym_RBRACK, - [90575] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114563] = 2, + ACTIONS(4083), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3666), 1, + sym_line_continuation, + [114571] = 2, + ACTIONS(2876), 1, anon_sym_RPAREN, - [90582] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3668), 1, - anon_sym_COLON_EQ, - [90589] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114579] = 2, + ACTIONS(4085), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(3670), 1, + sym_line_continuation, + [114587] = 2, + ACTIONS(4087), 1, anon_sym_RBRACE, - [90596] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114595] = 2, + ACTIONS(3111), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3672), 1, + sym_line_continuation, + [114603] = 2, + ACTIONS(3167), 1, anon_sym_RBRACE, - [90603] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3674), 1, + sym_line_continuation, + [114611] = 2, + ACTIONS(4089), 1, anon_sym_COLON, - [90610] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2462), 1, - anon_sym_RPAREN, - [90617] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114619] = 2, + ACTIONS(4091), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3676), 1, - anon_sym_RBRACE, - [90624] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114627] = 2, + ACTIONS(4093), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3678), 1, + sym_line_continuation, + [114635] = 2, + ACTIONS(4095), 1, anon_sym_RBRACK, - [90631] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114643] = 2, + ACTIONS(3885), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114651] = 2, + ACTIONS(4097), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114659] = 2, + ACTIONS(4099), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114667] = 2, + ACTIONS(4101), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(3680), 1, + sym_line_continuation, + [114675] = 2, + ACTIONS(4103), 1, sym_identifier, - [90638] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3682), 1, - anon_sym_RBRACE, - [90645] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114683] = 2, + ACTIONS(4105), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114691] = 2, + ACTIONS(4107), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114699] = 2, + ACTIONS(4109), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3684), 1, + sym_line_continuation, + [114707] = 2, + ACTIONS(4111), 1, anon_sym_COLON, - [90652] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3686), 1, - anon_sym_in, - [90659] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114715] = 2, + ACTIONS(4113), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(3688), 1, + sym_line_continuation, + [114723] = 2, + ACTIONS(4115), 1, anon_sym_RBRACE, - [90666] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114731] = 2, + ACTIONS(1324), 1, + anon_sym_def, + ACTIONS(3), 2, sym_comment, - ACTIONS(3690), 1, + sym_line_continuation, + [114739] = 2, + ACTIONS(4117), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114747] = 2, + ACTIONS(4119), 1, anon_sym_RBRACE, - [90673] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2458), 1, - anon_sym_RPAREN, - [90680] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114755] = 2, + ACTIONS(4121), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114763] = 2, + ACTIONS(4123), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3692), 1, + sym_line_continuation, + [114771] = 2, + ACTIONS(4125), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114779] = 2, + ACTIONS(4127), 1, anon_sym_COLON, - [90687] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2454), 1, + sym_line_continuation, + [114787] = 2, + ACTIONS(4129), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114795] = 2, + ACTIONS(4131), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114803] = 2, + ACTIONS(2882), 1, anon_sym_RPAREN, - [90694] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114811] = 2, + ACTIONS(4133), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3694), 1, + sym_line_continuation, + [114819] = 2, + ACTIONS(4135), 1, anon_sym_RBRACE, - [90701] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3696), 1, + sym_line_continuation, + [114827] = 2, + ACTIONS(4137), 1, anon_sym_RBRACE, - [90708] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3698), 1, - anon_sym_RBRACK, - [90715] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114835] = 2, + ACTIONS(4139), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3700), 1, + sym_line_continuation, + [114843] = 2, + ACTIONS(4141), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114851] = 2, + ACTIONS(4143), 1, anon_sym_COLON, - [90722] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3702), 1, - anon_sym_COLON_EQ, - [90729] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114859] = 2, + ACTIONS(4145), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114867] = 2, + ACTIONS(4147), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(3704), 1, + sym_line_continuation, + [114875] = 2, + ACTIONS(4149), 1, anon_sym_RPAREN, - [90736] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114883] = 2, + ACTIONS(4151), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114891] = 2, + ACTIONS(4153), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3706), 1, + sym_line_continuation, + [114899] = 2, + ACTIONS(4155), 1, anon_sym_in, - [90743] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3708), 1, + sym_line_continuation, + [114907] = 2, + ACTIONS(4157), 1, sym_identifier, - [90750] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3710), 1, - anon_sym_RPAREN, - [90757] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114915] = 2, + ACTIONS(4159), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114923] = 2, + ACTIONS(4161), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(3712), 1, + sym_line_continuation, + [114931] = 2, + ACTIONS(4163), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114939] = 2, + ACTIONS(4165), 1, anon_sym_RPAREN, - [90764] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3714), 1, + sym_line_continuation, + [114947] = 2, + ACTIONS(4167), 1, anon_sym_RBRACE, - [90771] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3716), 1, + sym_line_continuation, + [114955] = 2, + ACTIONS(4169), 1, anon_sym_RBRACK, - [90778] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114963] = 2, + ACTIONS(4171), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(3718), 1, + sym_line_continuation, + [114971] = 2, + ACTIONS(4173), 1, anon_sym_COLON, - [90785] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2736), 1, + sym_line_continuation, + [114979] = 2, + ACTIONS(3139), 1, anon_sym_RBRACE, - [90792] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2787), 1, - anon_sym_RBRACE, - [90799] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [114987] = 2, + ACTIONS(4175), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3720), 1, + sym_line_continuation, + [114995] = 2, + ACTIONS(4177), 1, anon_sym_COLON, - [90806] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3722), 1, - anon_sym_RBRACE, - [90813] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115003] = 2, + ACTIONS(4179), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(3724), 1, - sym_identifier, - [90820] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115011] = 2, + ACTIONS(4181), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(3726), 1, - anon_sym_in, - [90827] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115019] = 2, + ACTIONS(4183), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3728), 1, - anon_sym_RPAREN, - [90834] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115027] = 2, + ACTIONS(4185), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(3730), 1, + sym_line_continuation, + [115035] = 2, + ACTIONS(4187), 1, anon_sym_RBRACK, - [90841] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3732), 1, + sym_line_continuation, + [115043] = 2, + ACTIONS(4189), 1, anon_sym_RBRACK, - [90848] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3734), 1, - anon_sym_RBRACE, - [90855] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115051] = 2, + ACTIONS(4191), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(3736), 1, - anon_sym_RBRACE, - [90862] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115059] = 2, + ACTIONS(4193), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(1074), 1, - anon_sym_def, - [90869] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115067] = 2, + ACTIONS(4195), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(2413), 1, + sym_line_continuation, + [115075] = 2, + ACTIONS(2831), 1, anon_sym_RPAREN, - [90876] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3738), 1, - anon_sym_COLON, - [90883] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115083] = 2, + ACTIONS(4197), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(3740), 1, + sym_line_continuation, + [115091] = 2, + ACTIONS(4199), 1, anon_sym_RBRACE, - [90890] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3742), 1, + sym_line_continuation, + [115099] = 2, + ACTIONS(4201), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115107] = 2, + ACTIONS(4203), 1, anon_sym_COLON, - [90897] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3744), 1, + sym_line_continuation, + [115115] = 2, + ACTIONS(3226), 1, anon_sym_RBRACE, - [90904] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3746), 1, + sym_line_continuation, + [115123] = 2, + ACTIONS(4205), 1, anon_sym_COLON_EQ, - [90911] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3748), 1, - anon_sym_RPAREN, - [90918] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3750), 1, - sym_identifier, - [90925] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115131] = 2, + ACTIONS(4207), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3752), 1, + sym_line_continuation, + [115139] = 2, + ACTIONS(4209), 1, anon_sym_RBRACE, - [90932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3754), 1, - anon_sym_COLON, - [90939] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3756), 1, - sym_identifier, - [90946] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115147] = 2, + ACTIONS(4211), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3758), 1, + sym_line_continuation, + [115155] = 2, + ACTIONS(4213), 1, anon_sym_RBRACE, - [90953] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3760), 1, + sym_line_continuation, + [115163] = 2, + ACTIONS(4215), 1, anon_sym_COLON, - [90960] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3762), 1, - anon_sym_import, - [90967] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115171] = 2, + ACTIONS(4217), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3764), 1, - anon_sym_import, - [90974] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115179] = 2, + ACTIONS(4219), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(2812), 1, - anon_sym_RBRACE, - [90981] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115187] = 2, + ACTIONS(4221), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3766), 1, + sym_line_continuation, + [115195] = 2, + ACTIONS(4223), 1, anon_sym_import, - [90988] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3768), 1, + sym_line_continuation, + [115203] = 2, + ACTIONS(4225), 1, sym_identifier, - [90995] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3500), 1, + sym_line_continuation, + [115211] = 2, + ACTIONS(3735), 1, anon_sym_in, - [91002] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3770), 1, + sym_line_continuation, + [115219] = 2, + ACTIONS(4227), 1, sym_identifier, - [91009] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2808), 1, + sym_line_continuation, + [115227] = 2, + ACTIONS(3163), 1, anon_sym_COLON, - [91016] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3772), 1, - anon_sym_COLON, - [91023] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115235] = 2, + ACTIONS(4229), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(3774), 1, + sym_line_continuation, + [115243] = 2, + ACTIONS(4231), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115251] = 2, + ACTIONS(4233), 1, anon_sym_COLON, - [91030] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2838), 1, - anon_sym_RBRACE, - [91037] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115259] = 2, + ACTIONS(4235), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(3776), 1, + sym_line_continuation, + [115267] = 2, + ACTIONS(3727), 1, anon_sym_in, - [91044] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3508), 1, - anon_sym_in, - [91051] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115275] = 2, + ACTIONS(4237), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3778), 1, - anon_sym_COLON, - [91058] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115283] = 2, + ACTIONS(4239), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(2431), 1, - anon_sym_RPAREN, - [91065] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115291] = 2, + ACTIONS(3113), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(2409), 1, + sym_line_continuation, + [115299] = 2, + ACTIONS(2861), 1, anon_sym_RPAREN, - [91072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3780), 1, - anon_sym_COLON_EQ, - [91079] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3782), 1, - anon_sym_COLON, - [91086] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115307] = 2, + ACTIONS(4241), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(3784), 1, - anon_sym_COLON, - [91093] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115315] = 2, + ACTIONS(4243), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3786), 1, + sym_line_continuation, + [115323] = 2, + ACTIONS(4245), 1, anon_sym_COLON, - [91100] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3788), 1, + sym_line_continuation, + [115331] = 2, + ACTIONS(4247), 1, anon_sym_RPAREN, - [91107] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3790), 1, + sym_line_continuation, + [115339] = 2, + ACTIONS(2870), 1, anon_sym_RPAREN, - [91114] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3792), 1, - anon_sym_COLON, - [91121] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115347] = 2, + ACTIONS(4249), 1, + anon_sym_import, + ACTIONS(3), 2, sym_comment, - ACTIONS(3794), 1, - anon_sym_in, - [91128] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115355] = 2, + ACTIONS(4251), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3316), 1, + sym_line_continuation, + [115363] = 2, + ACTIONS(3591), 1, anon_sym_in, - [91135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3796), 1, - anon_sym_RBRACK, - [91142] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2816), 1, + sym_line_continuation, + [115371] = 2, + ACTIONS(4253), 1, anon_sym_COLON, - [91149] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3798), 1, - anon_sym_RBRACE, - [91156] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3800), 1, - anon_sym_RBRACE, - [91163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3802), 1, + sym_line_continuation, + [115379] = 2, + ACTIONS(4255), 1, anon_sym_COLON, - [91170] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3804), 1, - anon_sym_RBRACE, - [91177] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 1, - anon_sym_in, - [91184] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3806), 1, + sym_line_continuation, + [115387] = 2, + ACTIONS(4257), 1, anon_sym_COLON, - [91191] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3808), 1, - anon_sym_RBRACE, - [91198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3810), 1, + sym_line_continuation, + [115395] = 2, + ACTIONS(2811), 1, anon_sym_RPAREN, - [91205] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2826), 1, + sym_line_continuation, + [115403] = 2, + ACTIONS(4259), 1, anon_sym_COLON, - [91212] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3812), 1, - sym_identifier, - [91219] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3814), 1, + sym_line_continuation, + [115411] = 2, + ACTIONS(1306), 1, anon_sym_COLON, - [91226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2443), 1, - anon_sym_RPAREN, - [91233] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3816), 1, + sym_line_continuation, + [115419] = 2, + ACTIONS(4261), 1, anon_sym_COLON, - [91240] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3818), 1, + sym_line_continuation, + [115427] = 2, + ACTIONS(4263), 1, anon_sym_RBRACK, - [91247] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3820), 1, + sym_line_continuation, + [115435] = 2, + ACTIONS(4265), 1, anon_sym_RPAREN, - [91254] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3822), 1, + sym_line_continuation, + [115443] = 2, + ACTIONS(2886), 1, anon_sym_RPAREN, - [91261] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3824), 1, - anon_sym_COLON, - [91268] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115451] = 2, + ACTIONS(4267), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(3826), 1, + sym_line_continuation, + [115459] = 2, + ACTIONS(4269), 1, sym_identifier, - [91275] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2437), 1, - anon_sym_RPAREN, - [91282] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115467] = 2, + ACTIONS(4271), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(3828), 1, - anon_sym_COLON, - [91289] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115475] = 2, + ACTIONS(4273), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(3830), 1, - anon_sym_COLON, - [91296] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115483] = 2, + ACTIONS(4275), 1, + anon_sym_import, + ACTIONS(3), 2, sym_comment, - ACTIONS(3832), 1, - anon_sym_COLON, - [91303] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115491] = 2, + ACTIONS(4277), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(3834), 1, - anon_sym_COLON, - [91310] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115499] = 2, + ACTIONS(4279), 1, + anon_sym_for, + ACTIONS(3), 2, sym_comment, - ACTIONS(3836), 1, - anon_sym_COLON, - [91317] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115507] = 2, + ACTIONS(3687), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(3838), 1, + sym_line_continuation, + [115515] = 2, + ACTIONS(4281), 1, anon_sym_RBRACE, - [91324] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3840), 1, - anon_sym_COLON, - [91331] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3842), 1, + sym_line_continuation, + [115523] = 2, + ACTIONS(3685), 1, anon_sym_in, - [91338] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3844), 1, + sym_line_continuation, + [115531] = 2, + ACTIONS(4283), 1, anon_sym_COLON, - [91345] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3846), 1, + sym_line_continuation, + [115539] = 2, + ACTIONS(4285), 1, anon_sym_COLON, - [91352] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1220), 1, - anon_sym_COLON, - [91359] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115547] = 2, + ACTIONS(4287), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3848), 1, - sym_identifier, - [91366] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115555] = 2, + ACTIONS(4289), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115563] = 2, + ACTIONS(3194), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3850), 1, + sym_line_continuation, + [115571] = 2, + ACTIONS(4291), 1, anon_sym_RBRACE, - [91373] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2740), 1, - anon_sym_COLON, - [91380] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115579] = 2, + ACTIONS(4293), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3852), 1, - anon_sym_COLON, - [91387] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115587] = 2, + ACTIONS(4295), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3854), 1, + sym_line_continuation, + [115595] = 2, + ACTIONS(3186), 1, anon_sym_RBRACE, - [91394] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3285), 1, - anon_sym_in, - [91401] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115603] = 2, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3856), 1, + sym_line_continuation, + [115611] = 2, + ACTIONS(4299), 1, anon_sym_RBRACK, - [91408] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115619] = 2, + ACTIONS(4301), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(3283), 1, + sym_line_continuation, + [115627] = 2, + ACTIONS(4303), 1, anon_sym_in, - [91415] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3858), 1, + sym_line_continuation, + [115635] = 2, + ACTIONS(4305), 1, anon_sym_RPAREN, - [91422] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3860), 1, - anon_sym_COLON, - [91429] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115643] = 2, + ACTIONS(4307), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3862), 1, - anon_sym_in, - [91436] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115651] = 2, + ACTIONS(4309), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115659] = 2, + ACTIONS(4311), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(3864), 1, + sym_line_continuation, + [115667] = 2, + ACTIONS(4313), 1, anon_sym_COLON, - [91443] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2732), 1, + sym_line_continuation, + [115675] = 2, + ACTIONS(4315), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115683] = 2, + ACTIONS(4317), 1, anon_sym_RBRACE, - [91450] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3866), 1, - anon_sym_for, - [91457] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115691] = 2, + ACTIONS(4319), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(3276), 1, - anon_sym_in, - [91464] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115699] = 2, + ACTIONS(3198), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3868), 1, + sym_line_continuation, + [115707] = 2, + ACTIONS(4321), 1, anon_sym_COLON, - [91471] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3870), 1, - anon_sym_RPAREN, - [91478] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115715] = 2, + ACTIONS(4323), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3872), 1, - anon_sym_RBRACK, - [91485] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115723] = 2, + ACTIONS(3107), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3874), 1, + sym_line_continuation, + [115731] = 2, + ACTIONS(4325), 1, anon_sym_RBRACE, - [91492] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3876), 1, + sym_line_continuation, + [115739] = 2, + ACTIONS(4327), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115747] = 2, + ACTIONS(4329), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115755] = 2, + ACTIONS(4331), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115763] = 2, + ACTIONS(4333), 1, anon_sym_RBRACK, - [91499] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3878), 1, - anon_sym_COLON_EQ, - [91506] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115771] = 2, + ACTIONS(4335), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, - ACTIONS(3880), 1, + sym_line_continuation, + [115779] = 2, + ACTIONS(4337), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115787] = 2, + ACTIONS(2827), 1, anon_sym_RPAREN, - [91513] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3882), 1, - anon_sym_RBRACE, - [91520] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115795] = 2, + ACTIONS(4339), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(3884), 1, + sym_line_continuation, + [115803] = 2, + ACTIONS(4341), 1, anon_sym_RPAREN, - [91527] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3886), 1, + sym_line_continuation, + [115811] = 2, + ACTIONS(4343), 1, anon_sym_RPAREN, - [91534] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3888), 1, + sym_line_continuation, + [115819] = 2, + ACTIONS(4345), 1, ts_builtin_sym_end, - [91541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3890), 1, - anon_sym_COLON_EQ, - [91548] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3892), 1, - anon_sym_RBRACK, - [91555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3894), 1, + sym_line_continuation, + [115827] = 2, + ACTIONS(4347), 1, anon_sym_RBRACE, - [91562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3896), 1, - sym_identifier, - [91569] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3898), 1, - anon_sym_RBRACE, - [91576] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115835] = 2, + ACTIONS(4349), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3900), 1, - sym_identifier, - [91583] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115843] = 2, + ACTIONS(4351), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3902), 1, + sym_line_continuation, + [115851] = 2, + ACTIONS(4353), 1, anon_sym_COLON, - [91590] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3904), 1, + sym_line_continuation, + [115859] = 2, + ACTIONS(4355), 1, sym_identifier, - [91597] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3906), 1, + sym_line_continuation, + [115867] = 2, + ACTIONS(4357), 1, sym_identifier, - [91604] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3908), 1, + sym_line_continuation, + [115875] = 2, + ACTIONS(4359), 1, sym_identifier, - [91611] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3910), 1, + sym_line_continuation, + [115883] = 2, + ACTIONS(4361), 1, anon_sym_RBRACE, - [91618] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3912), 1, - anon_sym_RBRACK, - [91625] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115891] = 2, + ACTIONS(4363), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(3914), 1, + sym_line_continuation, + [115899] = 2, + ACTIONS(4365), 1, anon_sym_RBRACK, - [91632] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115907] = 2, + ACTIONS(4367), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3916), 1, + sym_line_continuation, + [115915] = 2, + ACTIONS(4369), 1, sym_identifier, - [91639] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3918), 1, + sym_line_continuation, + [115923] = 2, + ACTIONS(4371), 1, anon_sym_RBRACE, - [91646] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3920), 1, + sym_line_continuation, + [115931] = 2, + ACTIONS(4373), 1, anon_sym_COLON, - [91653] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - anon_sym_RBRACK, - [91660] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(2834), 1, + sym_line_continuation, + [115939] = 2, + ACTIONS(4375), 1, anon_sym_RBRACE, - [91667] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3924), 1, + sym_line_continuation, + [115947] = 2, + ACTIONS(4377), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115955] = 2, + ACTIONS(4379), 1, anon_sym_COLON, - [91674] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3926), 1, - anon_sym_RBRACK, - [91681] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115963] = 2, + ACTIONS(4381), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(3928), 1, - anon_sym_RBRACK, - [91688] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115971] = 2, + ACTIONS(4383), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(3930), 1, - anon_sym_RPAREN, - [91695] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115979] = 2, + ACTIONS(4385), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, - ACTIONS(3932), 1, + sym_line_continuation, + [115987] = 2, + ACTIONS(4387), 1, anon_sym_COLON, - [91702] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3934), 1, - sym_identifier, - [91709] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [115995] = 2, + ACTIONS(4389), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3936), 1, - anon_sym_RPAREN, - [91716] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [116003] = 2, + ACTIONS(4391), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116011] = 2, + ACTIONS(4393), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116019] = 2, + ACTIONS(3216), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, - ACTIONS(3938), 1, + sym_line_continuation, + [116027] = 2, + ACTIONS(4395), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116035] = 2, + ACTIONS(4397), 1, sym_identifier, - [91723] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3940), 1, + sym_line_continuation, + [116043] = 2, + ACTIONS(4399), 1, sym_identifier, - [91730] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3942), 1, - anon_sym_COLON_EQ, - [91737] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [116051] = 2, + ACTIONS(4401), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, - ACTIONS(3214), 1, + sym_line_continuation, + [116059] = 2, + ACTIONS(3601), 1, anon_sym_in, - [91744] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(1116), 1, + sym_line_continuation, + [116067] = 2, + ACTIONS(1296), 1, anon_sym_def, - [91751] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3944), 1, + sym_line_continuation, + [116075] = 2, + ACTIONS(4403), 1, anon_sym_for, - [91758] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3946), 1, - anon_sym_COLON, - [91765] = 2, - ACTIONS(3), 1, + sym_line_continuation, + [116083] = 2, + ACTIONS(3603), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(3204), 1, + sym_line_continuation, + [116091] = 2, + ACTIONS(3599), 1, anon_sym_in, - [91772] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3948), 1, + sym_line_continuation, + [116099] = 2, + ACTIONS(4405), 1, anon_sym_for, - [91779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_in, - [91786] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(3950), 1, + sym_line_continuation, + [116107] = 2, + ACTIONS(4407), 1, anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116115] = 2, + ACTIONS(4409), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(175)] = 0, - [SMALL_STATE(176)] = 118, - [SMALL_STATE(177)] = 238, - [SMALL_STATE(178)] = 356, - [SMALL_STATE(179)] = 470, - [SMALL_STATE(180)] = 584, - [SMALL_STATE(181)] = 702, - [SMALL_STATE(182)] = 822, - [SMALL_STATE(183)] = 936, - [SMALL_STATE(184)] = 1058, - [SMALL_STATE(185)] = 1176, - [SMALL_STATE(186)] = 1296, - [SMALL_STATE(187)] = 1416, - [SMALL_STATE(188)] = 1534, - [SMALL_STATE(189)] = 1656, - [SMALL_STATE(190)] = 1774, - [SMALL_STATE(191)] = 1891, - [SMALL_STATE(192)] = 2008, - [SMALL_STATE(193)] = 2125, - [SMALL_STATE(194)] = 2242, - [SMALL_STATE(195)] = 2359, - [SMALL_STATE(196)] = 2476, - [SMALL_STATE(197)] = 2593, - [SMALL_STATE(198)] = 2710, - [SMALL_STATE(199)] = 2809, - [SMALL_STATE(200)] = 2908, - [SMALL_STATE(201)] = 3016, - [SMALL_STATE(202)] = 3124, - [SMALL_STATE(203)] = 3232, - [SMALL_STATE(204)] = 3340, - [SMALL_STATE(205)] = 3450, - [SMALL_STATE(206)] = 3558, - [SMALL_STATE(207)] = 3666, - [SMALL_STATE(208)] = 3774, - [SMALL_STATE(209)] = 3882, - [SMALL_STATE(210)] = 3990, - [SMALL_STATE(211)] = 4095, - [SMALL_STATE(212)] = 4202, - [SMALL_STATE(213)] = 4309, - [SMALL_STATE(214)] = 4414, - [SMALL_STATE(215)] = 4523, - [SMALL_STATE(216)] = 4628, - [SMALL_STATE(217)] = 4737, - [SMALL_STATE(218)] = 4842, - [SMALL_STATE(219)] = 4949, - [SMALL_STATE(220)] = 5054, - [SMALL_STATE(221)] = 5159, - [SMALL_STATE(222)] = 5264, - [SMALL_STATE(223)] = 5369, - [SMALL_STATE(224)] = 5474, - [SMALL_STATE(225)] = 5579, - [SMALL_STATE(226)] = 5684, - [SMALL_STATE(227)] = 5789, - [SMALL_STATE(228)] = 5896, - [SMALL_STATE(229)] = 6001, - [SMALL_STATE(230)] = 6106, - [SMALL_STATE(231)] = 6211, - [SMALL_STATE(232)] = 6316, - [SMALL_STATE(233)] = 6421, - [SMALL_STATE(234)] = 6526, - [SMALL_STATE(235)] = 6631, - [SMALL_STATE(236)] = 6736, - [SMALL_STATE(237)] = 6841, - [SMALL_STATE(238)] = 6946, - [SMALL_STATE(239)] = 7051, - [SMALL_STATE(240)] = 7158, - [SMALL_STATE(241)] = 7265, - [SMALL_STATE(242)] = 7370, - [SMALL_STATE(243)] = 7479, - [SMALL_STATE(244)] = 7584, - [SMALL_STATE(245)] = 7689, - [SMALL_STATE(246)] = 7794, - [SMALL_STATE(247)] = 7899, - [SMALL_STATE(248)] = 8004, - [SMALL_STATE(249)] = 8109, - [SMALL_STATE(250)] = 8214, - [SMALL_STATE(251)] = 8319, - [SMALL_STATE(252)] = 8424, - [SMALL_STATE(253)] = 8529, - [SMALL_STATE(254)] = 8636, - [SMALL_STATE(255)] = 8741, - [SMALL_STATE(256)] = 8850, - [SMALL_STATE(257)] = 8959, - [SMALL_STATE(258)] = 9064, - [SMALL_STATE(259)] = 9173, - [SMALL_STATE(260)] = 9280, - [SMALL_STATE(261)] = 9381, - [SMALL_STATE(262)] = 9486, - [SMALL_STATE(263)] = 9591, - [SMALL_STATE(264)] = 9696, - [SMALL_STATE(265)] = 9801, - [SMALL_STATE(266)] = 9903, - [SMALL_STATE(267)] = 10005, - [SMALL_STATE(268)] = 10107, - [SMALL_STATE(269)] = 10209, - [SMALL_STATE(270)] = 10311, - [SMALL_STATE(271)] = 10413, - [SMALL_STATE(272)] = 10515, - [SMALL_STATE(273)] = 10614, - [SMALL_STATE(274)] = 10717, - [SMALL_STATE(275)] = 10812, - [SMALL_STATE(276)] = 10911, - [SMALL_STATE(277)] = 11010, - [SMALL_STATE(278)] = 11109, - [SMALL_STATE(279)] = 11208, - [SMALL_STATE(280)] = 11307, - [SMALL_STATE(281)] = 11406, - [SMALL_STATE(282)] = 11509, - [SMALL_STATE(283)] = 11608, - [SMALL_STATE(284)] = 11703, - [SMALL_STATE(285)] = 11802, - [SMALL_STATE(286)] = 11901, - [SMALL_STATE(287)] = 12004, - [SMALL_STATE(288)] = 12107, - [SMALL_STATE(289)] = 12206, - [SMALL_STATE(290)] = 12309, - [SMALL_STATE(291)] = 12408, - [SMALL_STATE(292)] = 12507, - [SMALL_STATE(293)] = 12606, - [SMALL_STATE(294)] = 12709, - [SMALL_STATE(295)] = 12808, - [SMALL_STATE(296)] = 12882, - [SMALL_STATE(297)] = 12978, - [SMALL_STATE(298)] = 13076, - [SMALL_STATE(299)] = 13174, - [SMALL_STATE(300)] = 13272, - [SMALL_STATE(301)] = 13370, - [SMALL_STATE(302)] = 13468, - [SMALL_STATE(303)] = 13564, - [SMALL_STATE(304)] = 13662, - [SMALL_STATE(305)] = 13760, - [SMALL_STATE(306)] = 13858, - [SMALL_STATE(307)] = 13956, - [SMALL_STATE(308)] = 14054, - [SMALL_STATE(309)] = 14152, - [SMALL_STATE(310)] = 14250, - [SMALL_STATE(311)] = 14348, - [SMALL_STATE(312)] = 14446, - [SMALL_STATE(313)] = 14544, - [SMALL_STATE(314)] = 14642, - [SMALL_STATE(315)] = 14740, - [SMALL_STATE(316)] = 14814, - [SMALL_STATE(317)] = 14912, - [SMALL_STATE(318)] = 15010, - [SMALL_STATE(319)] = 15108, - [SMALL_STATE(320)] = 15205, - [SMALL_STATE(321)] = 15302, - [SMALL_STATE(322)] = 15397, - [SMALL_STATE(323)] = 15494, - [SMALL_STATE(324)] = 15591, - [SMALL_STATE(325)] = 15688, - [SMALL_STATE(326)] = 15783, - [SMALL_STATE(327)] = 15880, - [SMALL_STATE(328)] = 15977, - [SMALL_STATE(329)] = 16074, - [SMALL_STATE(330)] = 16171, - [SMALL_STATE(331)] = 16268, - [SMALL_STATE(332)] = 16363, - [SMALL_STATE(333)] = 16460, - [SMALL_STATE(334)] = 16557, - [SMALL_STATE(335)] = 16654, - [SMALL_STATE(336)] = 16751, - [SMALL_STATE(337)] = 16846, - [SMALL_STATE(338)] = 16943, - [SMALL_STATE(339)] = 17040, - [SMALL_STATE(340)] = 17137, - [SMALL_STATE(341)] = 17234, - [SMALL_STATE(342)] = 17331, - [SMALL_STATE(343)] = 17402, - [SMALL_STATE(344)] = 17497, - [SMALL_STATE(345)] = 17594, - [SMALL_STATE(346)] = 17691, - [SMALL_STATE(347)] = 17788, - [SMALL_STATE(348)] = 17885, - [SMALL_STATE(349)] = 17982, - [SMALL_STATE(350)] = 18077, - [SMALL_STATE(351)] = 18147, - [SMALL_STATE(352)] = 18217, - [SMALL_STATE(353)] = 18309, - [SMALL_STATE(354)] = 18403, - [SMALL_STATE(355)] = 18495, - [SMALL_STATE(356)] = 18589, - [SMALL_STATE(357)] = 18681, - [SMALL_STATE(358)] = 18773, - [SMALL_STATE(359)] = 18865, - [SMALL_STATE(360)] = 18959, - [SMALL_STATE(361)] = 19051, - [SMALL_STATE(362)] = 19145, - [SMALL_STATE(363)] = 19239, - [SMALL_STATE(364)] = 19333, - [SMALL_STATE(365)] = 19425, - [SMALL_STATE(366)] = 19517, - [SMALL_STATE(367)] = 19609, - [SMALL_STATE(368)] = 19703, - [SMALL_STATE(369)] = 19797, - [SMALL_STATE(370)] = 19889, - [SMALL_STATE(371)] = 19983, - [SMALL_STATE(372)] = 20075, - [SMALL_STATE(373)] = 20169, - [SMALL_STATE(374)] = 20261, - [SMALL_STATE(375)] = 20355, - [SMALL_STATE(376)] = 20449, - [SMALL_STATE(377)] = 20543, - [SMALL_STATE(378)] = 20637, - [SMALL_STATE(379)] = 20707, - [SMALL_STATE(380)] = 20799, - [SMALL_STATE(381)] = 20893, - [SMALL_STATE(382)] = 20987, - [SMALL_STATE(383)] = 21081, - [SMALL_STATE(384)] = 21173, - [SMALL_STATE(385)] = 21265, - [SMALL_STATE(386)] = 21359, - [SMALL_STATE(387)] = 21453, - [SMALL_STATE(388)] = 21545, - [SMALL_STATE(389)] = 21637, - [SMALL_STATE(390)] = 21729, - [SMALL_STATE(391)] = 21799, - [SMALL_STATE(392)] = 21869, - [SMALL_STATE(393)] = 21961, - [SMALL_STATE(394)] = 22031, - [SMALL_STATE(395)] = 22125, - [SMALL_STATE(396)] = 22195, - [SMALL_STATE(397)] = 22265, - [SMALL_STATE(398)] = 22357, - [SMALL_STATE(399)] = 22449, - [SMALL_STATE(400)] = 22541, - [SMALL_STATE(401)] = 22633, - [SMALL_STATE(402)] = 22725, - [SMALL_STATE(403)] = 22817, - [SMALL_STATE(404)] = 22909, - [SMALL_STATE(405)] = 23001, - [SMALL_STATE(406)] = 23093, - [SMALL_STATE(407)] = 23158, - [SMALL_STATE(408)] = 23215, - [SMALL_STATE(409)] = 23280, - [SMALL_STATE(410)] = 23337, - [SMALL_STATE(411)] = 23428, - [SMALL_STATE(412)] = 23519, - [SMALL_STATE(413)] = 23610, - [SMALL_STATE(414)] = 23701, - [SMALL_STATE(415)] = 23792, - [SMALL_STATE(416)] = 23883, - [SMALL_STATE(417)] = 23974, - [SMALL_STATE(418)] = 24031, - [SMALL_STATE(419)] = 24122, - [SMALL_STATE(420)] = 24213, - [SMALL_STATE(421)] = 24304, - [SMALL_STATE(422)] = 24395, - [SMALL_STATE(423)] = 24452, - [SMALL_STATE(424)] = 24509, - [SMALL_STATE(425)] = 24600, - [SMALL_STATE(426)] = 24691, - [SMALL_STATE(427)] = 24782, - [SMALL_STATE(428)] = 24839, - [SMALL_STATE(429)] = 24930, - [SMALL_STATE(430)] = 25021, - [SMALL_STATE(431)] = 25112, - [SMALL_STATE(432)] = 25203, - [SMALL_STATE(433)] = 25260, - [SMALL_STATE(434)] = 25351, - [SMALL_STATE(435)] = 25442, - [SMALL_STATE(436)] = 25533, - [SMALL_STATE(437)] = 25624, - [SMALL_STATE(438)] = 25712, - [SMALL_STATE(439)] = 25800, - [SMALL_STATE(440)] = 25888, - [SMALL_STATE(441)] = 25976, - [SMALL_STATE(442)] = 26064, - [SMALL_STATE(443)] = 26152, - [SMALL_STATE(444)] = 26240, - [SMALL_STATE(445)] = 26328, - [SMALL_STATE(446)] = 26416, - [SMALL_STATE(447)] = 26504, - [SMALL_STATE(448)] = 26592, - [SMALL_STATE(449)] = 26680, - [SMALL_STATE(450)] = 26768, - [SMALL_STATE(451)] = 26856, - [SMALL_STATE(452)] = 26944, - [SMALL_STATE(453)] = 27032, - [SMALL_STATE(454)] = 27120, - [SMALL_STATE(455)] = 27208, - [SMALL_STATE(456)] = 27296, - [SMALL_STATE(457)] = 27384, - [SMALL_STATE(458)] = 27472, - [SMALL_STATE(459)] = 27560, - [SMALL_STATE(460)] = 27648, - [SMALL_STATE(461)] = 27736, - [SMALL_STATE(462)] = 27824, - [SMALL_STATE(463)] = 27912, - [SMALL_STATE(464)] = 27978, - [SMALL_STATE(465)] = 28044, - [SMALL_STATE(466)] = 28132, - [SMALL_STATE(467)] = 28198, - [SMALL_STATE(468)] = 28286, - [SMALL_STATE(469)] = 28374, - [SMALL_STATE(470)] = 28462, - [SMALL_STATE(471)] = 28550, - [SMALL_STATE(472)] = 28638, - [SMALL_STATE(473)] = 28726, - [SMALL_STATE(474)] = 28814, - [SMALL_STATE(475)] = 28902, - [SMALL_STATE(476)] = 28990, - [SMALL_STATE(477)] = 29078, - [SMALL_STATE(478)] = 29166, - [SMALL_STATE(479)] = 29254, - [SMALL_STATE(480)] = 29342, - [SMALL_STATE(481)] = 29430, - [SMALL_STATE(482)] = 29518, - [SMALL_STATE(483)] = 29606, - [SMALL_STATE(484)] = 29666, - [SMALL_STATE(485)] = 29726, - [SMALL_STATE(486)] = 29814, - [SMALL_STATE(487)] = 29902, - [SMALL_STATE(488)] = 29990, - [SMALL_STATE(489)] = 30078, - [SMALL_STATE(490)] = 30166, - [SMALL_STATE(491)] = 30254, - [SMALL_STATE(492)] = 30342, - [SMALL_STATE(493)] = 30430, - [SMALL_STATE(494)] = 30518, - [SMALL_STATE(495)] = 30606, - [SMALL_STATE(496)] = 30694, - [SMALL_STATE(497)] = 30782, - [SMALL_STATE(498)] = 30870, - [SMALL_STATE(499)] = 30958, - [SMALL_STATE(500)] = 31048, - [SMALL_STATE(501)] = 31136, - [SMALL_STATE(502)] = 31224, - [SMALL_STATE(503)] = 31312, - [SMALL_STATE(504)] = 31400, - [SMALL_STATE(505)] = 31488, - [SMALL_STATE(506)] = 31576, - [SMALL_STATE(507)] = 31638, - [SMALL_STATE(508)] = 31726, - [SMALL_STATE(509)] = 31814, - [SMALL_STATE(510)] = 31902, - [SMALL_STATE(511)] = 31990, - [SMALL_STATE(512)] = 32078, - [SMALL_STATE(513)] = 32140, - [SMALL_STATE(514)] = 32228, - [SMALL_STATE(515)] = 32316, - [SMALL_STATE(516)] = 32406, - [SMALL_STATE(517)] = 32494, - [SMALL_STATE(518)] = 32582, - [SMALL_STATE(519)] = 32670, - [SMALL_STATE(520)] = 32758, - [SMALL_STATE(521)] = 32846, - [SMALL_STATE(522)] = 32934, - [SMALL_STATE(523)] = 33022, - [SMALL_STATE(524)] = 33110, - [SMALL_STATE(525)] = 33198, - [SMALL_STATE(526)] = 33286, - [SMALL_STATE(527)] = 33374, - [SMALL_STATE(528)] = 33462, - [SMALL_STATE(529)] = 33550, - [SMALL_STATE(530)] = 33638, - [SMALL_STATE(531)] = 33726, - [SMALL_STATE(532)] = 33814, - [SMALL_STATE(533)] = 33880, - [SMALL_STATE(534)] = 33968, - [SMALL_STATE(535)] = 34056, - [SMALL_STATE(536)] = 34144, - [SMALL_STATE(537)] = 34232, - [SMALL_STATE(538)] = 34320, - [SMALL_STATE(539)] = 34380, - [SMALL_STATE(540)] = 34440, - [SMALL_STATE(541)] = 34528, - [SMALL_STATE(542)] = 34616, - [SMALL_STATE(543)] = 34678, - [SMALL_STATE(544)] = 34766, - [SMALL_STATE(545)] = 34832, - [SMALL_STATE(546)] = 34920, - [SMALL_STATE(547)] = 35008, - [SMALL_STATE(548)] = 35096, - [SMALL_STATE(549)] = 35184, - [SMALL_STATE(550)] = 35272, - [SMALL_STATE(551)] = 35338, - [SMALL_STATE(552)] = 35426, - [SMALL_STATE(553)] = 35514, - [SMALL_STATE(554)] = 35580, - [SMALL_STATE(555)] = 35668, - [SMALL_STATE(556)] = 35756, - [SMALL_STATE(557)] = 35844, - [SMALL_STATE(558)] = 35932, - [SMALL_STATE(559)] = 36020, - [SMALL_STATE(560)] = 36108, - [SMALL_STATE(561)] = 36196, - [SMALL_STATE(562)] = 36284, - [SMALL_STATE(563)] = 36372, - [SMALL_STATE(564)] = 36460, - [SMALL_STATE(565)] = 36548, - [SMALL_STATE(566)] = 36636, - [SMALL_STATE(567)] = 36724, - [SMALL_STATE(568)] = 36812, - [SMALL_STATE(569)] = 36900, - [SMALL_STATE(570)] = 36988, - [SMALL_STATE(571)] = 37076, - [SMALL_STATE(572)] = 37164, - [SMALL_STATE(573)] = 37230, - [SMALL_STATE(574)] = 37285, - [SMALL_STATE(575)] = 37346, - [SMALL_STATE(576)] = 37401, - [SMALL_STATE(577)] = 37456, - [SMALL_STATE(578)] = 37511, - [SMALL_STATE(579)] = 37566, - [SMALL_STATE(580)] = 37621, - [SMALL_STATE(581)] = 37676, - [SMALL_STATE(582)] = 37731, - [SMALL_STATE(583)] = 37786, - [SMALL_STATE(584)] = 37841, - [SMALL_STATE(585)] = 37896, - [SMALL_STATE(586)] = 37951, - [SMALL_STATE(587)] = 38006, - [SMALL_STATE(588)] = 38061, - [SMALL_STATE(589)] = 38116, - [SMALL_STATE(590)] = 38177, - [SMALL_STATE(591)] = 38232, - [SMALL_STATE(592)] = 38287, - [SMALL_STATE(593)] = 38341, - [SMALL_STATE(594)] = 38401, - [SMALL_STATE(595)] = 38461, - [SMALL_STATE(596)] = 38521, - [SMALL_STATE(597)] = 38575, - [SMALL_STATE(598)] = 38629, - [SMALL_STATE(599)] = 38683, - [SMALL_STATE(600)] = 38737, - [SMALL_STATE(601)] = 38791, - [SMALL_STATE(602)] = 38845, - [SMALL_STATE(603)] = 38899, - [SMALL_STATE(604)] = 38953, - [SMALL_STATE(605)] = 39007, - [SMALL_STATE(606)] = 39061, - [SMALL_STATE(607)] = 39115, - [SMALL_STATE(608)] = 39169, - [SMALL_STATE(609)] = 39223, - [SMALL_STATE(610)] = 39277, - [SMALL_STATE(611)] = 39337, - [SMALL_STATE(612)] = 39397, - [SMALL_STATE(613)] = 39457, - [SMALL_STATE(614)] = 39511, - [SMALL_STATE(615)] = 39565, - [SMALL_STATE(616)] = 39619, - [SMALL_STATE(617)] = 39673, - [SMALL_STATE(618)] = 39733, - [SMALL_STATE(619)] = 39787, - [SMALL_STATE(620)] = 39841, - [SMALL_STATE(621)] = 39901, - [SMALL_STATE(622)] = 39961, - [SMALL_STATE(623)] = 40015, - [SMALL_STATE(624)] = 40069, - [SMALL_STATE(625)] = 40123, - [SMALL_STATE(626)] = 40177, - [SMALL_STATE(627)] = 40231, - [SMALL_STATE(628)] = 40285, - [SMALL_STATE(629)] = 40339, - [SMALL_STATE(630)] = 40393, - [SMALL_STATE(631)] = 40447, - [SMALL_STATE(632)] = 40507, - [SMALL_STATE(633)] = 40567, - [SMALL_STATE(634)] = 40627, - [SMALL_STATE(635)] = 40687, - [SMALL_STATE(636)] = 40747, - [SMALL_STATE(637)] = 40801, - [SMALL_STATE(638)] = 40855, - [SMALL_STATE(639)] = 40915, - [SMALL_STATE(640)] = 40969, - [SMALL_STATE(641)] = 41023, - [SMALL_STATE(642)] = 41083, - [SMALL_STATE(643)] = 41143, - [SMALL_STATE(644)] = 41203, - [SMALL_STATE(645)] = 41257, - [SMALL_STATE(646)] = 41311, - [SMALL_STATE(647)] = 41365, - [SMALL_STATE(648)] = 41419, - [SMALL_STATE(649)] = 41473, - [SMALL_STATE(650)] = 41527, - [SMALL_STATE(651)] = 41584, - [SMALL_STATE(652)] = 41637, - [SMALL_STATE(653)] = 41690, - [SMALL_STATE(654)] = 41747, - [SMALL_STATE(655)] = 41804, - [SMALL_STATE(656)] = 41861, - [SMALL_STATE(657)] = 41918, - [SMALL_STATE(658)] = 41975, - [SMALL_STATE(659)] = 42032, - [SMALL_STATE(660)] = 42089, - [SMALL_STATE(661)] = 42146, - [SMALL_STATE(662)] = 42203, - [SMALL_STATE(663)] = 42256, - [SMALL_STATE(664)] = 42313, - [SMALL_STATE(665)] = 42366, - [SMALL_STATE(666)] = 42423, - [SMALL_STATE(667)] = 42476, - [SMALL_STATE(668)] = 42533, - [SMALL_STATE(669)] = 42590, - [SMALL_STATE(670)] = 42643, - [SMALL_STATE(671)] = 42700, - [SMALL_STATE(672)] = 42757, - [SMALL_STATE(673)] = 42809, - [SMALL_STATE(674)] = 42861, - [SMALL_STATE(675)] = 42913, - [SMALL_STATE(676)] = 42965, - [SMALL_STATE(677)] = 43017, - [SMALL_STATE(678)] = 43069, - [SMALL_STATE(679)] = 43121, - [SMALL_STATE(680)] = 43173, - [SMALL_STATE(681)] = 43225, - [SMALL_STATE(682)] = 43277, - [SMALL_STATE(683)] = 43329, - [SMALL_STATE(684)] = 43381, - [SMALL_STATE(685)] = 43433, - [SMALL_STATE(686)] = 43485, - [SMALL_STATE(687)] = 43537, - [SMALL_STATE(688)] = 43589, - [SMALL_STATE(689)] = 43641, - [SMALL_STATE(690)] = 43693, - [SMALL_STATE(691)] = 43745, - [SMALL_STATE(692)] = 43797, - [SMALL_STATE(693)] = 43849, - [SMALL_STATE(694)] = 43901, - [SMALL_STATE(695)] = 43953, - [SMALL_STATE(696)] = 44005, - [SMALL_STATE(697)] = 44057, - [SMALL_STATE(698)] = 44109, - [SMALL_STATE(699)] = 44161, - [SMALL_STATE(700)] = 44213, - [SMALL_STATE(701)] = 44265, - [SMALL_STATE(702)] = 44317, - [SMALL_STATE(703)] = 44369, - [SMALL_STATE(704)] = 44421, - [SMALL_STATE(705)] = 44473, - [SMALL_STATE(706)] = 44525, - [SMALL_STATE(707)] = 44577, - [SMALL_STATE(708)] = 44629, - [SMALL_STATE(709)] = 44681, - [SMALL_STATE(710)] = 44733, - [SMALL_STATE(711)] = 44785, - [SMALL_STATE(712)] = 44837, - [SMALL_STATE(713)] = 44889, - [SMALL_STATE(714)] = 44941, - [SMALL_STATE(715)] = 44993, - [SMALL_STATE(716)] = 45045, - [SMALL_STATE(717)] = 45097, - [SMALL_STATE(718)] = 45149, - [SMALL_STATE(719)] = 45201, - [SMALL_STATE(720)] = 45253, - [SMALL_STATE(721)] = 45305, - [SMALL_STATE(722)] = 45357, - [SMALL_STATE(723)] = 45409, - [SMALL_STATE(724)] = 45461, - [SMALL_STATE(725)] = 45513, - [SMALL_STATE(726)] = 45565, - [SMALL_STATE(727)] = 45617, - [SMALL_STATE(728)] = 45669, - [SMALL_STATE(729)] = 45721, - [SMALL_STATE(730)] = 45773, - [SMALL_STATE(731)] = 45825, - [SMALL_STATE(732)] = 45877, - [SMALL_STATE(733)] = 45929, - [SMALL_STATE(734)] = 45981, - [SMALL_STATE(735)] = 46033, - [SMALL_STATE(736)] = 46085, - [SMALL_STATE(737)] = 46137, - [SMALL_STATE(738)] = 46189, - [SMALL_STATE(739)] = 46241, - [SMALL_STATE(740)] = 46293, - [SMALL_STATE(741)] = 46345, - [SMALL_STATE(742)] = 46397, - [SMALL_STATE(743)] = 46448, - [SMALL_STATE(744)] = 46499, - [SMALL_STATE(745)] = 46550, - [SMALL_STATE(746)] = 46601, - [SMALL_STATE(747)] = 46652, - [SMALL_STATE(748)] = 46703, - [SMALL_STATE(749)] = 46754, - [SMALL_STATE(750)] = 46805, - [SMALL_STATE(751)] = 46856, - [SMALL_STATE(752)] = 46907, - [SMALL_STATE(753)] = 46990, - [SMALL_STATE(754)] = 47041, - [SMALL_STATE(755)] = 47092, - [SMALL_STATE(756)] = 47143, - [SMALL_STATE(757)] = 47194, - [SMALL_STATE(758)] = 47245, - [SMALL_STATE(759)] = 47296, - [SMALL_STATE(760)] = 47347, - [SMALL_STATE(761)] = 47398, - [SMALL_STATE(762)] = 47449, - [SMALL_STATE(763)] = 47500, - [SMALL_STATE(764)] = 47551, - [SMALL_STATE(765)] = 47602, - [SMALL_STATE(766)] = 47653, - [SMALL_STATE(767)] = 47704, - [SMALL_STATE(768)] = 47755, - [SMALL_STATE(769)] = 47806, - [SMALL_STATE(770)] = 47857, - [SMALL_STATE(771)] = 47908, - [SMALL_STATE(772)] = 47959, - [SMALL_STATE(773)] = 48010, - [SMALL_STATE(774)] = 48061, - [SMALL_STATE(775)] = 48112, - [SMALL_STATE(776)] = 48163, - [SMALL_STATE(777)] = 48214, - [SMALL_STATE(778)] = 48265, - [SMALL_STATE(779)] = 48316, - [SMALL_STATE(780)] = 48367, - [SMALL_STATE(781)] = 48418, - [SMALL_STATE(782)] = 48469, - [SMALL_STATE(783)] = 48520, - [SMALL_STATE(784)] = 48571, - [SMALL_STATE(785)] = 48654, - [SMALL_STATE(786)] = 48705, - [SMALL_STATE(787)] = 48756, - [SMALL_STATE(788)] = 48807, - [SMALL_STATE(789)] = 48858, - [SMALL_STATE(790)] = 48909, - [SMALL_STATE(791)] = 48960, - [SMALL_STATE(792)] = 49011, - [SMALL_STATE(793)] = 49062, - [SMALL_STATE(794)] = 49113, - [SMALL_STATE(795)] = 49164, - [SMALL_STATE(796)] = 49215, - [SMALL_STATE(797)] = 49266, - [SMALL_STATE(798)] = 49317, - [SMALL_STATE(799)] = 49368, - [SMALL_STATE(800)] = 49419, - [SMALL_STATE(801)] = 49470, - [SMALL_STATE(802)] = 49521, - [SMALL_STATE(803)] = 49572, - [SMALL_STATE(804)] = 49623, - [SMALL_STATE(805)] = 49674, - [SMALL_STATE(806)] = 49725, - [SMALL_STATE(807)] = 49776, - [SMALL_STATE(808)] = 49827, - [SMALL_STATE(809)] = 49878, - [SMALL_STATE(810)] = 49929, - [SMALL_STATE(811)] = 49980, - [SMALL_STATE(812)] = 50031, - [SMALL_STATE(813)] = 50082, - [SMALL_STATE(814)] = 50133, - [SMALL_STATE(815)] = 50213, - [SMALL_STATE(816)] = 50293, - [SMALL_STATE(817)] = 50373, - [SMALL_STATE(818)] = 50453, - [SMALL_STATE(819)] = 50533, - [SMALL_STATE(820)] = 50613, - [SMALL_STATE(821)] = 50693, - [SMALL_STATE(822)] = 50773, - [SMALL_STATE(823)] = 50853, - [SMALL_STATE(824)] = 50933, - [SMALL_STATE(825)] = 51013, - [SMALL_STATE(826)] = 51093, - [SMALL_STATE(827)] = 51173, - [SMALL_STATE(828)] = 51253, - [SMALL_STATE(829)] = 51330, - [SMALL_STATE(830)] = 51407, - [SMALL_STATE(831)] = 51484, - [SMALL_STATE(832)] = 51534, - [SMALL_STATE(833)] = 51584, - [SMALL_STATE(834)] = 51634, - [SMALL_STATE(835)] = 51684, - [SMALL_STATE(836)] = 51764, - [SMALL_STATE(837)] = 51844, - [SMALL_STATE(838)] = 51894, - [SMALL_STATE(839)] = 51964, - [SMALL_STATE(840)] = 52044, - [SMALL_STATE(841)] = 52094, - [SMALL_STATE(842)] = 52144, - [SMALL_STATE(843)] = 52214, - [SMALL_STATE(844)] = 52264, - [SMALL_STATE(845)] = 52314, - [SMALL_STATE(846)] = 52363, - [SMALL_STATE(847)] = 52432, - [SMALL_STATE(848)] = 52487, - [SMALL_STATE(849)] = 52550, - [SMALL_STATE(850)] = 52599, - [SMALL_STATE(851)] = 52668, - [SMALL_STATE(852)] = 52723, - [SMALL_STATE(853)] = 52778, - [SMALL_STATE(854)] = 52847, - [SMALL_STATE(855)] = 52910, - [SMALL_STATE(856)] = 52975, - [SMALL_STATE(857)] = 53042, - [SMALL_STATE(858)] = 53101, - [SMALL_STATE(859)] = 53162, - [SMALL_STATE(860)] = 53231, - [SMALL_STATE(861)] = 53286, - [SMALL_STATE(862)] = 53355, - [SMALL_STATE(863)] = 53416, - [SMALL_STATE(864)] = 53495, - [SMALL_STATE(865)] = 53550, - [SMALL_STATE(866)] = 53605, - [SMALL_STATE(867)] = 53654, - [SMALL_STATE(868)] = 53713, - [SMALL_STATE(869)] = 53778, - [SMALL_STATE(870)] = 53843, - [SMALL_STATE(871)] = 53898, - [SMALL_STATE(872)] = 53963, - [SMALL_STATE(873)] = 54030, - [SMALL_STATE(874)] = 54099, - [SMALL_STATE(875)] = 54178, - [SMALL_STATE(876)] = 54227, - [SMALL_STATE(877)] = 54292, - [SMALL_STATE(878)] = 54347, - [SMALL_STATE(879)] = 54412, - [SMALL_STATE(880)] = 54461, - [SMALL_STATE(881)] = 54526, - [SMALL_STATE(882)] = 54575, - [SMALL_STATE(883)] = 54640, - [SMALL_STATE(884)] = 54719, - [SMALL_STATE(885)] = 54768, - [SMALL_STATE(886)] = 54833, - [SMALL_STATE(887)] = 54902, - [SMALL_STATE(888)] = 54971, - [SMALL_STATE(889)] = 55036, - [SMALL_STATE(890)] = 55085, - [SMALL_STATE(891)] = 55148, - [SMALL_STATE(892)] = 55213, - [SMALL_STATE(893)] = 55280, - [SMALL_STATE(894)] = 55339, - [SMALL_STATE(895)] = 55394, - [SMALL_STATE(896)] = 55463, - [SMALL_STATE(897)] = 55512, - [SMALL_STATE(898)] = 55573, - [SMALL_STATE(899)] = 55631, - [SMALL_STATE(900)] = 55699, - [SMALL_STATE(901)] = 55761, - [SMALL_STATE(902)] = 55823, - [SMALL_STATE(903)] = 55891, - [SMALL_STATE(904)] = 55959, - [SMALL_STATE(905)] = 56007, - [SMALL_STATE(906)] = 56069, - [SMALL_STATE(907)] = 56115, - [SMALL_STATE(908)] = 56161, - [SMALL_STATE(909)] = 56223, - [SMALL_STATE(910)] = 56285, - [SMALL_STATE(911)] = 56347, - [SMALL_STATE(912)] = 56409, - [SMALL_STATE(913)] = 56487, - [SMALL_STATE(914)] = 56549, - [SMALL_STATE(915)] = 56597, - [SMALL_STATE(916)] = 56641, - [SMALL_STATE(917)] = 56695, - [SMALL_STATE(918)] = 56757, - [SMALL_STATE(919)] = 56819, - [SMALL_STATE(920)] = 56881, - [SMALL_STATE(921)] = 56943, - [SMALL_STATE(922)] = 57005, - [SMALL_STATE(923)] = 57073, - [SMALL_STATE(924)] = 57141, - [SMALL_STATE(925)] = 57203, - [SMALL_STATE(926)] = 57265, - [SMALL_STATE(927)] = 57327, - [SMALL_STATE(928)] = 57389, - [SMALL_STATE(929)] = 57451, - [SMALL_STATE(930)] = 57513, - [SMALL_STATE(931)] = 57575, - [SMALL_STATE(932)] = 57637, - [SMALL_STATE(933)] = 57681, - [SMALL_STATE(934)] = 57743, - [SMALL_STATE(935)] = 57791, - [SMALL_STATE(936)] = 57853, - [SMALL_STATE(937)] = 57915, - [SMALL_STATE(938)] = 57977, - [SMALL_STATE(939)] = 58039, - [SMALL_STATE(940)] = 58101, - [SMALL_STATE(941)] = 58163, - [SMALL_STATE(942)] = 58225, - [SMALL_STATE(943)] = 58287, - [SMALL_STATE(944)] = 58349, - [SMALL_STATE(945)] = 58411, - [SMALL_STATE(946)] = 58473, - [SMALL_STATE(947)] = 58535, - [SMALL_STATE(948)] = 58597, - [SMALL_STATE(949)] = 58643, - [SMALL_STATE(950)] = 58691, - [SMALL_STATE(951)] = 58735, - [SMALL_STATE(952)] = 58797, - [SMALL_STATE(953)] = 58859, - [SMALL_STATE(954)] = 58921, - [SMALL_STATE(955)] = 58983, - [SMALL_STATE(956)] = 59045, - [SMALL_STATE(957)] = 59091, - [SMALL_STATE(958)] = 59157, - [SMALL_STATE(959)] = 59219, - [SMALL_STATE(960)] = 59281, - [SMALL_STATE(961)] = 59345, - [SMALL_STATE(962)] = 59407, - [SMALL_STATE(963)] = 59469, - [SMALL_STATE(964)] = 59531, - [SMALL_STATE(965)] = 59593, - [SMALL_STATE(966)] = 59659, - [SMALL_STATE(967)] = 59721, - [SMALL_STATE(968)] = 59779, - [SMALL_STATE(969)] = 59841, - [SMALL_STATE(970)] = 59903, - [SMALL_STATE(971)] = 59957, - [SMALL_STATE(972)] = 60011, - [SMALL_STATE(973)] = 60071, - [SMALL_STATE(974)] = 60133, - [SMALL_STATE(975)] = 60187, - [SMALL_STATE(976)] = 60249, - [SMALL_STATE(977)] = 60311, - [SMALL_STATE(978)] = 60373, - [SMALL_STATE(979)] = 60435, - [SMALL_STATE(980)] = 60501, - [SMALL_STATE(981)] = 60563, - [SMALL_STATE(982)] = 60625, - [SMALL_STATE(983)] = 60691, - [SMALL_STATE(984)] = 60753, - [SMALL_STATE(985)] = 60815, - [SMALL_STATE(986)] = 60877, - [SMALL_STATE(987)] = 60941, - [SMALL_STATE(988)] = 61007, - [SMALL_STATE(989)] = 61069, - [SMALL_STATE(990)] = 61117, - [SMALL_STATE(991)] = 61161, - [SMALL_STATE(992)] = 61223, - [SMALL_STATE(993)] = 61299, - [SMALL_STATE(994)] = 61361, - [SMALL_STATE(995)] = 61423, - [SMALL_STATE(996)] = 61477, - [SMALL_STATE(997)] = 61545, - [SMALL_STATE(998)] = 61605, - [SMALL_STATE(999)] = 61659, - [SMALL_STATE(1000)] = 61721, - [SMALL_STATE(1001)] = 61783, - [SMALL_STATE(1002)] = 61845, - [SMALL_STATE(1003)] = 61899, - [SMALL_STATE(1004)] = 61961, - [SMALL_STATE(1005)] = 62023, - [SMALL_STATE(1006)] = 62085, - [SMALL_STATE(1007)] = 62147, - [SMALL_STATE(1008)] = 62195, - [SMALL_STATE(1009)] = 62243, - [SMALL_STATE(1010)] = 62305, - [SMALL_STATE(1011)] = 62367, - [SMALL_STATE(1012)] = 62421, - [SMALL_STATE(1013)] = 62481, - [SMALL_STATE(1014)] = 62543, - [SMALL_STATE(1015)] = 62611, - [SMALL_STATE(1016)] = 62665, - [SMALL_STATE(1017)] = 62727, - [SMALL_STATE(1018)] = 62771, - [SMALL_STATE(1019)] = 62819, - [SMALL_STATE(1020)] = 62881, - [SMALL_STATE(1021)] = 62943, - [SMALL_STATE(1022)] = 63005, - [SMALL_STATE(1023)] = 63067, - [SMALL_STATE(1024)] = 63133, - [SMALL_STATE(1025)] = 63191, - [SMALL_STATE(1026)] = 63257, - [SMALL_STATE(1027)] = 63319, - [SMALL_STATE(1028)] = 63383, - [SMALL_STATE(1029)] = 63445, - [SMALL_STATE(1030)] = 63507, - [SMALL_STATE(1031)] = 63569, - [SMALL_STATE(1032)] = 63631, - [SMALL_STATE(1033)] = 63693, - [SMALL_STATE(1034)] = 63755, - [SMALL_STATE(1035)] = 63817, - [SMALL_STATE(1036)] = 63879, - [SMALL_STATE(1037)] = 63941, - [SMALL_STATE(1038)] = 63985, - [SMALL_STATE(1039)] = 64047, - [SMALL_STATE(1040)] = 64109, - [SMALL_STATE(1041)] = 64175, - [SMALL_STATE(1042)] = 64221, - [SMALL_STATE(1043)] = 64267, - [SMALL_STATE(1044)] = 64329, - [SMALL_STATE(1045)] = 64397, - [SMALL_STATE(1046)] = 64465, - [SMALL_STATE(1047)] = 64508, - [SMALL_STATE(1048)] = 64551, - [SMALL_STATE(1049)] = 64596, - [SMALL_STATE(1050)] = 64639, - [SMALL_STATE(1051)] = 64682, - [SMALL_STATE(1052)] = 64725, - [SMALL_STATE(1053)] = 64768, - [SMALL_STATE(1054)] = 64811, - [SMALL_STATE(1055)] = 64854, - [SMALL_STATE(1056)] = 64897, - [SMALL_STATE(1057)] = 64940, - [SMALL_STATE(1058)] = 64985, - [SMALL_STATE(1059)] = 65052, - [SMALL_STATE(1060)] = 65095, - [SMALL_STATE(1061)] = 65162, - [SMALL_STATE(1062)] = 65205, - [SMALL_STATE(1063)] = 65250, - [SMALL_STATE(1064)] = 65295, - [SMALL_STATE(1065)] = 65338, - [SMALL_STATE(1066)] = 65381, - [SMALL_STATE(1067)] = 65424, - [SMALL_STATE(1068)] = 65467, - [SMALL_STATE(1069)] = 65510, - [SMALL_STATE(1070)] = 65553, - [SMALL_STATE(1071)] = 65596, - [SMALL_STATE(1072)] = 65639, - [SMALL_STATE(1073)] = 65686, - [SMALL_STATE(1074)] = 65729, - [SMALL_STATE(1075)] = 65772, - [SMALL_STATE(1076)] = 65815, - [SMALL_STATE(1077)] = 65858, - [SMALL_STATE(1078)] = 65901, - [SMALL_STATE(1079)] = 65962, - [SMALL_STATE(1080)] = 66005, - [SMALL_STATE(1081)] = 66048, - [SMALL_STATE(1082)] = 66091, - [SMALL_STATE(1083)] = 66134, - [SMALL_STATE(1084)] = 66197, - [SMALL_STATE(1085)] = 66262, - [SMALL_STATE(1086)] = 66319, - [SMALL_STATE(1087)] = 66362, - [SMALL_STATE(1088)] = 66405, - [SMALL_STATE(1089)] = 66448, - [SMALL_STATE(1090)] = 66501, - [SMALL_STATE(1091)] = 66544, - [SMALL_STATE(1092)] = 66587, - [SMALL_STATE(1093)] = 66654, - [SMALL_STATE(1094)] = 66713, - [SMALL_STATE(1095)] = 66766, - [SMALL_STATE(1096)] = 66809, - [SMALL_STATE(1097)] = 66852, - [SMALL_STATE(1098)] = 66895, - [SMALL_STATE(1099)] = 66942, - [SMALL_STATE(1100)] = 66985, - [SMALL_STATE(1101)] = 67028, - [SMALL_STATE(1102)] = 67071, - [SMALL_STATE(1103)] = 67114, - [SMALL_STATE(1104)] = 67157, - [SMALL_STATE(1105)] = 67200, - [SMALL_STATE(1106)] = 67243, - [SMALL_STATE(1107)] = 67286, - [SMALL_STATE(1108)] = 67339, - [SMALL_STATE(1109)] = 67382, - [SMALL_STATE(1110)] = 67425, - [SMALL_STATE(1111)] = 67468, - [SMALL_STATE(1112)] = 67511, - [SMALL_STATE(1113)] = 67554, - [SMALL_STATE(1114)] = 67597, - [SMALL_STATE(1115)] = 67640, - [SMALL_STATE(1116)] = 67683, - [SMALL_STATE(1117)] = 67726, - [SMALL_STATE(1118)] = 67793, - [SMALL_STATE(1119)] = 67836, - [SMALL_STATE(1120)] = 67879, - [SMALL_STATE(1121)] = 67946, - [SMALL_STATE(1122)] = 67993, - [SMALL_STATE(1123)] = 68036, - [SMALL_STATE(1124)] = 68079, - [SMALL_STATE(1125)] = 68122, - [SMALL_STATE(1126)] = 68165, - [SMALL_STATE(1127)] = 68208, - [SMALL_STATE(1128)] = 68251, - [SMALL_STATE(1129)] = 68294, - [SMALL_STATE(1130)] = 68337, - [SMALL_STATE(1131)] = 68380, - [SMALL_STATE(1132)] = 68427, - [SMALL_STATE(1133)] = 68470, - [SMALL_STATE(1134)] = 68513, - [SMALL_STATE(1135)] = 68556, - [SMALL_STATE(1136)] = 68599, - [SMALL_STATE(1137)] = 68642, - [SMALL_STATE(1138)] = 68685, - [SMALL_STATE(1139)] = 68728, - [SMALL_STATE(1140)] = 68771, - [SMALL_STATE(1141)] = 68814, - [SMALL_STATE(1142)] = 68857, - [SMALL_STATE(1143)] = 68900, - [SMALL_STATE(1144)] = 68943, - [SMALL_STATE(1145)] = 68986, - [SMALL_STATE(1146)] = 69029, - [SMALL_STATE(1147)] = 69072, - [SMALL_STATE(1148)] = 69115, - [SMALL_STATE(1149)] = 69158, - [SMALL_STATE(1150)] = 69201, - [SMALL_STATE(1151)] = 69254, - [SMALL_STATE(1152)] = 69297, - [SMALL_STATE(1153)] = 69342, - [SMALL_STATE(1154)] = 69385, - [SMALL_STATE(1155)] = 69428, - [SMALL_STATE(1156)] = 69473, - [SMALL_STATE(1157)] = 69516, - [SMALL_STATE(1158)] = 69559, - [SMALL_STATE(1159)] = 69612, - [SMALL_STATE(1160)] = 69671, - [SMALL_STATE(1161)] = 69738, - [SMALL_STATE(1162)] = 69781, - [SMALL_STATE(1163)] = 69824, - [SMALL_STATE(1164)] = 69867, - [SMALL_STATE(1165)] = 69910, - [SMALL_STATE(1166)] = 69953, - [SMALL_STATE(1167)] = 69996, - [SMALL_STATE(1168)] = 70039, - [SMALL_STATE(1169)] = 70082, - [SMALL_STATE(1170)] = 70125, - [SMALL_STATE(1171)] = 70168, - [SMALL_STATE(1172)] = 70221, - [SMALL_STATE(1173)] = 70278, - [SMALL_STATE(1174)] = 70321, - [SMALL_STATE(1175)] = 70386, - [SMALL_STATE(1176)] = 70449, - [SMALL_STATE(1177)] = 70510, - [SMALL_STATE(1178)] = 70552, - [SMALL_STATE(1179)] = 70594, - [SMALL_STATE(1180)] = 70638, - [SMALL_STATE(1181)] = 70680, - [SMALL_STATE(1182)] = 70722, - [SMALL_STATE(1183)] = 70766, - [SMALL_STATE(1184)] = 70810, - [SMALL_STATE(1185)] = 70852, - [SMALL_STATE(1186)] = 70894, - [SMALL_STATE(1187)] = 70936, - [SMALL_STATE(1188)] = 70978, - [SMALL_STATE(1189)] = 71020, - [SMALL_STATE(1190)] = 71062, - [SMALL_STATE(1191)] = 71104, - [SMALL_STATE(1192)] = 71146, - [SMALL_STATE(1193)] = 71188, - [SMALL_STATE(1194)] = 71230, - [SMALL_STATE(1195)] = 71272, - [SMALL_STATE(1196)] = 71314, - [SMALL_STATE(1197)] = 71356, - [SMALL_STATE(1198)] = 71398, - [SMALL_STATE(1199)] = 71440, - [SMALL_STATE(1200)] = 71482, - [SMALL_STATE(1201)] = 71524, - [SMALL_STATE(1202)] = 71566, - [SMALL_STATE(1203)] = 71608, - [SMALL_STATE(1204)] = 71650, - [SMALL_STATE(1205)] = 71692, - [SMALL_STATE(1206)] = 71734, - [SMALL_STATE(1207)] = 71776, - [SMALL_STATE(1208)] = 71818, - [SMALL_STATE(1209)] = 71860, - [SMALL_STATE(1210)] = 71902, - [SMALL_STATE(1211)] = 71944, - [SMALL_STATE(1212)] = 71988, - [SMALL_STATE(1213)] = 72030, - [SMALL_STATE(1214)] = 72072, - [SMALL_STATE(1215)] = 72114, - [SMALL_STATE(1216)] = 72156, - [SMALL_STATE(1217)] = 72198, - [SMALL_STATE(1218)] = 72240, - [SMALL_STATE(1219)] = 72284, - [SMALL_STATE(1220)] = 72326, - [SMALL_STATE(1221)] = 72368, - [SMALL_STATE(1222)] = 72410, - [SMALL_STATE(1223)] = 72452, - [SMALL_STATE(1224)] = 72496, - [SMALL_STATE(1225)] = 72540, - [SMALL_STATE(1226)] = 72582, - [SMALL_STATE(1227)] = 72624, - [SMALL_STATE(1228)] = 72666, - [SMALL_STATE(1229)] = 72708, - [SMALL_STATE(1230)] = 72750, - [SMALL_STATE(1231)] = 72794, - [SMALL_STATE(1232)] = 72836, - [SMALL_STATE(1233)] = 72878, - [SMALL_STATE(1234)] = 72920, - [SMALL_STATE(1235)] = 72964, - [SMALL_STATE(1236)] = 73008, - [SMALL_STATE(1237)] = 73050, - [SMALL_STATE(1238)] = 73092, - [SMALL_STATE(1239)] = 73136, - [SMALL_STATE(1240)] = 73178, - [SMALL_STATE(1241)] = 73224, - [SMALL_STATE(1242)] = 73266, - [SMALL_STATE(1243)] = 73308, - [SMALL_STATE(1244)] = 73354, - [SMALL_STATE(1245)] = 73396, - [SMALL_STATE(1246)] = 73438, - [SMALL_STATE(1247)] = 73480, - [SMALL_STATE(1248)] = 73522, - [SMALL_STATE(1249)] = 73564, - [SMALL_STATE(1250)] = 73606, - [SMALL_STATE(1251)] = 73648, - [SMALL_STATE(1252)] = 73692, - [SMALL_STATE(1253)] = 73734, - [SMALL_STATE(1254)] = 73776, - [SMALL_STATE(1255)] = 73818, - [SMALL_STATE(1256)] = 73860, - [SMALL_STATE(1257)] = 73902, - [SMALL_STATE(1258)] = 73944, - [SMALL_STATE(1259)] = 73986, - [SMALL_STATE(1260)] = 74028, - [SMALL_STATE(1261)] = 74070, - [SMALL_STATE(1262)] = 74112, - [SMALL_STATE(1263)] = 74154, - [SMALL_STATE(1264)] = 74196, - [SMALL_STATE(1265)] = 74238, - [SMALL_STATE(1266)] = 74280, - [SMALL_STATE(1267)] = 74322, - [SMALL_STATE(1268)] = 74364, - [SMALL_STATE(1269)] = 74406, - [SMALL_STATE(1270)] = 74448, - [SMALL_STATE(1271)] = 74490, - [SMALL_STATE(1272)] = 74532, - [SMALL_STATE(1273)] = 74574, - [SMALL_STATE(1274)] = 74616, - [SMALL_STATE(1275)] = 74657, - [SMALL_STATE(1276)] = 74698, - [SMALL_STATE(1277)] = 74739, - [SMALL_STATE(1278)] = 74780, - [SMALL_STATE(1279)] = 74821, - [SMALL_STATE(1280)] = 74864, - [SMALL_STATE(1281)] = 74905, - [SMALL_STATE(1282)] = 74946, - [SMALL_STATE(1283)] = 74989, - [SMALL_STATE(1284)] = 75030, - [SMALL_STATE(1285)] = 75071, - [SMALL_STATE(1286)] = 75114, - [SMALL_STATE(1287)] = 75155, - [SMALL_STATE(1288)] = 75196, - [SMALL_STATE(1289)] = 75237, - [SMALL_STATE(1290)] = 75278, - [SMALL_STATE(1291)] = 75319, - [SMALL_STATE(1292)] = 75360, - [SMALL_STATE(1293)] = 75401, - [SMALL_STATE(1294)] = 75442, - [SMALL_STATE(1295)] = 75483, - [SMALL_STATE(1296)] = 75524, - [SMALL_STATE(1297)] = 75565, - [SMALL_STATE(1298)] = 75606, - [SMALL_STATE(1299)] = 75647, - [SMALL_STATE(1300)] = 75688, - [SMALL_STATE(1301)] = 75729, - [SMALL_STATE(1302)] = 75770, - [SMALL_STATE(1303)] = 75811, - [SMALL_STATE(1304)] = 75852, - [SMALL_STATE(1305)] = 75893, - [SMALL_STATE(1306)] = 75934, - [SMALL_STATE(1307)] = 75979, - [SMALL_STATE(1308)] = 76020, - [SMALL_STATE(1309)] = 76061, - [SMALL_STATE(1310)] = 76102, - [SMALL_STATE(1311)] = 76145, - [SMALL_STATE(1312)] = 76186, - [SMALL_STATE(1313)] = 76227, - [SMALL_STATE(1314)] = 76272, - [SMALL_STATE(1315)] = 76313, - [SMALL_STATE(1316)] = 76354, - [SMALL_STATE(1317)] = 76395, - [SMALL_STATE(1318)] = 76436, - [SMALL_STATE(1319)] = 76477, - [SMALL_STATE(1320)] = 76518, - [SMALL_STATE(1321)] = 76559, - [SMALL_STATE(1322)] = 76600, - [SMALL_STATE(1323)] = 76645, - [SMALL_STATE(1324)] = 76690, - [SMALL_STATE(1325)] = 76731, - [SMALL_STATE(1326)] = 76772, - [SMALL_STATE(1327)] = 76813, - [SMALL_STATE(1328)] = 76854, - [SMALL_STATE(1329)] = 76895, - [SMALL_STATE(1330)] = 76936, - [SMALL_STATE(1331)] = 76977, - [SMALL_STATE(1332)] = 77018, - [SMALL_STATE(1333)] = 77059, - [SMALL_STATE(1334)] = 77100, - [SMALL_STATE(1335)] = 77141, - [SMALL_STATE(1336)] = 77182, - [SMALL_STATE(1337)] = 77223, - [SMALL_STATE(1338)] = 77264, - [SMALL_STATE(1339)] = 77305, - [SMALL_STATE(1340)] = 77346, - [SMALL_STATE(1341)] = 77387, - [SMALL_STATE(1342)] = 77428, - [SMALL_STATE(1343)] = 77469, - [SMALL_STATE(1344)] = 77510, - [SMALL_STATE(1345)] = 77552, - [SMALL_STATE(1346)] = 77594, - [SMALL_STATE(1347)] = 77632, - [SMALL_STATE(1348)] = 77670, - [SMALL_STATE(1349)] = 77708, - [SMALL_STATE(1350)] = 77746, - [SMALL_STATE(1351)] = 77784, - [SMALL_STATE(1352)] = 77822, - [SMALL_STATE(1353)] = 77859, - [SMALL_STATE(1354)] = 77896, - [SMALL_STATE(1355)] = 77925, - [SMALL_STATE(1356)] = 77962, - [SMALL_STATE(1357)] = 77999, - [SMALL_STATE(1358)] = 78036, - [SMALL_STATE(1359)] = 78073, - [SMALL_STATE(1360)] = 78102, - [SMALL_STATE(1361)] = 78131, - [SMALL_STATE(1362)] = 78160, - [SMALL_STATE(1363)] = 78188, - [SMALL_STATE(1364)] = 78216, - [SMALL_STATE(1365)] = 78262, - [SMALL_STATE(1366)] = 78298, - [SMALL_STATE(1367)] = 78334, - [SMALL_STATE(1368)] = 78362, - [SMALL_STATE(1369)] = 78390, - [SMALL_STATE(1370)] = 78436, - [SMALL_STATE(1371)] = 78470, - [SMALL_STATE(1372)] = 78498, - [SMALL_STATE(1373)] = 78532, - [SMALL_STATE(1374)] = 78578, - [SMALL_STATE(1375)] = 78606, - [SMALL_STATE(1376)] = 78634, - [SMALL_STATE(1377)] = 78662, - [SMALL_STATE(1378)] = 78690, - [SMALL_STATE(1379)] = 78718, - [SMALL_STATE(1380)] = 78746, - [SMALL_STATE(1381)] = 78774, - [SMALL_STATE(1382)] = 78802, - [SMALL_STATE(1383)] = 78830, - [SMALL_STATE(1384)] = 78873, - [SMALL_STATE(1385)] = 78916, - [SMALL_STATE(1386)] = 78939, - [SMALL_STATE(1387)] = 78982, - [SMALL_STATE(1388)] = 79025, - [SMALL_STATE(1389)] = 79048, - [SMALL_STATE(1390)] = 79091, - [SMALL_STATE(1391)] = 79114, - [SMALL_STATE(1392)] = 79157, - [SMALL_STATE(1393)] = 79188, - [SMALL_STATE(1394)] = 79231, - [SMALL_STATE(1395)] = 79274, - [SMALL_STATE(1396)] = 79297, - [SMALL_STATE(1397)] = 79340, - [SMALL_STATE(1398)] = 79383, - [SMALL_STATE(1399)] = 79426, - [SMALL_STATE(1400)] = 79466, - [SMALL_STATE(1401)] = 79503, - [SMALL_STATE(1402)] = 79540, - [SMALL_STATE(1403)] = 79565, - [SMALL_STATE(1404)] = 79602, - [SMALL_STATE(1405)] = 79639, - [SMALL_STATE(1406)] = 79673, - [SMALL_STATE(1407)] = 79707, - [SMALL_STATE(1408)] = 79747, - [SMALL_STATE(1409)] = 79787, - [SMALL_STATE(1410)] = 79827, - [SMALL_STATE(1411)] = 79867, - [SMALL_STATE(1412)] = 79907, - [SMALL_STATE(1413)] = 79947, - [SMALL_STATE(1414)] = 79987, - [SMALL_STATE(1415)] = 80027, - [SMALL_STATE(1416)] = 80064, - [SMALL_STATE(1417)] = 80101, - [SMALL_STATE(1418)] = 80138, - [SMALL_STATE(1419)] = 80175, - [SMALL_STATE(1420)] = 80212, - [SMALL_STATE(1421)] = 80249, - [SMALL_STATE(1422)] = 80286, - [SMALL_STATE(1423)] = 80323, - [SMALL_STATE(1424)] = 80360, - [SMALL_STATE(1425)] = 80397, - [SMALL_STATE(1426)] = 80434, - [SMALL_STATE(1427)] = 80471, - [SMALL_STATE(1428)] = 80508, - [SMALL_STATE(1429)] = 80545, - [SMALL_STATE(1430)] = 80582, - [SMALL_STATE(1431)] = 80619, - [SMALL_STATE(1432)] = 80656, - [SMALL_STATE(1433)] = 80693, - [SMALL_STATE(1434)] = 80730, - [SMALL_STATE(1435)] = 80767, - [SMALL_STATE(1436)] = 80804, - [SMALL_STATE(1437)] = 80841, - [SMALL_STATE(1438)] = 80878, - [SMALL_STATE(1439)] = 80915, - [SMALL_STATE(1440)] = 80952, - [SMALL_STATE(1441)] = 80982, - [SMALL_STATE(1442)] = 81012, - [SMALL_STATE(1443)] = 81042, - [SMALL_STATE(1444)] = 81072, - [SMALL_STATE(1445)] = 81102, - [SMALL_STATE(1446)] = 81132, - [SMALL_STATE(1447)] = 81160, - [SMALL_STATE(1448)] = 81190, - [SMALL_STATE(1449)] = 81220, - [SMALL_STATE(1450)] = 81250, - [SMALL_STATE(1451)] = 81280, - [SMALL_STATE(1452)] = 81310, - [SMALL_STATE(1453)] = 81340, - [SMALL_STATE(1454)] = 81370, - [SMALL_STATE(1455)] = 81400, - [SMALL_STATE(1456)] = 81430, - [SMALL_STATE(1457)] = 81460, - [SMALL_STATE(1458)] = 81490, - [SMALL_STATE(1459)] = 81520, - [SMALL_STATE(1460)] = 81548, - [SMALL_STATE(1461)] = 81578, - [SMALL_STATE(1462)] = 81599, - [SMALL_STATE(1463)] = 81622, - [SMALL_STATE(1464)] = 81643, - [SMALL_STATE(1465)] = 81660, - [SMALL_STATE(1466)] = 81675, - [SMALL_STATE(1467)] = 81694, - [SMALL_STATE(1468)] = 81709, - [SMALL_STATE(1469)] = 81728, - [SMALL_STATE(1470)] = 81749, - [SMALL_STATE(1471)] = 81772, - [SMALL_STATE(1472)] = 81791, - [SMALL_STATE(1473)] = 81814, - [SMALL_STATE(1474)] = 81831, - [SMALL_STATE(1475)] = 81846, - [SMALL_STATE(1476)] = 81863, - [SMALL_STATE(1477)] = 81892, - [SMALL_STATE(1478)] = 81913, - [SMALL_STATE(1479)] = 81928, - [SMALL_STATE(1480)] = 81951, - [SMALL_STATE(1481)] = 81966, - [SMALL_STATE(1482)] = 81989, - [SMALL_STATE(1483)] = 82012, - [SMALL_STATE(1484)] = 82035, - [SMALL_STATE(1485)] = 82058, - [SMALL_STATE(1486)] = 82075, - [SMALL_STATE(1487)] = 82092, - [SMALL_STATE(1488)] = 82107, - [SMALL_STATE(1489)] = 82122, - [SMALL_STATE(1490)] = 82145, - [SMALL_STATE(1491)] = 82162, - [SMALL_STATE(1492)] = 82185, - [SMALL_STATE(1493)] = 82208, - [SMALL_STATE(1494)] = 82223, - [SMALL_STATE(1495)] = 82247, - [SMALL_STATE(1496)] = 82275, - [SMALL_STATE(1497)] = 82293, - [SMALL_STATE(1498)] = 82321, - [SMALL_STATE(1499)] = 82349, - [SMALL_STATE(1500)] = 82365, - [SMALL_STATE(1501)] = 82389, - [SMALL_STATE(1502)] = 82409, - [SMALL_STATE(1503)] = 82431, - [SMALL_STATE(1504)] = 82457, - [SMALL_STATE(1505)] = 82477, - [SMALL_STATE(1506)] = 82505, - [SMALL_STATE(1507)] = 82521, - [SMALL_STATE(1508)] = 82543, - [SMALL_STATE(1509)] = 82571, - [SMALL_STATE(1510)] = 82591, - [SMALL_STATE(1511)] = 82615, - [SMALL_STATE(1512)] = 82631, - [SMALL_STATE(1513)] = 82653, - [SMALL_STATE(1514)] = 82673, - [SMALL_STATE(1515)] = 82697, - [SMALL_STATE(1516)] = 82717, - [SMALL_STATE(1517)] = 82735, - [SMALL_STATE(1518)] = 82763, - [SMALL_STATE(1519)] = 82785, - [SMALL_STATE(1520)] = 82809, - [SMALL_STATE(1521)] = 82825, - [SMALL_STATE(1522)] = 82841, - [SMALL_STATE(1523)] = 82855, - [SMALL_STATE(1524)] = 82875, - [SMALL_STATE(1525)] = 82897, - [SMALL_STATE(1526)] = 82919, - [SMALL_STATE(1527)] = 82933, - [SMALL_STATE(1528)] = 82947, - [SMALL_STATE(1529)] = 82969, - [SMALL_STATE(1530)] = 82989, - [SMALL_STATE(1531)] = 83011, - [SMALL_STATE(1532)] = 83037, - [SMALL_STATE(1533)] = 83059, - [SMALL_STATE(1534)] = 83087, - [SMALL_STATE(1535)] = 83113, - [SMALL_STATE(1536)] = 83127, - [SMALL_STATE(1537)] = 83155, - [SMALL_STATE(1538)] = 83181, - [SMALL_STATE(1539)] = 83201, - [SMALL_STATE(1540)] = 83227, - [SMALL_STATE(1541)] = 83255, - [SMALL_STATE(1542)] = 83281, - [SMALL_STATE(1543)] = 83301, - [SMALL_STATE(1544)] = 83323, - [SMALL_STATE(1545)] = 83339, - [SMALL_STATE(1546)] = 83365, - [SMALL_STATE(1547)] = 83385, - [SMALL_STATE(1548)] = 83401, - [SMALL_STATE(1549)] = 83421, - [SMALL_STATE(1550)] = 83445, - [SMALL_STATE(1551)] = 83463, - [SMALL_STATE(1552)] = 83485, - [SMALL_STATE(1553)] = 83505, - [SMALL_STATE(1554)] = 83531, - [SMALL_STATE(1555)] = 83547, - [SMALL_STATE(1556)] = 83567, - [SMALL_STATE(1557)] = 83595, - [SMALL_STATE(1558)] = 83615, - [SMALL_STATE(1559)] = 83631, - [SMALL_STATE(1560)] = 83652, - [SMALL_STATE(1561)] = 83677, - [SMALL_STATE(1562)] = 83698, - [SMALL_STATE(1563)] = 83717, - [SMALL_STATE(1564)] = 83740, - [SMALL_STATE(1565)] = 83761, - [SMALL_STATE(1566)] = 83784, - [SMALL_STATE(1567)] = 83805, - [SMALL_STATE(1568)] = 83818, - [SMALL_STATE(1569)] = 83839, - [SMALL_STATE(1570)] = 83864, - [SMALL_STATE(1571)] = 83877, - [SMALL_STATE(1572)] = 83890, - [SMALL_STATE(1573)] = 83915, - [SMALL_STATE(1574)] = 83940, - [SMALL_STATE(1575)] = 83961, - [SMALL_STATE(1576)] = 83980, - [SMALL_STATE(1577)] = 84001, - [SMALL_STATE(1578)] = 84026, - [SMALL_STATE(1579)] = 84047, - [SMALL_STATE(1580)] = 84060, - [SMALL_STATE(1581)] = 84079, - [SMALL_STATE(1582)] = 84096, - [SMALL_STATE(1583)] = 84109, - [SMALL_STATE(1584)] = 84124, - [SMALL_STATE(1585)] = 84145, - [SMALL_STATE(1586)] = 84166, - [SMALL_STATE(1587)] = 84191, - [SMALL_STATE(1588)] = 84204, - [SMALL_STATE(1589)] = 84225, - [SMALL_STATE(1590)] = 84244, - [SMALL_STATE(1591)] = 84269, - [SMALL_STATE(1592)] = 84286, - [SMALL_STATE(1593)] = 84307, - [SMALL_STATE(1594)] = 84326, - [SMALL_STATE(1595)] = 84339, - [SMALL_STATE(1596)] = 84362, - [SMALL_STATE(1597)] = 84387, - [SMALL_STATE(1598)] = 84402, - [SMALL_STATE(1599)] = 84415, - [SMALL_STATE(1600)] = 84436, - [SMALL_STATE(1601)] = 84457, - [SMALL_STATE(1602)] = 84478, - [SMALL_STATE(1603)] = 84499, - [SMALL_STATE(1604)] = 84524, - [SMALL_STATE(1605)] = 84549, - [SMALL_STATE(1606)] = 84570, - [SMALL_STATE(1607)] = 84595, - [SMALL_STATE(1608)] = 84620, - [SMALL_STATE(1609)] = 84645, - [SMALL_STATE(1610)] = 84666, - [SMALL_STATE(1611)] = 84687, - [SMALL_STATE(1612)] = 84708, - [SMALL_STATE(1613)] = 84729, - [SMALL_STATE(1614)] = 84752, - [SMALL_STATE(1615)] = 84777, - [SMALL_STATE(1616)] = 84798, - [SMALL_STATE(1617)] = 84823, - [SMALL_STATE(1618)] = 84848, - [SMALL_STATE(1619)] = 84873, - [SMALL_STATE(1620)] = 84898, - [SMALL_STATE(1621)] = 84914, - [SMALL_STATE(1622)] = 84934, - [SMALL_STATE(1623)] = 84954, - [SMALL_STATE(1624)] = 84968, - [SMALL_STATE(1625)] = 84988, - [SMALL_STATE(1626)] = 85002, - [SMALL_STATE(1627)] = 85022, - [SMALL_STATE(1628)] = 85038, - [SMALL_STATE(1629)] = 85058, - [SMALL_STATE(1630)] = 85074, - [SMALL_STATE(1631)] = 85094, - [SMALL_STATE(1632)] = 85110, - [SMALL_STATE(1633)] = 85130, - [SMALL_STATE(1634)] = 85146, - [SMALL_STATE(1635)] = 85160, - [SMALL_STATE(1636)] = 85180, - [SMALL_STATE(1637)] = 85194, - [SMALL_STATE(1638)] = 85208, - [SMALL_STATE(1639)] = 85228, - [SMALL_STATE(1640)] = 85244, - [SMALL_STATE(1641)] = 85264, - [SMALL_STATE(1642)] = 85280, - [SMALL_STATE(1643)] = 85300, - [SMALL_STATE(1644)] = 85314, - [SMALL_STATE(1645)] = 85334, - [SMALL_STATE(1646)] = 85350, - [SMALL_STATE(1647)] = 85366, - [SMALL_STATE(1648)] = 85386, - [SMALL_STATE(1649)] = 85402, - [SMALL_STATE(1650)] = 85418, - [SMALL_STATE(1651)] = 85434, - [SMALL_STATE(1652)] = 85454, - [SMALL_STATE(1653)] = 85474, - [SMALL_STATE(1654)] = 85488, - [SMALL_STATE(1655)] = 85508, - [SMALL_STATE(1656)] = 85528, - [SMALL_STATE(1657)] = 85542, - [SMALL_STATE(1658)] = 85562, - [SMALL_STATE(1659)] = 85582, - [SMALL_STATE(1660)] = 85602, - [SMALL_STATE(1661)] = 85616, - [SMALL_STATE(1662)] = 85632, - [SMALL_STATE(1663)] = 85652, - [SMALL_STATE(1664)] = 85668, - [SMALL_STATE(1665)] = 85690, - [SMALL_STATE(1666)] = 85710, - [SMALL_STATE(1667)] = 85730, - [SMALL_STATE(1668)] = 85750, - [SMALL_STATE(1669)] = 85770, - [SMALL_STATE(1670)] = 85786, - [SMALL_STATE(1671)] = 85806, - [SMALL_STATE(1672)] = 85826, - [SMALL_STATE(1673)] = 85848, - [SMALL_STATE(1674)] = 85870, - [SMALL_STATE(1675)] = 85886, - [SMALL_STATE(1676)] = 85902, - [SMALL_STATE(1677)] = 85922, - [SMALL_STATE(1678)] = 85938, - [SMALL_STATE(1679)] = 85952, - [SMALL_STATE(1680)] = 85972, - [SMALL_STATE(1681)] = 85988, - [SMALL_STATE(1682)] = 86004, - [SMALL_STATE(1683)] = 86024, - [SMALL_STATE(1684)] = 86040, - [SMALL_STATE(1685)] = 86056, - [SMALL_STATE(1686)] = 86074, - [SMALL_STATE(1687)] = 86093, - [SMALL_STATE(1688)] = 86108, - [SMALL_STATE(1689)] = 86119, - [SMALL_STATE(1690)] = 86138, - [SMALL_STATE(1691)] = 86157, - [SMALL_STATE(1692)] = 86168, - [SMALL_STATE(1693)] = 86187, - [SMALL_STATE(1694)] = 86206, - [SMALL_STATE(1695)] = 86225, - [SMALL_STATE(1696)] = 86240, - [SMALL_STATE(1697)] = 86259, - [SMALL_STATE(1698)] = 86278, - [SMALL_STATE(1699)] = 86297, - [SMALL_STATE(1700)] = 86316, - [SMALL_STATE(1701)] = 86335, - [SMALL_STATE(1702)] = 86346, - [SMALL_STATE(1703)] = 86365, - [SMALL_STATE(1704)] = 86380, - [SMALL_STATE(1705)] = 86399, - [SMALL_STATE(1706)] = 86418, - [SMALL_STATE(1707)] = 86435, - [SMALL_STATE(1708)] = 86450, - [SMALL_STATE(1709)] = 86469, - [SMALL_STATE(1710)] = 86480, - [SMALL_STATE(1711)] = 86499, - [SMALL_STATE(1712)] = 86516, - [SMALL_STATE(1713)] = 86527, - [SMALL_STATE(1714)] = 86544, - [SMALL_STATE(1715)] = 86563, - [SMALL_STATE(1716)] = 86578, - [SMALL_STATE(1717)] = 86597, - [SMALL_STATE(1718)] = 86616, - [SMALL_STATE(1719)] = 86633, - [SMALL_STATE(1720)] = 86644, - [SMALL_STATE(1721)] = 86663, - [SMALL_STATE(1722)] = 86682, - [SMALL_STATE(1723)] = 86693, - [SMALL_STATE(1724)] = 86704, - [SMALL_STATE(1725)] = 86723, - [SMALL_STATE(1726)] = 86738, - [SMALL_STATE(1727)] = 86757, - [SMALL_STATE(1728)] = 86768, - [SMALL_STATE(1729)] = 86787, - [SMALL_STATE(1730)] = 86798, - [SMALL_STATE(1731)] = 86817, - [SMALL_STATE(1732)] = 86836, - [SMALL_STATE(1733)] = 86847, - [SMALL_STATE(1734)] = 86866, - [SMALL_STATE(1735)] = 86885, - [SMALL_STATE(1736)] = 86904, - [SMALL_STATE(1737)] = 86923, - [SMALL_STATE(1738)] = 86942, - [SMALL_STATE(1739)] = 86961, - [SMALL_STATE(1740)] = 86980, - [SMALL_STATE(1741)] = 86990, - [SMALL_STATE(1742)] = 87004, - [SMALL_STATE(1743)] = 87018, - [SMALL_STATE(1744)] = 87032, - [SMALL_STATE(1745)] = 87048, - [SMALL_STATE(1746)] = 87062, - [SMALL_STATE(1747)] = 87078, - [SMALL_STATE(1748)] = 87092, - [SMALL_STATE(1749)] = 87106, - [SMALL_STATE(1750)] = 87120, - [SMALL_STATE(1751)] = 87136, - [SMALL_STATE(1752)] = 87150, - [SMALL_STATE(1753)] = 87166, - [SMALL_STATE(1754)] = 87182, - [SMALL_STATE(1755)] = 87198, - [SMALL_STATE(1756)] = 87212, - [SMALL_STATE(1757)] = 87226, - [SMALL_STATE(1758)] = 87240, - [SMALL_STATE(1759)] = 87254, - [SMALL_STATE(1760)] = 87268, - [SMALL_STATE(1761)] = 87284, - [SMALL_STATE(1762)] = 87298, - [SMALL_STATE(1763)] = 87312, - [SMALL_STATE(1764)] = 87326, - [SMALL_STATE(1765)] = 87340, - [SMALL_STATE(1766)] = 87354, - [SMALL_STATE(1767)] = 87368, - [SMALL_STATE(1768)] = 87380, - [SMALL_STATE(1769)] = 87390, - [SMALL_STATE(1770)] = 87404, - [SMALL_STATE(1771)] = 87420, - [SMALL_STATE(1772)] = 87436, - [SMALL_STATE(1773)] = 87449, - [SMALL_STATE(1774)] = 87462, - [SMALL_STATE(1775)] = 87475, - [SMALL_STATE(1776)] = 87488, - [SMALL_STATE(1777)] = 87501, - [SMALL_STATE(1778)] = 87514, - [SMALL_STATE(1779)] = 87527, - [SMALL_STATE(1780)] = 87540, - [SMALL_STATE(1781)] = 87553, - [SMALL_STATE(1782)] = 87566, - [SMALL_STATE(1783)] = 87579, - [SMALL_STATE(1784)] = 87592, - [SMALL_STATE(1785)] = 87603, - [SMALL_STATE(1786)] = 87616, - [SMALL_STATE(1787)] = 87629, - [SMALL_STATE(1788)] = 87642, - [SMALL_STATE(1789)] = 87655, - [SMALL_STATE(1790)] = 87668, - [SMALL_STATE(1791)] = 87681, - [SMALL_STATE(1792)] = 87692, - [SMALL_STATE(1793)] = 87705, - [SMALL_STATE(1794)] = 87718, - [SMALL_STATE(1795)] = 87731, - [SMALL_STATE(1796)] = 87744, - [SMALL_STATE(1797)] = 87755, - [SMALL_STATE(1798)] = 87768, - [SMALL_STATE(1799)] = 87781, - [SMALL_STATE(1800)] = 87790, - [SMALL_STATE(1801)] = 87803, - [SMALL_STATE(1802)] = 87816, - [SMALL_STATE(1803)] = 87829, - [SMALL_STATE(1804)] = 87838, - [SMALL_STATE(1805)] = 87847, - [SMALL_STATE(1806)] = 87860, - [SMALL_STATE(1807)] = 87873, - [SMALL_STATE(1808)] = 87886, - [SMALL_STATE(1809)] = 87899, - [SMALL_STATE(1810)] = 87912, - [SMALL_STATE(1811)] = 87925, - [SMALL_STATE(1812)] = 87938, - [SMALL_STATE(1813)] = 87951, - [SMALL_STATE(1814)] = 87964, - [SMALL_STATE(1815)] = 87975, - [SMALL_STATE(1816)] = 87988, - [SMALL_STATE(1817)] = 88001, - [SMALL_STATE(1818)] = 88014, - [SMALL_STATE(1819)] = 88027, - [SMALL_STATE(1820)] = 88040, - [SMALL_STATE(1821)] = 88053, - [SMALL_STATE(1822)] = 88066, - [SMALL_STATE(1823)] = 88079, - [SMALL_STATE(1824)] = 88092, - [SMALL_STATE(1825)] = 88105, - [SMALL_STATE(1826)] = 88118, - [SMALL_STATE(1827)] = 88131, - [SMALL_STATE(1828)] = 88144, - [SMALL_STATE(1829)] = 88157, - [SMALL_STATE(1830)] = 88170, - [SMALL_STATE(1831)] = 88183, - [SMALL_STATE(1832)] = 88196, - [SMALL_STATE(1833)] = 88209, - [SMALL_STATE(1834)] = 88222, - [SMALL_STATE(1835)] = 88235, - [SMALL_STATE(1836)] = 88248, - [SMALL_STATE(1837)] = 88261, - [SMALL_STATE(1838)] = 88274, - [SMALL_STATE(1839)] = 88287, - [SMALL_STATE(1840)] = 88298, - [SMALL_STATE(1841)] = 88311, - [SMALL_STATE(1842)] = 88324, - [SMALL_STATE(1843)] = 88337, - [SMALL_STATE(1844)] = 88350, - [SMALL_STATE(1845)] = 88363, - [SMALL_STATE(1846)] = 88376, - [SMALL_STATE(1847)] = 88389, - [SMALL_STATE(1848)] = 88402, - [SMALL_STATE(1849)] = 88415, - [SMALL_STATE(1850)] = 88428, - [SMALL_STATE(1851)] = 88441, - [SMALL_STATE(1852)] = 88454, - [SMALL_STATE(1853)] = 88467, - [SMALL_STATE(1854)] = 88480, - [SMALL_STATE(1855)] = 88493, - [SMALL_STATE(1856)] = 88506, - [SMALL_STATE(1857)] = 88519, - [SMALL_STATE(1858)] = 88530, - [SMALL_STATE(1859)] = 88543, - [SMALL_STATE(1860)] = 88556, - [SMALL_STATE(1861)] = 88569, - [SMALL_STATE(1862)] = 88582, - [SMALL_STATE(1863)] = 88593, - [SMALL_STATE(1864)] = 88606, - [SMALL_STATE(1865)] = 88619, - [SMALL_STATE(1866)] = 88632, - [SMALL_STATE(1867)] = 88645, - [SMALL_STATE(1868)] = 88658, - [SMALL_STATE(1869)] = 88671, - [SMALL_STATE(1870)] = 88682, - [SMALL_STATE(1871)] = 88695, - [SMALL_STATE(1872)] = 88708, - [SMALL_STATE(1873)] = 88721, - [SMALL_STATE(1874)] = 88734, - [SMALL_STATE(1875)] = 88747, - [SMALL_STATE(1876)] = 88760, - [SMALL_STATE(1877)] = 88773, - [SMALL_STATE(1878)] = 88786, - [SMALL_STATE(1879)] = 88797, - [SMALL_STATE(1880)] = 88806, - [SMALL_STATE(1881)] = 88817, - [SMALL_STATE(1882)] = 88830, - [SMALL_STATE(1883)] = 88841, - [SMALL_STATE(1884)] = 88854, - [SMALL_STATE(1885)] = 88867, - [SMALL_STATE(1886)] = 88878, - [SMALL_STATE(1887)] = 88889, - [SMALL_STATE(1888)] = 88900, - [SMALL_STATE(1889)] = 88913, - [SMALL_STATE(1890)] = 88924, - [SMALL_STATE(1891)] = 88937, - [SMALL_STATE(1892)] = 88950, - [SMALL_STATE(1893)] = 88963, - [SMALL_STATE(1894)] = 88976, - [SMALL_STATE(1895)] = 88989, - [SMALL_STATE(1896)] = 88998, - [SMALL_STATE(1897)] = 89011, - [SMALL_STATE(1898)] = 89024, - [SMALL_STATE(1899)] = 89037, - [SMALL_STATE(1900)] = 89050, - [SMALL_STATE(1901)] = 89063, - [SMALL_STATE(1902)] = 89076, - [SMALL_STATE(1903)] = 89087, - [SMALL_STATE(1904)] = 89100, - [SMALL_STATE(1905)] = 89113, - [SMALL_STATE(1906)] = 89126, - [SMALL_STATE(1907)] = 89137, - [SMALL_STATE(1908)] = 89146, - [SMALL_STATE(1909)] = 89159, - [SMALL_STATE(1910)] = 89172, - [SMALL_STATE(1911)] = 89185, - [SMALL_STATE(1912)] = 89198, - [SMALL_STATE(1913)] = 89211, - [SMALL_STATE(1914)] = 89224, - [SMALL_STATE(1915)] = 89237, - [SMALL_STATE(1916)] = 89250, - [SMALL_STATE(1917)] = 89261, - [SMALL_STATE(1918)] = 89274, - [SMALL_STATE(1919)] = 89287, - [SMALL_STATE(1920)] = 89300, - [SMALL_STATE(1921)] = 89313, - [SMALL_STATE(1922)] = 89326, - [SMALL_STATE(1923)] = 89337, - [SMALL_STATE(1924)] = 89350, - [SMALL_STATE(1925)] = 89363, - [SMALL_STATE(1926)] = 89376, - [SMALL_STATE(1927)] = 89389, - [SMALL_STATE(1928)] = 89402, - [SMALL_STATE(1929)] = 89415, - [SMALL_STATE(1930)] = 89428, - [SMALL_STATE(1931)] = 89441, - [SMALL_STATE(1932)] = 89454, - [SMALL_STATE(1933)] = 89467, - [SMALL_STATE(1934)] = 89480, - [SMALL_STATE(1935)] = 89493, - [SMALL_STATE(1936)] = 89506, - [SMALL_STATE(1937)] = 89519, - [SMALL_STATE(1938)] = 89532, - [SMALL_STATE(1939)] = 89545, - [SMALL_STATE(1940)] = 89556, - [SMALL_STATE(1941)] = 89569, - [SMALL_STATE(1942)] = 89582, - [SMALL_STATE(1943)] = 89595, - [SMALL_STATE(1944)] = 89608, - [SMALL_STATE(1945)] = 89621, - [SMALL_STATE(1946)] = 89634, - [SMALL_STATE(1947)] = 89647, - [SMALL_STATE(1948)] = 89660, - [SMALL_STATE(1949)] = 89673, - [SMALL_STATE(1950)] = 89686, - [SMALL_STATE(1951)] = 89697, - [SMALL_STATE(1952)] = 89710, - [SMALL_STATE(1953)] = 89723, - [SMALL_STATE(1954)] = 89736, - [SMALL_STATE(1955)] = 89749, - [SMALL_STATE(1956)] = 89762, - [SMALL_STATE(1957)] = 89775, - [SMALL_STATE(1958)] = 89788, - [SMALL_STATE(1959)] = 89799, - [SMALL_STATE(1960)] = 89812, - [SMALL_STATE(1961)] = 89825, - [SMALL_STATE(1962)] = 89838, - [SMALL_STATE(1963)] = 89851, - [SMALL_STATE(1964)] = 89864, - [SMALL_STATE(1965)] = 89877, - [SMALL_STATE(1966)] = 89890, - [SMALL_STATE(1967)] = 89900, - [SMALL_STATE(1968)] = 89908, - [SMALL_STATE(1969)] = 89916, - [SMALL_STATE(1970)] = 89926, - [SMALL_STATE(1971)] = 89934, - [SMALL_STATE(1972)] = 89942, - [SMALL_STATE(1973)] = 89950, - [SMALL_STATE(1974)] = 89958, - [SMALL_STATE(1975)] = 89966, - [SMALL_STATE(1976)] = 89974, - [SMALL_STATE(1977)] = 89982, - [SMALL_STATE(1978)] = 89990, - [SMALL_STATE(1979)] = 89998, - [SMALL_STATE(1980)] = 90006, - [SMALL_STATE(1981)] = 90014, - [SMALL_STATE(1982)] = 90022, - [SMALL_STATE(1983)] = 90032, - [SMALL_STATE(1984)] = 90042, - [SMALL_STATE(1985)] = 90050, - [SMALL_STATE(1986)] = 90058, - [SMALL_STATE(1987)] = 90066, - [SMALL_STATE(1988)] = 90074, - [SMALL_STATE(1989)] = 90082, - [SMALL_STATE(1990)] = 90090, - [SMALL_STATE(1991)] = 90098, - [SMALL_STATE(1992)] = 90106, - [SMALL_STATE(1993)] = 90114, - [SMALL_STATE(1994)] = 90122, - [SMALL_STATE(1995)] = 90130, - [SMALL_STATE(1996)] = 90138, - [SMALL_STATE(1997)] = 90146, - [SMALL_STATE(1998)] = 90154, - [SMALL_STATE(1999)] = 90162, - [SMALL_STATE(2000)] = 90170, - [SMALL_STATE(2001)] = 90178, - [SMALL_STATE(2002)] = 90186, - [SMALL_STATE(2003)] = 90194, - [SMALL_STATE(2004)] = 90202, - [SMALL_STATE(2005)] = 90212, - [SMALL_STATE(2006)] = 90220, - [SMALL_STATE(2007)] = 90228, - [SMALL_STATE(2008)] = 90238, - [SMALL_STATE(2009)] = 90246, - [SMALL_STATE(2010)] = 90256, - [SMALL_STATE(2011)] = 90264, - [SMALL_STATE(2012)] = 90272, - [SMALL_STATE(2013)] = 90280, - [SMALL_STATE(2014)] = 90288, - [SMALL_STATE(2015)] = 90296, - [SMALL_STATE(2016)] = 90304, - [SMALL_STATE(2017)] = 90312, - [SMALL_STATE(2018)] = 90322, - [SMALL_STATE(2019)] = 90330, - [SMALL_STATE(2020)] = 90338, - [SMALL_STATE(2021)] = 90346, - [SMALL_STATE(2022)] = 90354, - [SMALL_STATE(2023)] = 90362, - [SMALL_STATE(2024)] = 90370, - [SMALL_STATE(2025)] = 90378, - [SMALL_STATE(2026)] = 90386, - [SMALL_STATE(2027)] = 90394, - [SMALL_STATE(2028)] = 90402, - [SMALL_STATE(2029)] = 90410, - [SMALL_STATE(2030)] = 90418, - [SMALL_STATE(2031)] = 90426, - [SMALL_STATE(2032)] = 90434, - [SMALL_STATE(2033)] = 90442, - [SMALL_STATE(2034)] = 90449, - [SMALL_STATE(2035)] = 90456, - [SMALL_STATE(2036)] = 90463, - [SMALL_STATE(2037)] = 90470, - [SMALL_STATE(2038)] = 90477, - [SMALL_STATE(2039)] = 90484, - [SMALL_STATE(2040)] = 90491, - [SMALL_STATE(2041)] = 90498, - [SMALL_STATE(2042)] = 90505, - [SMALL_STATE(2043)] = 90512, - [SMALL_STATE(2044)] = 90519, - [SMALL_STATE(2045)] = 90526, - [SMALL_STATE(2046)] = 90533, - [SMALL_STATE(2047)] = 90540, - [SMALL_STATE(2048)] = 90547, - [SMALL_STATE(2049)] = 90554, - [SMALL_STATE(2050)] = 90561, - [SMALL_STATE(2051)] = 90568, - [SMALL_STATE(2052)] = 90575, - [SMALL_STATE(2053)] = 90582, - [SMALL_STATE(2054)] = 90589, - [SMALL_STATE(2055)] = 90596, - [SMALL_STATE(2056)] = 90603, - [SMALL_STATE(2057)] = 90610, - [SMALL_STATE(2058)] = 90617, - [SMALL_STATE(2059)] = 90624, - [SMALL_STATE(2060)] = 90631, - [SMALL_STATE(2061)] = 90638, - [SMALL_STATE(2062)] = 90645, - [SMALL_STATE(2063)] = 90652, - [SMALL_STATE(2064)] = 90659, - [SMALL_STATE(2065)] = 90666, - [SMALL_STATE(2066)] = 90673, - [SMALL_STATE(2067)] = 90680, - [SMALL_STATE(2068)] = 90687, - [SMALL_STATE(2069)] = 90694, - [SMALL_STATE(2070)] = 90701, - [SMALL_STATE(2071)] = 90708, - [SMALL_STATE(2072)] = 90715, - [SMALL_STATE(2073)] = 90722, - [SMALL_STATE(2074)] = 90729, - [SMALL_STATE(2075)] = 90736, - [SMALL_STATE(2076)] = 90743, - [SMALL_STATE(2077)] = 90750, - [SMALL_STATE(2078)] = 90757, - [SMALL_STATE(2079)] = 90764, - [SMALL_STATE(2080)] = 90771, - [SMALL_STATE(2081)] = 90778, - [SMALL_STATE(2082)] = 90785, - [SMALL_STATE(2083)] = 90792, - [SMALL_STATE(2084)] = 90799, - [SMALL_STATE(2085)] = 90806, - [SMALL_STATE(2086)] = 90813, - [SMALL_STATE(2087)] = 90820, - [SMALL_STATE(2088)] = 90827, - [SMALL_STATE(2089)] = 90834, - [SMALL_STATE(2090)] = 90841, - [SMALL_STATE(2091)] = 90848, - [SMALL_STATE(2092)] = 90855, - [SMALL_STATE(2093)] = 90862, - [SMALL_STATE(2094)] = 90869, - [SMALL_STATE(2095)] = 90876, - [SMALL_STATE(2096)] = 90883, - [SMALL_STATE(2097)] = 90890, - [SMALL_STATE(2098)] = 90897, - [SMALL_STATE(2099)] = 90904, - [SMALL_STATE(2100)] = 90911, - [SMALL_STATE(2101)] = 90918, - [SMALL_STATE(2102)] = 90925, - [SMALL_STATE(2103)] = 90932, - [SMALL_STATE(2104)] = 90939, - [SMALL_STATE(2105)] = 90946, - [SMALL_STATE(2106)] = 90953, - [SMALL_STATE(2107)] = 90960, - [SMALL_STATE(2108)] = 90967, - [SMALL_STATE(2109)] = 90974, - [SMALL_STATE(2110)] = 90981, - [SMALL_STATE(2111)] = 90988, - [SMALL_STATE(2112)] = 90995, - [SMALL_STATE(2113)] = 91002, - [SMALL_STATE(2114)] = 91009, - [SMALL_STATE(2115)] = 91016, - [SMALL_STATE(2116)] = 91023, - [SMALL_STATE(2117)] = 91030, - [SMALL_STATE(2118)] = 91037, - [SMALL_STATE(2119)] = 91044, - [SMALL_STATE(2120)] = 91051, - [SMALL_STATE(2121)] = 91058, - [SMALL_STATE(2122)] = 91065, - [SMALL_STATE(2123)] = 91072, - [SMALL_STATE(2124)] = 91079, - [SMALL_STATE(2125)] = 91086, - [SMALL_STATE(2126)] = 91093, - [SMALL_STATE(2127)] = 91100, - [SMALL_STATE(2128)] = 91107, - [SMALL_STATE(2129)] = 91114, - [SMALL_STATE(2130)] = 91121, - [SMALL_STATE(2131)] = 91128, - [SMALL_STATE(2132)] = 91135, - [SMALL_STATE(2133)] = 91142, - [SMALL_STATE(2134)] = 91149, - [SMALL_STATE(2135)] = 91156, - [SMALL_STATE(2136)] = 91163, - [SMALL_STATE(2137)] = 91170, - [SMALL_STATE(2138)] = 91177, - [SMALL_STATE(2139)] = 91184, - [SMALL_STATE(2140)] = 91191, - [SMALL_STATE(2141)] = 91198, - [SMALL_STATE(2142)] = 91205, - [SMALL_STATE(2143)] = 91212, - [SMALL_STATE(2144)] = 91219, - [SMALL_STATE(2145)] = 91226, - [SMALL_STATE(2146)] = 91233, - [SMALL_STATE(2147)] = 91240, - [SMALL_STATE(2148)] = 91247, - [SMALL_STATE(2149)] = 91254, - [SMALL_STATE(2150)] = 91261, - [SMALL_STATE(2151)] = 91268, - [SMALL_STATE(2152)] = 91275, - [SMALL_STATE(2153)] = 91282, - [SMALL_STATE(2154)] = 91289, - [SMALL_STATE(2155)] = 91296, - [SMALL_STATE(2156)] = 91303, - [SMALL_STATE(2157)] = 91310, - [SMALL_STATE(2158)] = 91317, - [SMALL_STATE(2159)] = 91324, - [SMALL_STATE(2160)] = 91331, - [SMALL_STATE(2161)] = 91338, - [SMALL_STATE(2162)] = 91345, - [SMALL_STATE(2163)] = 91352, - [SMALL_STATE(2164)] = 91359, - [SMALL_STATE(2165)] = 91366, - [SMALL_STATE(2166)] = 91373, - [SMALL_STATE(2167)] = 91380, - [SMALL_STATE(2168)] = 91387, - [SMALL_STATE(2169)] = 91394, - [SMALL_STATE(2170)] = 91401, - [SMALL_STATE(2171)] = 91408, - [SMALL_STATE(2172)] = 91415, - [SMALL_STATE(2173)] = 91422, - [SMALL_STATE(2174)] = 91429, - [SMALL_STATE(2175)] = 91436, - [SMALL_STATE(2176)] = 91443, - [SMALL_STATE(2177)] = 91450, - [SMALL_STATE(2178)] = 91457, - [SMALL_STATE(2179)] = 91464, - [SMALL_STATE(2180)] = 91471, - [SMALL_STATE(2181)] = 91478, - [SMALL_STATE(2182)] = 91485, - [SMALL_STATE(2183)] = 91492, - [SMALL_STATE(2184)] = 91499, - [SMALL_STATE(2185)] = 91506, - [SMALL_STATE(2186)] = 91513, - [SMALL_STATE(2187)] = 91520, - [SMALL_STATE(2188)] = 91527, - [SMALL_STATE(2189)] = 91534, - [SMALL_STATE(2190)] = 91541, - [SMALL_STATE(2191)] = 91548, - [SMALL_STATE(2192)] = 91555, - [SMALL_STATE(2193)] = 91562, - [SMALL_STATE(2194)] = 91569, - [SMALL_STATE(2195)] = 91576, - [SMALL_STATE(2196)] = 91583, - [SMALL_STATE(2197)] = 91590, - [SMALL_STATE(2198)] = 91597, - [SMALL_STATE(2199)] = 91604, - [SMALL_STATE(2200)] = 91611, - [SMALL_STATE(2201)] = 91618, - [SMALL_STATE(2202)] = 91625, - [SMALL_STATE(2203)] = 91632, - [SMALL_STATE(2204)] = 91639, - [SMALL_STATE(2205)] = 91646, - [SMALL_STATE(2206)] = 91653, - [SMALL_STATE(2207)] = 91660, - [SMALL_STATE(2208)] = 91667, - [SMALL_STATE(2209)] = 91674, - [SMALL_STATE(2210)] = 91681, - [SMALL_STATE(2211)] = 91688, - [SMALL_STATE(2212)] = 91695, - [SMALL_STATE(2213)] = 91702, - [SMALL_STATE(2214)] = 91709, - [SMALL_STATE(2215)] = 91716, - [SMALL_STATE(2216)] = 91723, - [SMALL_STATE(2217)] = 91730, - [SMALL_STATE(2218)] = 91737, - [SMALL_STATE(2219)] = 91744, - [SMALL_STATE(2220)] = 91751, - [SMALL_STATE(2221)] = 91758, - [SMALL_STATE(2222)] = 91765, - [SMALL_STATE(2223)] = 91772, - [SMALL_STATE(2224)] = 91779, - [SMALL_STATE(2225)] = 91786, + [SMALL_STATE(186)] = 0, + [SMALL_STATE(187)] = 110, + [SMALL_STATE(188)] = 227, + [SMALL_STATE(189)] = 348, + [SMALL_STATE(190)] = 469, + [SMALL_STATE(191)] = 592, + [SMALL_STATE(192)] = 715, + [SMALL_STATE(193)] = 836, + [SMALL_STATE(194)] = 959, + [SMALL_STATE(195)] = 1080, + [SMALL_STATE(196)] = 1201, + [SMALL_STATE(197)] = 1322, + [SMALL_STATE(198)] = 1445, + [SMALL_STATE(199)] = 1566, + [SMALL_STATE(200)] = 1687, + [SMALL_STATE(201)] = 1808, + [SMALL_STATE(202)] = 1929, + [SMALL_STATE(203)] = 2050, + [SMALL_STATE(204)] = 2175, + [SMALL_STATE(205)] = 2296, + [SMALL_STATE(206)] = 2419, + [SMALL_STATE(207)] = 2540, + [SMALL_STATE(208)] = 2661, + [SMALL_STATE(209)] = 2784, + [SMALL_STATE(210)] = 2901, + [SMALL_STATE(211)] = 3022, + [SMALL_STATE(212)] = 3143, + [SMALL_STATE(213)] = 3268, + [SMALL_STATE(214)] = 3385, + [SMALL_STATE(215)] = 3508, + [SMALL_STATE(216)] = 3629, + [SMALL_STATE(217)] = 3752, + [SMALL_STATE(218)] = 3873, + [SMALL_STATE(219)] = 3977, + [SMALL_STATE(220)] = 4081, + [SMALL_STATE(221)] = 4194, + [SMALL_STATE(222)] = 4307, + [SMALL_STATE(223)] = 4419, + [SMALL_STATE(224)] = 4531, + [SMALL_STATE(225)] = 4633, + [SMALL_STATE(226)] = 4745, + [SMALL_STATE(227)] = 4857, + [SMALL_STATE(228)] = 4969, + [SMALL_STATE(229)] = 5081, + [SMALL_STATE(230)] = 5193, + [SMALL_STATE(231)] = 5305, + [SMALL_STATE(232)] = 5419, + [SMALL_STATE(233)] = 5521, + [SMALL_STATE(234)] = 5629, + [SMALL_STATE(235)] = 5741, + [SMALL_STATE(236)] = 5850, + [SMALL_STATE(237)] = 5959, + [SMALL_STATE(238)] = 6068, + [SMALL_STATE(239)] = 6177, + [SMALL_STATE(240)] = 6286, + [SMALL_STATE(241)] = 6397, + [SMALL_STATE(242)] = 6506, + [SMALL_STATE(243)] = 6615, + [SMALL_STATE(244)] = 6726, + [SMALL_STATE(245)] = 6835, + [SMALL_STATE(246)] = 6944, + [SMALL_STATE(247)] = 7057, + [SMALL_STATE(248)] = 7166, + [SMALL_STATE(249)] = 7275, + [SMALL_STATE(250)] = 7384, + [SMALL_STATE(251)] = 7493, + [SMALL_STATE(252)] = 7602, + [SMALL_STATE(253)] = 7711, + [SMALL_STATE(254)] = 7824, + [SMALL_STATE(255)] = 7933, + [SMALL_STATE(256)] = 8042, + [SMALL_STATE(257)] = 8151, + [SMALL_STATE(258)] = 8262, + [SMALL_STATE(259)] = 8373, + [SMALL_STATE(260)] = 8482, + [SMALL_STATE(261)] = 8591, + [SMALL_STATE(262)] = 8704, + [SMALL_STATE(263)] = 8817, + [SMALL_STATE(264)] = 8926, + [SMALL_STATE(265)] = 9037, + [SMALL_STATE(266)] = 9146, + [SMALL_STATE(267)] = 9255, + [SMALL_STATE(268)] = 9364, + [SMALL_STATE(269)] = 9473, + [SMALL_STATE(270)] = 9582, + [SMALL_STATE(271)] = 9691, + [SMALL_STATE(272)] = 9800, + [SMALL_STATE(273)] = 9909, + [SMALL_STATE(274)] = 10018, + [SMALL_STATE(275)] = 10127, + [SMALL_STATE(276)] = 10238, + [SMALL_STATE(277)] = 10347, + [SMALL_STATE(278)] = 10458, + [SMALL_STATE(279)] = 10567, + [SMALL_STATE(280)] = 10676, + [SMALL_STATE(281)] = 10785, + [SMALL_STATE(282)] = 10898, + [SMALL_STATE(283)] = 11011, + [SMALL_STATE(284)] = 11120, + [SMALL_STATE(285)] = 11229, + [SMALL_STATE(286)] = 11338, + [SMALL_STATE(287)] = 11447, + [SMALL_STATE(288)] = 11558, + [SMALL_STATE(289)] = 11667, + [SMALL_STATE(290)] = 11773, + [SMALL_STATE(291)] = 11879, + [SMALL_STATE(292)] = 11985, + [SMALL_STATE(293)] = 12091, + [SMALL_STATE(294)] = 12197, + [SMALL_STATE(295)] = 12299, + [SMALL_STATE(296)] = 12405, + [SMALL_STATE(297)] = 12511, + [SMALL_STATE(298)] = 12617, + [SMALL_STATE(299)] = 12723, + [SMALL_STATE(300)] = 12829, + [SMALL_STATE(301)] = 12935, + [SMALL_STATE(302)] = 13041, + [SMALL_STATE(303)] = 13147, + [SMALL_STATE(304)] = 13253, + [SMALL_STATE(305)] = 13359, + [SMALL_STATE(306)] = 13465, + [SMALL_STATE(307)] = 13571, + [SMALL_STATE(308)] = 13677, + [SMALL_STATE(309)] = 13779, + [SMALL_STATE(310)] = 13885, + [SMALL_STATE(311)] = 13990, + [SMALL_STATE(312)] = 14095, + [SMALL_STATE(313)] = 14198, + [SMALL_STATE(314)] = 14303, + [SMALL_STATE(315)] = 14408, + [SMALL_STATE(316)] = 14513, + [SMALL_STATE(317)] = 14618, + [SMALL_STATE(318)] = 14723, + [SMALL_STATE(319)] = 14828, + [SMALL_STATE(320)] = 14933, + [SMALL_STATE(321)] = 15038, + [SMALL_STATE(322)] = 15141, + [SMALL_STATE(323)] = 15246, + [SMALL_STATE(324)] = 15351, + [SMALL_STATE(325)] = 15454, + [SMALL_STATE(326)] = 15559, + [SMALL_STATE(327)] = 15664, + [SMALL_STATE(328)] = 15769, + [SMALL_STATE(329)] = 15874, + [SMALL_STATE(330)] = 15979, + [SMALL_STATE(331)] = 16084, + [SMALL_STATE(332)] = 16189, + [SMALL_STATE(333)] = 16294, + [SMALL_STATE(334)] = 16398, + [SMALL_STATE(335)] = 16502, + [SMALL_STATE(336)] = 16606, + [SMALL_STATE(337)] = 16710, + [SMALL_STATE(338)] = 16814, + [SMALL_STATE(339)] = 16918, + [SMALL_STATE(340)] = 17022, + [SMALL_STATE(341)] = 17126, + [SMALL_STATE(342)] = 17230, + [SMALL_STATE(343)] = 17334, + [SMALL_STATE(344)] = 17438, + [SMALL_STATE(345)] = 17542, + [SMALL_STATE(346)] = 17646, + [SMALL_STATE(347)] = 17750, + [SMALL_STATE(348)] = 17854, + [SMALL_STATE(349)] = 17958, + [SMALL_STATE(350)] = 18062, + [SMALL_STATE(351)] = 18166, + [SMALL_STATE(352)] = 18270, + [SMALL_STATE(353)] = 18374, + [SMALL_STATE(354)] = 18476, + [SMALL_STATE(355)] = 18580, + [SMALL_STATE(356)] = 18684, + [SMALL_STATE(357)] = 18786, + [SMALL_STATE(358)] = 18890, + [SMALL_STATE(359)] = 18994, + [SMALL_STATE(360)] = 19098, + [SMALL_STATE(361)] = 19202, + [SMALL_STATE(362)] = 19306, + [SMALL_STATE(363)] = 19410, + [SMALL_STATE(364)] = 19514, + [SMALL_STATE(365)] = 19618, + [SMALL_STATE(366)] = 19722, + [SMALL_STATE(367)] = 19824, + [SMALL_STATE(368)] = 19926, + [SMALL_STATE(369)] = 20028, + [SMALL_STATE(370)] = 20132, + [SMALL_STATE(371)] = 20234, + [SMALL_STATE(372)] = 20338, + [SMALL_STATE(373)] = 20442, + [SMALL_STATE(374)] = 20541, + [SMALL_STATE(375)] = 20640, + [SMALL_STATE(376)] = 20739, + [SMALL_STATE(377)] = 20840, + [SMALL_STATE(378)] = 20941, + [SMALL_STATE(379)] = 21040, + [SMALL_STATE(380)] = 21139, + [SMALL_STATE(381)] = 21238, + [SMALL_STATE(382)] = 21337, + [SMALL_STATE(383)] = 21438, + [SMALL_STATE(384)] = 21537, + [SMALL_STATE(385)] = 21638, + [SMALL_STATE(386)] = 21713, + [SMALL_STATE(387)] = 21812, + [SMALL_STATE(388)] = 21913, + [SMALL_STATE(389)] = 22012, + [SMALL_STATE(390)] = 22111, + [SMALL_STATE(391)] = 22212, + [SMALL_STATE(392)] = 22313, + [SMALL_STATE(393)] = 22414, + [SMALL_STATE(394)] = 22513, + [SMALL_STATE(395)] = 22612, + [SMALL_STATE(396)] = 22711, + [SMALL_STATE(397)] = 22810, + [SMALL_STATE(398)] = 22911, + [SMALL_STATE(399)] = 23012, + [SMALL_STATE(400)] = 23113, + [SMALL_STATE(401)] = 23212, + [SMALL_STATE(402)] = 23313, + [SMALL_STATE(403)] = 23412, + [SMALL_STATE(404)] = 23487, + [SMALL_STATE(405)] = 23588, + [SMALL_STATE(406)] = 23689, + [SMALL_STATE(407)] = 23790, + [SMALL_STATE(408)] = 23889, + [SMALL_STATE(409)] = 23988, + [SMALL_STATE(410)] = 24087, + [SMALL_STATE(411)] = 24186, + [SMALL_STATE(412)] = 24285, + [SMALL_STATE(413)] = 24386, + [SMALL_STATE(414)] = 24485, + [SMALL_STATE(415)] = 24584, + [SMALL_STATE(416)] = 24685, + [SMALL_STATE(417)] = 24784, + [SMALL_STATE(418)] = 24883, + [SMALL_STATE(419)] = 24984, + [SMALL_STATE(420)] = 25085, + [SMALL_STATE(421)] = 25184, + [SMALL_STATE(422)] = 25259, + [SMALL_STATE(423)] = 25358, + [SMALL_STATE(424)] = 25456, + [SMALL_STATE(425)] = 25554, + [SMALL_STATE(426)] = 25652, + [SMALL_STATE(427)] = 25750, + [SMALL_STATE(428)] = 25848, + [SMALL_STATE(429)] = 25946, + [SMALL_STATE(430)] = 26044, + [SMALL_STATE(431)] = 26142, + [SMALL_STATE(432)] = 26240, + [SMALL_STATE(433)] = 26338, + [SMALL_STATE(434)] = 26436, + [SMALL_STATE(435)] = 26534, + [SMALL_STATE(436)] = 26632, + [SMALL_STATE(437)] = 26730, + [SMALL_STATE(438)] = 26828, + [SMALL_STATE(439)] = 26926, + [SMALL_STATE(440)] = 27024, + [SMALL_STATE(441)] = 27122, + [SMALL_STATE(442)] = 27220, + [SMALL_STATE(443)] = 27318, + [SMALL_STATE(444)] = 27416, + [SMALL_STATE(445)] = 27514, + [SMALL_STATE(446)] = 27609, + [SMALL_STATE(447)] = 27704, + [SMALL_STATE(448)] = 27799, + [SMALL_STATE(449)] = 27894, + [SMALL_STATE(450)] = 27989, + [SMALL_STATE(451)] = 28084, + [SMALL_STATE(452)] = 28179, + [SMALL_STATE(453)] = 28274, + [SMALL_STATE(454)] = 28369, + [SMALL_STATE(455)] = 28464, + [SMALL_STATE(456)] = 28559, + [SMALL_STATE(457)] = 28654, + [SMALL_STATE(458)] = 28749, + [SMALL_STATE(459)] = 28844, + [SMALL_STATE(460)] = 28939, + [SMALL_STATE(461)] = 29034, + [SMALL_STATE(462)] = 29129, + [SMALL_STATE(463)] = 29224, + [SMALL_STATE(464)] = 29319, + [SMALL_STATE(465)] = 29414, + [SMALL_STATE(466)] = 29509, + [SMALL_STATE(467)] = 29604, + [SMALL_STATE(468)] = 29699, + [SMALL_STATE(469)] = 29794, + [SMALL_STATE(470)] = 29889, + [SMALL_STATE(471)] = 29984, + [SMALL_STATE(472)] = 30079, + [SMALL_STATE(473)] = 30174, + [SMALL_STATE(474)] = 30269, + [SMALL_STATE(475)] = 30364, + [SMALL_STATE(476)] = 30459, + [SMALL_STATE(477)] = 30554, + [SMALL_STATE(478)] = 30649, + [SMALL_STATE(479)] = 30744, + [SMALL_STATE(480)] = 30839, + [SMALL_STATE(481)] = 30934, + [SMALL_STATE(482)] = 31029, + [SMALL_STATE(483)] = 31124, + [SMALL_STATE(484)] = 31219, + [SMALL_STATE(485)] = 31314, + [SMALL_STATE(486)] = 31385, + [SMALL_STATE(487)] = 31480, + [SMALL_STATE(488)] = 31577, + [SMALL_STATE(489)] = 31672, + [SMALL_STATE(490)] = 31767, + [SMALL_STATE(491)] = 31862, + [SMALL_STATE(492)] = 31933, + [SMALL_STATE(493)] = 32028, + [SMALL_STATE(494)] = 32123, + [SMALL_STATE(495)] = 32194, + [SMALL_STATE(496)] = 32265, + [SMALL_STATE(497)] = 32360, + [SMALL_STATE(498)] = 32455, + [SMALL_STATE(499)] = 32550, + [SMALL_STATE(500)] = 32645, + [SMALL_STATE(501)] = 32740, + [SMALL_STATE(502)] = 32835, + [SMALL_STATE(503)] = 32930, + [SMALL_STATE(504)] = 33025, + [SMALL_STATE(505)] = 33120, + [SMALL_STATE(506)] = 33215, + [SMALL_STATE(507)] = 33310, + [SMALL_STATE(508)] = 33405, + [SMALL_STATE(509)] = 33500, + [SMALL_STATE(510)] = 33595, + [SMALL_STATE(511)] = 33690, + [SMALL_STATE(512)] = 33785, + [SMALL_STATE(513)] = 33880, + [SMALL_STATE(514)] = 33975, + [SMALL_STATE(515)] = 34070, + [SMALL_STATE(516)] = 34165, + [SMALL_STATE(517)] = 34260, + [SMALL_STATE(518)] = 34355, + [SMALL_STATE(519)] = 34450, + [SMALL_STATE(520)] = 34545, + [SMALL_STATE(521)] = 34640, + [SMALL_STATE(522)] = 34735, + [SMALL_STATE(523)] = 34830, + [SMALL_STATE(524)] = 34925, + [SMALL_STATE(525)] = 35020, + [SMALL_STATE(526)] = 35091, + [SMALL_STATE(527)] = 35186, + [SMALL_STATE(528)] = 35281, + [SMALL_STATE(529)] = 35376, + [SMALL_STATE(530)] = 35447, + [SMALL_STATE(531)] = 35542, + [SMALL_STATE(532)] = 35637, + [SMALL_STATE(533)] = 35732, + [SMALL_STATE(534)] = 35827, + [SMALL_STATE(535)] = 35922, + [SMALL_STATE(536)] = 36017, + [SMALL_STATE(537)] = 36112, + [SMALL_STATE(538)] = 36207, + [SMALL_STATE(539)] = 36302, + [SMALL_STATE(540)] = 36397, + [SMALL_STATE(541)] = 36492, + [SMALL_STATE(542)] = 36587, + [SMALL_STATE(543)] = 36682, + [SMALL_STATE(544)] = 36777, + [SMALL_STATE(545)] = 36872, + [SMALL_STATE(546)] = 36967, + [SMALL_STATE(547)] = 37062, + [SMALL_STATE(548)] = 37157, + [SMALL_STATE(549)] = 37252, + [SMALL_STATE(550)] = 37347, + [SMALL_STATE(551)] = 37442, + [SMALL_STATE(552)] = 37537, + [SMALL_STATE(553)] = 37632, + [SMALL_STATE(554)] = 37727, + [SMALL_STATE(555)] = 37822, + [SMALL_STATE(556)] = 37917, + [SMALL_STATE(557)] = 38012, + [SMALL_STATE(558)] = 38107, + [SMALL_STATE(559)] = 38202, + [SMALL_STATE(560)] = 38297, + [SMALL_STATE(561)] = 38392, + [SMALL_STATE(562)] = 38487, + [SMALL_STATE(563)] = 38582, + [SMALL_STATE(564)] = 38677, + [SMALL_STATE(565)] = 38772, + [SMALL_STATE(566)] = 38867, + [SMALL_STATE(567)] = 38962, + [SMALL_STATE(568)] = 39057, + [SMALL_STATE(569)] = 39152, + [SMALL_STATE(570)] = 39247, + [SMALL_STATE(571)] = 39342, + [SMALL_STATE(572)] = 39437, + [SMALL_STATE(573)] = 39534, + [SMALL_STATE(574)] = 39629, + [SMALL_STATE(575)] = 39724, + [SMALL_STATE(576)] = 39819, + [SMALL_STATE(577)] = 39914, + [SMALL_STATE(578)] = 40009, + [SMALL_STATE(579)] = 40104, + [SMALL_STATE(580)] = 40199, + [SMALL_STATE(581)] = 40294, + [SMALL_STATE(582)] = 40389, + [SMALL_STATE(583)] = 40484, + [SMALL_STATE(584)] = 40579, + [SMALL_STATE(585)] = 40674, + [SMALL_STATE(586)] = 40769, + [SMALL_STATE(587)] = 40864, + [SMALL_STATE(588)] = 40959, + [SMALL_STATE(589)] = 41054, + [SMALL_STATE(590)] = 41151, + [SMALL_STATE(591)] = 41246, + [SMALL_STATE(592)] = 41341, + [SMALL_STATE(593)] = 41436, + [SMALL_STATE(594)] = 41531, + [SMALL_STATE(595)] = 41626, + [SMALL_STATE(596)] = 41721, + [SMALL_STATE(597)] = 41816, + [SMALL_STATE(598)] = 41911, + [SMALL_STATE(599)] = 42006, + [SMALL_STATE(600)] = 42101, + [SMALL_STATE(601)] = 42196, + [SMALL_STATE(602)] = 42291, + [SMALL_STATE(603)] = 42386, + [SMALL_STATE(604)] = 42481, + [SMALL_STATE(605)] = 42576, + [SMALL_STATE(606)] = 42671, + [SMALL_STATE(607)] = 42766, + [SMALL_STATE(608)] = 42861, + [SMALL_STATE(609)] = 42956, + [SMALL_STATE(610)] = 43051, + [SMALL_STATE(611)] = 43146, + [SMALL_STATE(612)] = 43241, + [SMALL_STATE(613)] = 43336, + [SMALL_STATE(614)] = 43433, + [SMALL_STATE(615)] = 43528, + [SMALL_STATE(616)] = 43623, + [SMALL_STATE(617)] = 43718, + [SMALL_STATE(618)] = 43813, + [SMALL_STATE(619)] = 43908, + [SMALL_STATE(620)] = 44003, + [SMALL_STATE(621)] = 44098, + [SMALL_STATE(622)] = 44193, + [SMALL_STATE(623)] = 44288, + [SMALL_STATE(624)] = 44383, + [SMALL_STATE(625)] = 44478, + [SMALL_STATE(626)] = 44573, + [SMALL_STATE(627)] = 44670, + [SMALL_STATE(628)] = 44765, + [SMALL_STATE(629)] = 44860, + [SMALL_STATE(630)] = 44955, + [SMALL_STATE(631)] = 45026, + [SMALL_STATE(632)] = 45121, + [SMALL_STATE(633)] = 45218, + [SMALL_STATE(634)] = 45313, + [SMALL_STATE(635)] = 45408, + [SMALL_STATE(636)] = 45503, + [SMALL_STATE(637)] = 45598, + [SMALL_STATE(638)] = 45693, + [SMALL_STATE(639)] = 45788, + [SMALL_STATE(640)] = 45883, + [SMALL_STATE(641)] = 45978, + [SMALL_STATE(642)] = 46049, + [SMALL_STATE(643)] = 46144, + [SMALL_STATE(644)] = 46239, + [SMALL_STATE(645)] = 46334, + [SMALL_STATE(646)] = 46429, + [SMALL_STATE(647)] = 46524, + [SMALL_STATE(648)] = 46619, + [SMALL_STATE(649)] = 46714, + [SMALL_STATE(650)] = 46809, + [SMALL_STATE(651)] = 46875, + [SMALL_STATE(652)] = 46941, + [SMALL_STATE(653)] = 47008, + [SMALL_STATE(654)] = 47065, + [SMALL_STATE(655)] = 47132, + [SMALL_STATE(656)] = 47199, + [SMALL_STATE(657)] = 47266, + [SMALL_STATE(658)] = 47327, + [SMALL_STATE(659)] = 47388, + [SMALL_STATE(660)] = 47445, + [SMALL_STATE(661)] = 47508, + [SMALL_STATE(662)] = 47571, + [SMALL_STATE(663)] = 47638, + [SMALL_STATE(664)] = 47695, + [SMALL_STATE(665)] = 47762, + [SMALL_STATE(666)] = 47823, + [SMALL_STATE(667)] = 47886, + [SMALL_STATE(668)] = 47947, + [SMALL_STATE(669)] = 48004, + [SMALL_STATE(670)] = 48071, + [SMALL_STATE(671)] = 48138, + [SMALL_STATE(672)] = 48195, + [SMALL_STATE(673)] = 48252, + [SMALL_STATE(674)] = 48309, + [SMALL_STATE(675)] = 48370, + [SMALL_STATE(676)] = 48433, + [SMALL_STATE(677)] = 48494, + [SMALL_STATE(678)] = 48550, + [SMALL_STATE(679)] = 48606, + [SMALL_STATE(680)] = 48668, + [SMALL_STATE(681)] = 48724, + [SMALL_STATE(682)] = 48780, + [SMALL_STATE(683)] = 48836, + [SMALL_STATE(684)] = 48898, + [SMALL_STATE(685)] = 48954, + [SMALL_STATE(686)] = 49010, + [SMALL_STATE(687)] = 49066, + [SMALL_STATE(688)] = 49122, + [SMALL_STATE(689)] = 49178, + [SMALL_STATE(690)] = 49233, + [SMALL_STATE(691)] = 49288, + [SMALL_STATE(692)] = 49343, + [SMALL_STATE(693)] = 49398, + [SMALL_STATE(694)] = 49453, + [SMALL_STATE(695)] = 49508, + [SMALL_STATE(696)] = 49563, + [SMALL_STATE(697)] = 49618, + [SMALL_STATE(698)] = 49673, + [SMALL_STATE(699)] = 49734, + [SMALL_STATE(700)] = 49789, + [SMALL_STATE(701)] = 49844, + [SMALL_STATE(702)] = 49899, + [SMALL_STATE(703)] = 49954, + [SMALL_STATE(704)] = 50009, + [SMALL_STATE(705)] = 50064, + [SMALL_STATE(706)] = 50119, + [SMALL_STATE(707)] = 50174, + [SMALL_STATE(708)] = 50229, + [SMALL_STATE(709)] = 50290, + [SMALL_STATE(710)] = 50379, + [SMALL_STATE(711)] = 50440, + [SMALL_STATE(712)] = 50495, + [SMALL_STATE(713)] = 50550, + [SMALL_STATE(714)] = 50605, + [SMALL_STATE(715)] = 50660, + [SMALL_STATE(716)] = 50715, + [SMALL_STATE(717)] = 50770, + [SMALL_STATE(718)] = 50831, + [SMALL_STATE(719)] = 50886, + [SMALL_STATE(720)] = 50947, + [SMALL_STATE(721)] = 51002, + [SMALL_STATE(722)] = 51063, + [SMALL_STATE(723)] = 51124, + [SMALL_STATE(724)] = 51213, + [SMALL_STATE(725)] = 51268, + [SMALL_STATE(726)] = 51323, + [SMALL_STATE(727)] = 51384, + [SMALL_STATE(728)] = 51439, + [SMALL_STATE(729)] = 51494, + [SMALL_STATE(730)] = 51549, + [SMALL_STATE(731)] = 51604, + [SMALL_STATE(732)] = 51665, + [SMALL_STATE(733)] = 51726, + [SMALL_STATE(734)] = 51787, + [SMALL_STATE(735)] = 51842, + [SMALL_STATE(736)] = 51897, + [SMALL_STATE(737)] = 51958, + [SMALL_STATE(738)] = 52019, + [SMALL_STATE(739)] = 52080, + [SMALL_STATE(740)] = 52141, + [SMALL_STATE(741)] = 52202, + [SMALL_STATE(742)] = 52257, + [SMALL_STATE(743)] = 52312, + [SMALL_STATE(744)] = 52367, + [SMALL_STATE(745)] = 52422, + [SMALL_STATE(746)] = 52477, + [SMALL_STATE(747)] = 52538, + [SMALL_STATE(748)] = 52599, + [SMALL_STATE(749)] = 52654, + [SMALL_STATE(750)] = 52708, + [SMALL_STATE(751)] = 52766, + [SMALL_STATE(752)] = 52824, + [SMALL_STATE(753)] = 52882, + [SMALL_STATE(754)] = 52940, + [SMALL_STATE(755)] = 52998, + [SMALL_STATE(756)] = 53052, + [SMALL_STATE(757)] = 53110, + [SMALL_STATE(758)] = 53168, + [SMALL_STATE(759)] = 53222, + [SMALL_STATE(760)] = 53280, + [SMALL_STATE(761)] = 53338, + [SMALL_STATE(762)] = 53392, + [SMALL_STATE(763)] = 53450, + [SMALL_STATE(764)] = 53508, + [SMALL_STATE(765)] = 53566, + [SMALL_STATE(766)] = 53620, + [SMALL_STATE(767)] = 53678, + [SMALL_STATE(768)] = 53736, + [SMALL_STATE(769)] = 53790, + [SMALL_STATE(770)] = 53848, + [SMALL_STATE(771)] = 53906, + [SMALL_STATE(772)] = 53959, + [SMALL_STATE(773)] = 54012, + [SMALL_STATE(774)] = 54065, + [SMALL_STATE(775)] = 54118, + [SMALL_STATE(776)] = 54171, + [SMALL_STATE(777)] = 54224, + [SMALL_STATE(778)] = 54277, + [SMALL_STATE(779)] = 54330, + [SMALL_STATE(780)] = 54383, + [SMALL_STATE(781)] = 54436, + [SMALL_STATE(782)] = 54489, + [SMALL_STATE(783)] = 54542, + [SMALL_STATE(784)] = 54595, + [SMALL_STATE(785)] = 54648, + [SMALL_STATE(786)] = 54701, + [SMALL_STATE(787)] = 54754, + [SMALL_STATE(788)] = 54807, + [SMALL_STATE(789)] = 54860, + [SMALL_STATE(790)] = 54913, + [SMALL_STATE(791)] = 54966, + [SMALL_STATE(792)] = 55019, + [SMALL_STATE(793)] = 55072, + [SMALL_STATE(794)] = 55125, + [SMALL_STATE(795)] = 55178, + [SMALL_STATE(796)] = 55231, + [SMALL_STATE(797)] = 55284, + [SMALL_STATE(798)] = 55337, + [SMALL_STATE(799)] = 55390, + [SMALL_STATE(800)] = 55443, + [SMALL_STATE(801)] = 55496, + [SMALL_STATE(802)] = 55549, + [SMALL_STATE(803)] = 55602, + [SMALL_STATE(804)] = 55655, + [SMALL_STATE(805)] = 55744, + [SMALL_STATE(806)] = 55797, + [SMALL_STATE(807)] = 55850, + [SMALL_STATE(808)] = 55903, + [SMALL_STATE(809)] = 55956, + [SMALL_STATE(810)] = 56009, + [SMALL_STATE(811)] = 56062, + [SMALL_STATE(812)] = 56151, + [SMALL_STATE(813)] = 56204, + [SMALL_STATE(814)] = 56257, + [SMALL_STATE(815)] = 56310, + [SMALL_STATE(816)] = 56363, + [SMALL_STATE(817)] = 56416, + [SMALL_STATE(818)] = 56469, + [SMALL_STATE(819)] = 56522, + [SMALL_STATE(820)] = 56574, + [SMALL_STATE(821)] = 56660, + [SMALL_STATE(822)] = 56712, + [SMALL_STATE(823)] = 56764, + [SMALL_STATE(824)] = 56816, + [SMALL_STATE(825)] = 56868, + [SMALL_STATE(826)] = 56920, + [SMALL_STATE(827)] = 56972, + [SMALL_STATE(828)] = 57024, + [SMALL_STATE(829)] = 57076, + [SMALL_STATE(830)] = 57128, + [SMALL_STATE(831)] = 57180, + [SMALL_STATE(832)] = 57232, + [SMALL_STATE(833)] = 57284, + [SMALL_STATE(834)] = 57336, + [SMALL_STATE(835)] = 57388, + [SMALL_STATE(836)] = 57440, + [SMALL_STATE(837)] = 57492, + [SMALL_STATE(838)] = 57544, + [SMALL_STATE(839)] = 57596, + [SMALL_STATE(840)] = 57648, + [SMALL_STATE(841)] = 57734, + [SMALL_STATE(842)] = 57786, + [SMALL_STATE(843)] = 57838, + [SMALL_STATE(844)] = 57924, + [SMALL_STATE(845)] = 57976, + [SMALL_STATE(846)] = 58028, + [SMALL_STATE(847)] = 58080, + [SMALL_STATE(848)] = 58166, + [SMALL_STATE(849)] = 58218, + [SMALL_STATE(850)] = 58270, + [SMALL_STATE(851)] = 58322, + [SMALL_STATE(852)] = 58408, + [SMALL_STATE(853)] = 58460, + [SMALL_STATE(854)] = 58546, + [SMALL_STATE(855)] = 58598, + [SMALL_STATE(856)] = 58650, + [SMALL_STATE(857)] = 58736, + [SMALL_STATE(858)] = 58788, + [SMALL_STATE(859)] = 58840, + [SMALL_STATE(860)] = 58926, + [SMALL_STATE(861)] = 59012, + [SMALL_STATE(862)] = 59064, + [SMALL_STATE(863)] = 59116, + [SMALL_STATE(864)] = 59202, + [SMALL_STATE(865)] = 59288, + [SMALL_STATE(866)] = 59374, + [SMALL_STATE(867)] = 59426, + [SMALL_STATE(868)] = 59478, + [SMALL_STATE(869)] = 59530, + [SMALL_STATE(870)] = 59582, + [SMALL_STATE(871)] = 59634, + [SMALL_STATE(872)] = 59686, + [SMALL_STATE(873)] = 59738, + [SMALL_STATE(874)] = 59790, + [SMALL_STATE(875)] = 59842, + [SMALL_STATE(876)] = 59894, + [SMALL_STATE(877)] = 59946, + [SMALL_STATE(878)] = 59998, + [SMALL_STATE(879)] = 60050, + [SMALL_STATE(880)] = 60102, + [SMALL_STATE(881)] = 60154, + [SMALL_STATE(882)] = 60206, + [SMALL_STATE(883)] = 60292, + [SMALL_STATE(884)] = 60344, + [SMALL_STATE(885)] = 60430, + [SMALL_STATE(886)] = 60482, + [SMALL_STATE(887)] = 60534, + [SMALL_STATE(888)] = 60586, + [SMALL_STATE(889)] = 60638, + [SMALL_STATE(890)] = 60690, + [SMALL_STATE(891)] = 60742, + [SMALL_STATE(892)] = 60794, + [SMALL_STATE(893)] = 60846, + [SMALL_STATE(894)] = 60898, + [SMALL_STATE(895)] = 60984, + [SMALL_STATE(896)] = 61070, + [SMALL_STATE(897)] = 61122, + [SMALL_STATE(898)] = 61174, + [SMALL_STATE(899)] = 61226, + [SMALL_STATE(900)] = 61278, + [SMALL_STATE(901)] = 61330, + [SMALL_STATE(902)] = 61382, + [SMALL_STATE(903)] = 61434, + [SMALL_STATE(904)] = 61486, + [SMALL_STATE(905)] = 61538, + [SMALL_STATE(906)] = 61621, + [SMALL_STATE(907)] = 61704, + [SMALL_STATE(908)] = 61787, + [SMALL_STATE(909)] = 61870, + [SMALL_STATE(910)] = 61953, + [SMALL_STATE(911)] = 62036, + [SMALL_STATE(912)] = 62116, + [SMALL_STATE(913)] = 62196, + [SMALL_STATE(914)] = 62271, + [SMALL_STATE(915)] = 62346, + [SMALL_STATE(916)] = 62421, + [SMALL_STATE(917)] = 62496, + [SMALL_STATE(918)] = 62571, + [SMALL_STATE(919)] = 62646, + [SMALL_STATE(920)] = 62721, + [SMALL_STATE(921)] = 62796, + [SMALL_STATE(922)] = 62868, + [SMALL_STATE(923)] = 62940, + [SMALL_STATE(924)] = 63012, + [SMALL_STATE(925)] = 63084, + [SMALL_STATE(926)] = 63156, + [SMALL_STATE(927)] = 63228, + [SMALL_STATE(928)] = 63300, + [SMALL_STATE(929)] = 63372, + [SMALL_STATE(930)] = 63444, + [SMALL_STATE(931)] = 63516, + [SMALL_STATE(932)] = 63588, + [SMALL_STATE(933)] = 63660, + [SMALL_STATE(934)] = 63732, + [SMALL_STATE(935)] = 63804, + [SMALL_STATE(936)] = 63876, + [SMALL_STATE(937)] = 63948, + [SMALL_STATE(938)] = 64020, + [SMALL_STATE(939)] = 64092, + [SMALL_STATE(940)] = 64164, + [SMALL_STATE(941)] = 64236, + [SMALL_STATE(942)] = 64308, + [SMALL_STATE(943)] = 64380, + [SMALL_STATE(944)] = 64452, + [SMALL_STATE(945)] = 64524, + [SMALL_STATE(946)] = 64596, + [SMALL_STATE(947)] = 64668, + [SMALL_STATE(948)] = 64740, + [SMALL_STATE(949)] = 64812, + [SMALL_STATE(950)] = 64884, + [SMALL_STATE(951)] = 64956, + [SMALL_STATE(952)] = 65028, + [SMALL_STATE(953)] = 65100, + [SMALL_STATE(954)] = 65172, + [SMALL_STATE(955)] = 65244, + [SMALL_STATE(956)] = 65316, + [SMALL_STATE(957)] = 65388, + [SMALL_STATE(958)] = 65460, + [SMALL_STATE(959)] = 65532, + [SMALL_STATE(960)] = 65604, + [SMALL_STATE(961)] = 65676, + [SMALL_STATE(962)] = 65748, + [SMALL_STATE(963)] = 65820, + [SMALL_STATE(964)] = 65892, + [SMALL_STATE(965)] = 65964, + [SMALL_STATE(966)] = 66036, + [SMALL_STATE(967)] = 66108, + [SMALL_STATE(968)] = 66184, + [SMALL_STATE(969)] = 66256, + [SMALL_STATE(970)] = 66328, + [SMALL_STATE(971)] = 66404, + [SMALL_STATE(972)] = 66476, + [SMALL_STATE(973)] = 66548, + [SMALL_STATE(974)] = 66620, + [SMALL_STATE(975)] = 66692, + [SMALL_STATE(976)] = 66768, + [SMALL_STATE(977)] = 66840, + [SMALL_STATE(978)] = 66912, + [SMALL_STATE(979)] = 66984, + [SMALL_STATE(980)] = 67056, + [SMALL_STATE(981)] = 67132, + [SMALL_STATE(982)] = 67204, + [SMALL_STATE(983)] = 67276, + [SMALL_STATE(984)] = 67348, + [SMALL_STATE(985)] = 67420, + [SMALL_STATE(986)] = 67492, + [SMALL_STATE(987)] = 67564, + [SMALL_STATE(988)] = 67636, + [SMALL_STATE(989)] = 67708, + [SMALL_STATE(990)] = 67780, + [SMALL_STATE(991)] = 67852, + [SMALL_STATE(992)] = 67924, + [SMALL_STATE(993)] = 67996, + [SMALL_STATE(994)] = 68068, + [SMALL_STATE(995)] = 68140, + [SMALL_STATE(996)] = 68212, + [SMALL_STATE(997)] = 68284, + [SMALL_STATE(998)] = 68360, + [SMALL_STATE(999)] = 68432, + [SMALL_STATE(1000)] = 68508, + [SMALL_STATE(1001)] = 68580, + [SMALL_STATE(1002)] = 68652, + [SMALL_STATE(1003)] = 68724, + [SMALL_STATE(1004)] = 68796, + [SMALL_STATE(1005)] = 68868, + [SMALL_STATE(1006)] = 68940, + [SMALL_STATE(1007)] = 69016, + [SMALL_STATE(1008)] = 69088, + [SMALL_STATE(1009)] = 69164, + [SMALL_STATE(1010)] = 69236, + [SMALL_STATE(1011)] = 69312, + [SMALL_STATE(1012)] = 69388, + [SMALL_STATE(1013)] = 69460, + [SMALL_STATE(1014)] = 69532, + [SMALL_STATE(1015)] = 69604, + [SMALL_STATE(1016)] = 69676, + [SMALL_STATE(1017)] = 69748, + [SMALL_STATE(1018)] = 69820, + [SMALL_STATE(1019)] = 69892, + [SMALL_STATE(1020)] = 69964, + [SMALL_STATE(1021)] = 70036, + [SMALL_STATE(1022)] = 70108, + [SMALL_STATE(1023)] = 70180, + [SMALL_STATE(1024)] = 70252, + [SMALL_STATE(1025)] = 70328, + [SMALL_STATE(1026)] = 70404, + [SMALL_STATE(1027)] = 70476, + [SMALL_STATE(1028)] = 70552, + [SMALL_STATE(1029)] = 70624, + [SMALL_STATE(1030)] = 70700, + [SMALL_STATE(1031)] = 70776, + [SMALL_STATE(1032)] = 70848, + [SMALL_STATE(1033)] = 70899, + [SMALL_STATE(1034)] = 70980, + [SMALL_STATE(1035)] = 71031, + [SMALL_STATE(1036)] = 71082, + [SMALL_STATE(1037)] = 71163, + [SMALL_STATE(1038)] = 71214, + [SMALL_STATE(1039)] = 71295, + [SMALL_STATE(1040)] = 71346, + [SMALL_STATE(1041)] = 71397, + [SMALL_STATE(1042)] = 71448, + [SMALL_STATE(1043)] = 71499, + [SMALL_STATE(1044)] = 71550, + [SMALL_STATE(1045)] = 71631, + [SMALL_STATE(1046)] = 71712, + [SMALL_STATE(1047)] = 71793, + [SMALL_STATE(1048)] = 71843, + [SMALL_STATE(1049)] = 71923, + [SMALL_STATE(1050)] = 71993, + [SMALL_STATE(1051)] = 72057, + [SMALL_STATE(1052)] = 72127, + [SMALL_STATE(1053)] = 72193, + [SMALL_STATE(1054)] = 72261, + [SMALL_STATE(1055)] = 72317, + [SMALL_STATE(1056)] = 72377, + [SMALL_STATE(1057)] = 72437, + [SMALL_STATE(1058)] = 72493, + [SMALL_STATE(1059)] = 72543, + [SMALL_STATE(1060)] = 72623, + [SMALL_STATE(1061)] = 72693, + [SMALL_STATE(1062)] = 72755, + [SMALL_STATE(1063)] = 72811, + [SMALL_STATE(1064)] = 72891, + [SMALL_STATE(1065)] = 72953, + [SMALL_STATE(1066)] = 73023, + [SMALL_STATE(1067)] = 73093, + [SMALL_STATE(1068)] = 73149, + [SMALL_STATE(1069)] = 73217, + [SMALL_STATE(1070)] = 73263, + [SMALL_STATE(1071)] = 73309, + [SMALL_STATE(1072)] = 73359, + [SMALL_STATE(1073)] = 73405, + [SMALL_STATE(1074)] = 73455, + [SMALL_STATE(1075)] = 73501, + [SMALL_STATE(1076)] = 73547, + [SMALL_STATE(1077)] = 73617, + [SMALL_STATE(1078)] = 73673, + [SMALL_STATE(1079)] = 73729, + [SMALL_STATE(1080)] = 73809, + [SMALL_STATE(1081)] = 73879, + [SMALL_STATE(1082)] = 73925, + [SMALL_STATE(1083)] = 73989, + [SMALL_STATE(1084)] = 74055, + [SMALL_STATE(1085)] = 74123, + [SMALL_STATE(1086)] = 74179, + [SMALL_STATE(1087)] = 74239, + [SMALL_STATE(1088)] = 74289, + [SMALL_STATE(1089)] = 74345, + [SMALL_STATE(1090)] = 74415, + [SMALL_STATE(1091)] = 74465, + [SMALL_STATE(1092)] = 74527, + [SMALL_STATE(1093)] = 74583, + [SMALL_STATE(1094)] = 74649, + [SMALL_STATE(1095)] = 74713, + [SMALL_STATE(1096)] = 74763, + [SMALL_STATE(1097)] = 74833, + [SMALL_STATE(1098)] = 74879, + [SMALL_STATE(1099)] = 74959, + [SMALL_STATE(1100)] = 75009, + [SMALL_STATE(1101)] = 75059, + [SMALL_STATE(1102)] = 75139, + [SMALL_STATE(1103)] = 75202, + [SMALL_STATE(1104)] = 75267, + [SMALL_STATE(1105)] = 75346, + [SMALL_STATE(1106)] = 75395, + [SMALL_STATE(1107)] = 75444, + [SMALL_STATE(1108)] = 75521, + [SMALL_STATE(1109)] = 75566, + [SMALL_STATE(1110)] = 75635, + [SMALL_STATE(1111)] = 75702, + [SMALL_STATE(1112)] = 75757, + [SMALL_STATE(1113)] = 75804, + [SMALL_STATE(1114)] = 75863, + [SMALL_STATE(1115)] = 75918, + [SMALL_STATE(1116)] = 75987, + [SMALL_STATE(1117)] = 76056, + [SMALL_STATE(1118)] = 76111, + [SMALL_STATE(1119)] = 76172, + [SMALL_STATE(1120)] = 76227, + [SMALL_STATE(1121)] = 76288, + [SMALL_STATE(1122)] = 76343, + [SMALL_STATE(1123)] = 76402, + [SMALL_STATE(1124)] = 76469, + [SMALL_STATE(1125)] = 76516, + [SMALL_STATE(1126)] = 76563, + [SMALL_STATE(1127)] = 76632, + [SMALL_STATE(1128)] = 76701, + [SMALL_STATE(1129)] = 76770, + [SMALL_STATE(1130)] = 76815, + [SMALL_STATE(1131)] = 76878, + [SMALL_STATE(1132)] = 76943, + [SMALL_STATE(1133)] = 76992, + [SMALL_STATE(1134)] = 77057, + [SMALL_STATE(1135)] = 77124, + [SMALL_STATE(1136)] = 77183, + [SMALL_STATE(1137)] = 77238, + [SMALL_STATE(1138)] = 77287, + [SMALL_STATE(1139)] = 77356, + [SMALL_STATE(1140)] = 77411, + [SMALL_STATE(1141)] = 77472, + [SMALL_STATE(1142)] = 77527, + [SMALL_STATE(1143)] = 77574, + [SMALL_STATE(1144)] = 77621, + [SMALL_STATE(1145)] = 77676, + [SMALL_STATE(1146)] = 77723, + [SMALL_STATE(1147)] = 77770, + [SMALL_STATE(1148)] = 77817, + [SMALL_STATE(1149)] = 77866, + [SMALL_STATE(1150)] = 77935, + [SMALL_STATE(1151)] = 78004, + [SMALL_STATE(1152)] = 78053, + [SMALL_STATE(1153)] = 78132, + [SMALL_STATE(1154)] = 78209, + [SMALL_STATE(1155)] = 78264, + [SMALL_STATE(1156)] = 78327, + [SMALL_STATE(1157)] = 78372, + [SMALL_STATE(1158)] = 78421, + [SMALL_STATE(1159)] = 78466, + [SMALL_STATE(1160)] = 78521, + [SMALL_STATE(1161)] = 78570, + [SMALL_STATE(1162)] = 78647, + [SMALL_STATE(1163)] = 78692, + [SMALL_STATE(1164)] = 78737, + [SMALL_STATE(1165)] = 78786, + [SMALL_STATE(1166)] = 78835, + [SMALL_STATE(1167)] = 78886, + [SMALL_STATE(1168)] = 78937, + [SMALL_STATE(1169)] = 78992, + [SMALL_STATE(1170)] = 79039, + [SMALL_STATE(1171)] = 79083, + [SMALL_STATE(1172)] = 79127, + [SMALL_STATE(1173)] = 79171, + [SMALL_STATE(1174)] = 79219, + [SMALL_STATE(1175)] = 79265, + [SMALL_STATE(1176)] = 79311, + [SMALL_STATE(1177)] = 79357, + [SMALL_STATE(1178)] = 79403, + [SMALL_STATE(1179)] = 79447, + [SMALL_STATE(1180)] = 79491, + [SMALL_STATE(1181)] = 79535, + [SMALL_STATE(1182)] = 79579, + [SMALL_STATE(1183)] = 79633, + [SMALL_STATE(1184)] = 79685, + [SMALL_STATE(1185)] = 79739, + [SMALL_STATE(1186)] = 79791, + [SMALL_STATE(1187)] = 79837, + [SMALL_STATE(1188)] = 79897, + [SMALL_STATE(1189)] = 79965, + [SMALL_STATE(1190)] = 80041, + [SMALL_STATE(1191)] = 80095, + [SMALL_STATE(1192)] = 80153, + [SMALL_STATE(1193)] = 80197, + [SMALL_STATE(1194)] = 80241, + [SMALL_STATE(1195)] = 80307, + [SMALL_STATE(1196)] = 80357, + [SMALL_STATE(1197)] = 80405, + [SMALL_STATE(1198)] = 80451, + [SMALL_STATE(1199)] = 80503, + [SMALL_STATE(1200)] = 80555, + [SMALL_STATE(1201)] = 80619, + [SMALL_STATE(1202)] = 80681, + [SMALL_STATE(1203)] = 80725, + [SMALL_STATE(1204)] = 80769, + [SMALL_STATE(1205)] = 80813, + [SMALL_STATE(1206)] = 80857, + [SMALL_STATE(1207)] = 80901, + [SMALL_STATE(1208)] = 80945, + [SMALL_STATE(1209)] = 81013, + [SMALL_STATE(1210)] = 81057, + [SMALL_STATE(1211)] = 81101, + [SMALL_STATE(1212)] = 81145, + [SMALL_STATE(1213)] = 81189, + [SMALL_STATE(1214)] = 81233, + [SMALL_STATE(1215)] = 81301, + [SMALL_STATE(1216)] = 81345, + [SMALL_STATE(1217)] = 81397, + [SMALL_STATE(1218)] = 81441, + [SMALL_STATE(1219)] = 81485, + [SMALL_STATE(1220)] = 81529, + [SMALL_STATE(1221)] = 81573, + [SMALL_STATE(1222)] = 81623, + [SMALL_STATE(1223)] = 81667, + [SMALL_STATE(1224)] = 81711, + [SMALL_STATE(1225)] = 81755, + [SMALL_STATE(1226)] = 81803, + [SMALL_STATE(1227)] = 81847, + [SMALL_STATE(1228)] = 81893, + [SMALL_STATE(1229)] = 81937, + [SMALL_STATE(1230)] = 81981, + [SMALL_STATE(1231)] = 82025, + [SMALL_STATE(1232)] = 82069, + [SMALL_STATE(1233)] = 82113, + [SMALL_STATE(1234)] = 82157, + [SMALL_STATE(1235)] = 82233, + [SMALL_STATE(1236)] = 82281, + [SMALL_STATE(1237)] = 82325, + [SMALL_STATE(1238)] = 82369, + [SMALL_STATE(1239)] = 82413, + [SMALL_STATE(1240)] = 82467, + [SMALL_STATE(1241)] = 82515, + [SMALL_STATE(1242)] = 82567, + [SMALL_STATE(1243)] = 82611, + [SMALL_STATE(1244)] = 82655, + [SMALL_STATE(1245)] = 82699, + [SMALL_STATE(1246)] = 82753, + [SMALL_STATE(1247)] = 82797, + [SMALL_STATE(1248)] = 82851, + [SMALL_STATE(1249)] = 82895, + [SMALL_STATE(1250)] = 82939, + [SMALL_STATE(1251)] = 82987, + [SMALL_STATE(1252)] = 83041, + [SMALL_STATE(1253)] = 83085, + [SMALL_STATE(1254)] = 83129, + [SMALL_STATE(1255)] = 83173, + [SMALL_STATE(1256)] = 83217, + [SMALL_STATE(1257)] = 83261, + [SMALL_STATE(1258)] = 83305, + [SMALL_STATE(1259)] = 83357, + [SMALL_STATE(1260)] = 83401, + [SMALL_STATE(1261)] = 83461, + [SMALL_STATE(1262)] = 83505, + [SMALL_STATE(1263)] = 83573, + [SMALL_STATE(1264)] = 83627, + [SMALL_STATE(1265)] = 83671, + [SMALL_STATE(1266)] = 83715, + [SMALL_STATE(1267)] = 83759, + [SMALL_STATE(1268)] = 83803, + [SMALL_STATE(1269)] = 83851, + [SMALL_STATE(1270)] = 83899, + [SMALL_STATE(1271)] = 83943, + [SMALL_STATE(1272)] = 83987, + [SMALL_STATE(1273)] = 84031, + [SMALL_STATE(1274)] = 84085, + [SMALL_STATE(1275)] = 84143, + [SMALL_STATE(1276)] = 84209, + [SMALL_STATE(1277)] = 84253, + [SMALL_STATE(1278)] = 84297, + [SMALL_STATE(1279)] = 84341, + [SMALL_STATE(1280)] = 84385, + [SMALL_STATE(1281)] = 84431, + [SMALL_STATE(1282)] = 84495, + [SMALL_STATE(1283)] = 84541, + [SMALL_STATE(1284)] = 84603, + [SMALL_STATE(1285)] = 84647, + [SMALL_STATE(1286)] = 84693, + [SMALL_STATE(1287)] = 84741, + [SMALL_STATE(1288)] = 84789, + [SMALL_STATE(1289)] = 84833, + [SMALL_STATE(1290)] = 84877, + [SMALL_STATE(1291)] = 84921, + [SMALL_STATE(1292)] = 84965, + [SMALL_STATE(1293)] = 85033, + [SMALL_STATE(1294)] = 85079, + [SMALL_STATE(1295)] = 85125, + [SMALL_STATE(1296)] = 85171, + [SMALL_STATE(1297)] = 85215, + [SMALL_STATE(1298)] = 85259, + [SMALL_STATE(1299)] = 85327, + [SMALL_STATE(1300)] = 85371, + [SMALL_STATE(1301)] = 85415, + [SMALL_STATE(1302)] = 85459, + [SMALL_STATE(1303)] = 85503, + [SMALL_STATE(1304)] = 85547, + [SMALL_STATE(1305)] = 85591, + [SMALL_STATE(1306)] = 85635, + [SMALL_STATE(1307)] = 85679, + [SMALL_STATE(1308)] = 85723, + [SMALL_STATE(1309)] = 85767, + [SMALL_STATE(1310)] = 85813, + [SMALL_STATE(1311)] = 85857, + [SMALL_STATE(1312)] = 85901, + [SMALL_STATE(1313)] = 85949, + [SMALL_STATE(1314)] = 85995, + [SMALL_STATE(1315)] = 86043, + [SMALL_STATE(1316)] = 86089, + [SMALL_STATE(1317)] = 86165, + [SMALL_STATE(1318)] = 86209, + [SMALL_STATE(1319)] = 86253, + [SMALL_STATE(1320)] = 86301, + [SMALL_STATE(1321)] = 86345, + [SMALL_STATE(1322)] = 86389, + [SMALL_STATE(1323)] = 86433, + [SMALL_STATE(1324)] = 86477, + [SMALL_STATE(1325)] = 86521, + [SMALL_STATE(1326)] = 86565, + [SMALL_STATE(1327)] = 86609, + [SMALL_STATE(1328)] = 86653, + [SMALL_STATE(1329)] = 86697, + [SMALL_STATE(1330)] = 86741, + [SMALL_STATE(1331)] = 86793, + [SMALL_STATE(1332)] = 86837, + [SMALL_STATE(1333)] = 86881, + [SMALL_STATE(1334)] = 86925, + [SMALL_STATE(1335)] = 86969, + [SMALL_STATE(1336)] = 87013, + [SMALL_STATE(1337)] = 87057, + [SMALL_STATE(1338)] = 87101, + [SMALL_STATE(1339)] = 87145, + [SMALL_STATE(1340)] = 87189, + [SMALL_STATE(1341)] = 87233, + [SMALL_STATE(1342)] = 87277, + [SMALL_STATE(1343)] = 87321, + [SMALL_STATE(1344)] = 87365, + [SMALL_STATE(1345)] = 87409, + [SMALL_STATE(1346)] = 87453, + [SMALL_STATE(1347)] = 87497, + [SMALL_STATE(1348)] = 87549, + [SMALL_STATE(1349)] = 87599, + [SMALL_STATE(1350)] = 87643, + [SMALL_STATE(1351)] = 87691, + [SMALL_STATE(1352)] = 87739, + [SMALL_STATE(1353)] = 87785, + [SMALL_STATE(1354)] = 87829, + [SMALL_STATE(1355)] = 87873, + [SMALL_STATE(1356)] = 87927, + [SMALL_STATE(1357)] = 87975, + [SMALL_STATE(1358)] = 88023, + [SMALL_STATE(1359)] = 88067, + [SMALL_STATE(1360)] = 88120, + [SMALL_STATE(1361)] = 88163, + [SMALL_STATE(1362)] = 88206, + [SMALL_STATE(1363)] = 88249, + [SMALL_STATE(1364)] = 88292, + [SMALL_STATE(1365)] = 88335, + [SMALL_STATE(1366)] = 88378, + [SMALL_STATE(1367)] = 88421, + [SMALL_STATE(1368)] = 88464, + [SMALL_STATE(1369)] = 88507, + [SMALL_STATE(1370)] = 88550, + [SMALL_STATE(1371)] = 88593, + [SMALL_STATE(1372)] = 88636, + [SMALL_STATE(1373)] = 88679, + [SMALL_STATE(1374)] = 88722, + [SMALL_STATE(1375)] = 88769, + [SMALL_STATE(1376)] = 88816, + [SMALL_STATE(1377)] = 88859, + [SMALL_STATE(1378)] = 88902, + [SMALL_STATE(1379)] = 88945, + [SMALL_STATE(1380)] = 88988, + [SMALL_STATE(1381)] = 89031, + [SMALL_STATE(1382)] = 89074, + [SMALL_STATE(1383)] = 89117, + [SMALL_STATE(1384)] = 89160, + [SMALL_STATE(1385)] = 89203, + [SMALL_STATE(1386)] = 89246, + [SMALL_STATE(1387)] = 89289, + [SMALL_STATE(1388)] = 89332, + [SMALL_STATE(1389)] = 89375, + [SMALL_STATE(1390)] = 89418, + [SMALL_STATE(1391)] = 89461, + [SMALL_STATE(1392)] = 89504, + [SMALL_STATE(1393)] = 89547, + [SMALL_STATE(1394)] = 89590, + [SMALL_STATE(1395)] = 89633, + [SMALL_STATE(1396)] = 89678, + [SMALL_STATE(1397)] = 89729, + [SMALL_STATE(1398)] = 89772, + [SMALL_STATE(1399)] = 89815, + [SMALL_STATE(1400)] = 89860, + [SMALL_STATE(1401)] = 89911, + [SMALL_STATE(1402)] = 89956, + [SMALL_STATE(1403)] = 90001, + [SMALL_STATE(1404)] = 90048, + [SMALL_STATE(1405)] = 90093, + [SMALL_STATE(1406)] = 90138, + [SMALL_STATE(1407)] = 90187, + [SMALL_STATE(1408)] = 90230, + [SMALL_STATE(1409)] = 90277, + [SMALL_STATE(1410)] = 90322, + [SMALL_STATE(1411)] = 90373, + [SMALL_STATE(1412)] = 90416, + [SMALL_STATE(1413)] = 90459, + [SMALL_STATE(1414)] = 90502, + [SMALL_STATE(1415)] = 90545, + [SMALL_STATE(1416)] = 90596, + [SMALL_STATE(1417)] = 90639, + [SMALL_STATE(1418)] = 90682, + [SMALL_STATE(1419)] = 90725, + [SMALL_STATE(1420)] = 90768, + [SMALL_STATE(1421)] = 90811, + [SMALL_STATE(1422)] = 90854, + [SMALL_STATE(1423)] = 90897, + [SMALL_STATE(1424)] = 90948, + [SMALL_STATE(1425)] = 90991, + [SMALL_STATE(1426)] = 91036, + [SMALL_STATE(1427)] = 91079, + [SMALL_STATE(1428)] = 91122, + [SMALL_STATE(1429)] = 91165, + [SMALL_STATE(1430)] = 91212, + [SMALL_STATE(1431)] = 91261, + [SMALL_STATE(1432)] = 91306, + [SMALL_STATE(1433)] = 91357, + [SMALL_STATE(1434)] = 91400, + [SMALL_STATE(1435)] = 91443, + [SMALL_STATE(1436)] = 91486, + [SMALL_STATE(1437)] = 91529, + [SMALL_STATE(1438)] = 91572, + [SMALL_STATE(1439)] = 91615, + [SMALL_STATE(1440)] = 91658, + [SMALL_STATE(1441)] = 91701, + [SMALL_STATE(1442)] = 91752, + [SMALL_STATE(1443)] = 91803, + [SMALL_STATE(1444)] = 91848, + [SMALL_STATE(1445)] = 91895, + [SMALL_STATE(1446)] = 91938, + [SMALL_STATE(1447)] = 91987, + [SMALL_STATE(1448)] = 92030, + [SMALL_STATE(1449)] = 92073, + [SMALL_STATE(1450)] = 92116, + [SMALL_STATE(1451)] = 92167, + [SMALL_STATE(1452)] = 92212, + [SMALL_STATE(1453)] = 92255, + [SMALL_STATE(1454)] = 92300, + [SMALL_STATE(1455)] = 92343, + [SMALL_STATE(1456)] = 92386, + [SMALL_STATE(1457)] = 92429, + [SMALL_STATE(1458)] = 92476, + [SMALL_STATE(1459)] = 92519, + [SMALL_STATE(1460)] = 92562, + [SMALL_STATE(1461)] = 92605, + [SMALL_STATE(1462)] = 92648, + [SMALL_STATE(1463)] = 92691, + [SMALL_STATE(1464)] = 92734, + [SMALL_STATE(1465)] = 92777, + [SMALL_STATE(1466)] = 92820, + [SMALL_STATE(1467)] = 92865, + [SMALL_STATE(1468)] = 92910, + [SMALL_STATE(1469)] = 92953, + [SMALL_STATE(1470)] = 92996, + [SMALL_STATE(1471)] = 93043, + [SMALL_STATE(1472)] = 93088, + [SMALL_STATE(1473)] = 93135, + [SMALL_STATE(1474)] = 93178, + [SMALL_STATE(1475)] = 93221, + [SMALL_STATE(1476)] = 93266, + [SMALL_STATE(1477)] = 93309, + [SMALL_STATE(1478)] = 93354, + [SMALL_STATE(1479)] = 93399, + [SMALL_STATE(1480)] = 93442, + [SMALL_STATE(1481)] = 93485, + [SMALL_STATE(1482)] = 93532, + [SMALL_STATE(1483)] = 93575, + [SMALL_STATE(1484)] = 93618, + [SMALL_STATE(1485)] = 93661, + [SMALL_STATE(1486)] = 93704, + [SMALL_STATE(1487)] = 93747, + [SMALL_STATE(1488)] = 93790, + [SMALL_STATE(1489)] = 93833, + [SMALL_STATE(1490)] = 93876, + [SMALL_STATE(1491)] = 93919, + [SMALL_STATE(1492)] = 93962, + [SMALL_STATE(1493)] = 94005, + [SMALL_STATE(1494)] = 94052, + [SMALL_STATE(1495)] = 94095, + [SMALL_STATE(1496)] = 94138, + [SMALL_STATE(1497)] = 94181, + [SMALL_STATE(1498)] = 94226, + [SMALL_STATE(1499)] = 94271, + [SMALL_STATE(1500)] = 94314, + [SMALL_STATE(1501)] = 94357, + [SMALL_STATE(1502)] = 94402, + [SMALL_STATE(1503)] = 94447, + [SMALL_STATE(1504)] = 94490, + [SMALL_STATE(1505)] = 94535, + [SMALL_STATE(1506)] = 94580, + [SMALL_STATE(1507)] = 94623, + [SMALL_STATE(1508)] = 94666, + [SMALL_STATE(1509)] = 94719, + [SMALL_STATE(1510)] = 94762, + [SMALL_STATE(1511)] = 94805, + [SMALL_STATE(1512)] = 94848, + [SMALL_STATE(1513)] = 94891, + [SMALL_STATE(1514)] = 94933, + [SMALL_STATE(1515)] = 94975, + [SMALL_STATE(1516)] = 95019, + [SMALL_STATE(1517)] = 95061, + [SMALL_STATE(1518)] = 95103, + [SMALL_STATE(1519)] = 95145, + [SMALL_STATE(1520)] = 95195, + [SMALL_STATE(1521)] = 95237, + [SMALL_STATE(1522)] = 95279, + [SMALL_STATE(1523)] = 95321, + [SMALL_STATE(1524)] = 95363, + [SMALL_STATE(1525)] = 95411, + [SMALL_STATE(1526)] = 95455, + [SMALL_STATE(1527)] = 95497, + [SMALL_STATE(1528)] = 95539, + [SMALL_STATE(1529)] = 95581, + [SMALL_STATE(1530)] = 95623, + [SMALL_STATE(1531)] = 95665, + [SMALL_STATE(1532)] = 95709, + [SMALL_STATE(1533)] = 95755, + [SMALL_STATE(1534)] = 95797, + [SMALL_STATE(1535)] = 95839, + [SMALL_STATE(1536)] = 95883, + [SMALL_STATE(1537)] = 95925, + [SMALL_STATE(1538)] = 95967, + [SMALL_STATE(1539)] = 96009, + [SMALL_STATE(1540)] = 96051, + [SMALL_STATE(1541)] = 96101, + [SMALL_STATE(1542)] = 96143, + [SMALL_STATE(1543)] = 96185, + [SMALL_STATE(1544)] = 96227, + [SMALL_STATE(1545)] = 96269, + [SMALL_STATE(1546)] = 96319, + [SMALL_STATE(1547)] = 96361, + [SMALL_STATE(1548)] = 96403, + [SMALL_STATE(1549)] = 96445, + [SMALL_STATE(1550)] = 96487, + [SMALL_STATE(1551)] = 96533, + [SMALL_STATE(1552)] = 96575, + [SMALL_STATE(1553)] = 96617, + [SMALL_STATE(1554)] = 96663, + [SMALL_STATE(1555)] = 96705, + [SMALL_STATE(1556)] = 96747, + [SMALL_STATE(1557)] = 96789, + [SMALL_STATE(1558)] = 96831, + [SMALL_STATE(1559)] = 96873, + [SMALL_STATE(1560)] = 96915, + [SMALL_STATE(1561)] = 96957, + [SMALL_STATE(1562)] = 97007, + [SMALL_STATE(1563)] = 97049, + [SMALL_STATE(1564)] = 97091, + [SMALL_STATE(1565)] = 97133, + [SMALL_STATE(1566)] = 97183, + [SMALL_STATE(1567)] = 97225, + [SMALL_STATE(1568)] = 97267, + [SMALL_STATE(1569)] = 97309, + [SMALL_STATE(1570)] = 97351, + [SMALL_STATE(1571)] = 97395, + [SMALL_STATE(1572)] = 97437, + [SMALL_STATE(1573)] = 97479, + [SMALL_STATE(1574)] = 97521, + [SMALL_STATE(1575)] = 97563, + [SMALL_STATE(1576)] = 97607, + [SMALL_STATE(1577)] = 97649, + [SMALL_STATE(1578)] = 97691, + [SMALL_STATE(1579)] = 97735, + [SMALL_STATE(1580)] = 97777, + [SMALL_STATE(1581)] = 97819, + [SMALL_STATE(1582)] = 97861, + [SMALL_STATE(1583)] = 97903, + [SMALL_STATE(1584)] = 97945, + [SMALL_STATE(1585)] = 97987, + [SMALL_STATE(1586)] = 98033, + [SMALL_STATE(1587)] = 98075, + [SMALL_STATE(1588)] = 98117, + [SMALL_STATE(1589)] = 98163, + [SMALL_STATE(1590)] = 98205, + [SMALL_STATE(1591)] = 98247, + [SMALL_STATE(1592)] = 98289, + [SMALL_STATE(1593)] = 98331, + [SMALL_STATE(1594)] = 98373, + [SMALL_STATE(1595)] = 98415, + [SMALL_STATE(1596)] = 98457, + [SMALL_STATE(1597)] = 98499, + [SMALL_STATE(1598)] = 98541, + [SMALL_STATE(1599)] = 98583, + [SMALL_STATE(1600)] = 98631, + [SMALL_STATE(1601)] = 98677, + [SMALL_STATE(1602)] = 98719, + [SMALL_STATE(1603)] = 98761, + [SMALL_STATE(1604)] = 98811, + [SMALL_STATE(1605)] = 98853, + [SMALL_STATE(1606)] = 98897, + [SMALL_STATE(1607)] = 98939, + [SMALL_STATE(1608)] = 98980, + [SMALL_STATE(1609)] = 99021, + [SMALL_STATE(1610)] = 99062, + [SMALL_STATE(1611)] = 99105, + [SMALL_STATE(1612)] = 99146, + [SMALL_STATE(1613)] = 99189, + [SMALL_STATE(1614)] = 99230, + [SMALL_STATE(1615)] = 99273, + [SMALL_STATE(1616)] = 99316, + [SMALL_STATE(1617)] = 99357, + [SMALL_STATE(1618)] = 99398, + [SMALL_STATE(1619)] = 99441, + [SMALL_STATE(1620)] = 99484, + [SMALL_STATE(1621)] = 99527, + [SMALL_STATE(1622)] = 99568, + [SMALL_STATE(1623)] = 99609, + [SMALL_STATE(1624)] = 99650, + [SMALL_STATE(1625)] = 99691, + [SMALL_STATE(1626)] = 99730, + [SMALL_STATE(1627)] = 99771, + [SMALL_STATE(1628)] = 99806, + [SMALL_STATE(1629)] = 99843, + [SMALL_STATE(1630)] = 99884, + [SMALL_STATE(1631)] = 99916, + [SMALL_STATE(1632)] = 99948, + [SMALL_STATE(1633)] = 99980, + [SMALL_STATE(1634)] = 100012, + [SMALL_STATE(1635)] = 100044, + [SMALL_STATE(1636)] = 100083, + [SMALL_STATE(1637)] = 100122, + [SMALL_STATE(1638)] = 100161, + [SMALL_STATE(1639)] = 100198, + [SMALL_STATE(1640)] = 100228, + [SMALL_STATE(1641)] = 100258, + [SMALL_STATE(1642)] = 100288, + [SMALL_STATE(1643)] = 100318, + [SMALL_STATE(1644)] = 100356, + [SMALL_STATE(1645)] = 100386, + [SMALL_STATE(1646)] = 100424, + [SMALL_STATE(1647)] = 100454, + [SMALL_STATE(1648)] = 100483, + [SMALL_STATE(1649)] = 100530, + [SMALL_STATE(1650)] = 100571, + [SMALL_STATE(1651)] = 100608, + [SMALL_STATE(1652)] = 100637, + [SMALL_STATE(1653)] = 100684, + [SMALL_STATE(1654)] = 100731, + [SMALL_STATE(1655)] = 100776, + [SMALL_STATE(1656)] = 100819, + [SMALL_STATE(1657)] = 100856, + [SMALL_STATE(1658)] = 100903, + [SMALL_STATE(1659)] = 100950, + [SMALL_STATE(1660)] = 100989, + [SMALL_STATE(1661)] = 101018, + [SMALL_STATE(1662)] = 101047, + [SMALL_STATE(1663)] = 101094, + [SMALL_STATE(1664)] = 101123, + [SMALL_STATE(1665)] = 101170, + [SMALL_STATE(1666)] = 101207, + [SMALL_STATE(1667)] = 101232, + [SMALL_STATE(1668)] = 101279, + [SMALL_STATE(1669)] = 101308, + [SMALL_STATE(1670)] = 101345, + [SMALL_STATE(1671)] = 101374, + [SMALL_STATE(1672)] = 101399, + [SMALL_STATE(1673)] = 101446, + [SMALL_STATE(1674)] = 101475, + [SMALL_STATE(1675)] = 101504, + [SMALL_STATE(1676)] = 101533, + [SMALL_STATE(1677)] = 101562, + [SMALL_STATE(1678)] = 101591, + [SMALL_STATE(1679)] = 101620, + [SMALL_STATE(1680)] = 101649, + [SMALL_STATE(1681)] = 101678, + [SMALL_STATE(1682)] = 101703, + [SMALL_STATE(1683)] = 101750, + [SMALL_STATE(1684)] = 101779, + [SMALL_STATE(1685)] = 101808, + [SMALL_STATE(1686)] = 101837, + [SMALL_STATE(1687)] = 101866, + [SMALL_STATE(1688)] = 101913, + [SMALL_STATE(1689)] = 101938, + [SMALL_STATE(1690)] = 101973, + [SMALL_STATE(1691)] = 102019, + [SMALL_STATE(1692)] = 102065, + [SMALL_STATE(1693)] = 102089, + [SMALL_STATE(1694)] = 102113, + [SMALL_STATE(1695)] = 102159, + [SMALL_STATE(1696)] = 102187, + [SMALL_STATE(1697)] = 102233, + [SMALL_STATE(1698)] = 102279, + [SMALL_STATE(1699)] = 102325, + [SMALL_STATE(1700)] = 102371, + [SMALL_STATE(1701)] = 102417, + [SMALL_STATE(1702)] = 102463, + [SMALL_STATE(1703)] = 102509, + [SMALL_STATE(1704)] = 102555, + [SMALL_STATE(1705)] = 102601, + [SMALL_STATE(1706)] = 102647, + [SMALL_STATE(1707)] = 102693, + [SMALL_STATE(1708)] = 102725, + [SMALL_STATE(1709)] = 102749, + [SMALL_STATE(1710)] = 102795, + [SMALL_STATE(1711)] = 102841, + [SMALL_STATE(1712)] = 102887, + [SMALL_STATE(1713)] = 102915, + [SMALL_STATE(1714)] = 102961, + [SMALL_STATE(1715)] = 102991, + [SMALL_STATE(1716)] = 103037, + [SMALL_STATE(1717)] = 103069, + [SMALL_STATE(1718)] = 103093, + [SMALL_STATE(1719)] = 103136, + [SMALL_STATE(1720)] = 103176, + [SMALL_STATE(1721)] = 103216, + [SMALL_STATE(1722)] = 103256, + [SMALL_STATE(1723)] = 103282, + [SMALL_STATE(1724)] = 103322, + [SMALL_STATE(1725)] = 103359, + [SMALL_STATE(1726)] = 103396, + [SMALL_STATE(1727)] = 103437, + [SMALL_STATE(1728)] = 103478, + [SMALL_STATE(1729)] = 103519, + [SMALL_STATE(1730)] = 103560, + [SMALL_STATE(1731)] = 103601, + [SMALL_STATE(1732)] = 103642, + [SMALL_STATE(1733)] = 103683, + [SMALL_STATE(1734)] = 103724, + [SMALL_STATE(1735)] = 103762, + [SMALL_STATE(1736)] = 103800, + [SMALL_STATE(1737)] = 103838, + [SMALL_STATE(1738)] = 103876, + [SMALL_STATE(1739)] = 103914, + [SMALL_STATE(1740)] = 103952, + [SMALL_STATE(1741)] = 103990, + [SMALL_STATE(1742)] = 104028, + [SMALL_STATE(1743)] = 104066, + [SMALL_STATE(1744)] = 104104, + [SMALL_STATE(1745)] = 104142, + [SMALL_STATE(1746)] = 104180, + [SMALL_STATE(1747)] = 104218, + [SMALL_STATE(1748)] = 104256, + [SMALL_STATE(1749)] = 104294, + [SMALL_STATE(1750)] = 104332, + [SMALL_STATE(1751)] = 104370, + [SMALL_STATE(1752)] = 104408, + [SMALL_STATE(1753)] = 104446, + [SMALL_STATE(1754)] = 104484, + [SMALL_STATE(1755)] = 104522, + [SMALL_STATE(1756)] = 104560, + [SMALL_STATE(1757)] = 104598, + [SMALL_STATE(1758)] = 104636, + [SMALL_STATE(1759)] = 104674, + [SMALL_STATE(1760)] = 104703, + [SMALL_STATE(1761)] = 104732, + [SMALL_STATE(1762)] = 104761, + [SMALL_STATE(1763)] = 104790, + [SMALL_STATE(1764)] = 104819, + [SMALL_STATE(1765)] = 104848, + [SMALL_STATE(1766)] = 104877, + [SMALL_STATE(1767)] = 104906, + [SMALL_STATE(1768)] = 104935, + [SMALL_STATE(1769)] = 104964, + [SMALL_STATE(1770)] = 104993, + [SMALL_STATE(1771)] = 105022, + [SMALL_STATE(1772)] = 105051, + [SMALL_STATE(1773)] = 105080, + [SMALL_STATE(1774)] = 105109, + [SMALL_STATE(1775)] = 105138, + [SMALL_STATE(1776)] = 105167, + [SMALL_STATE(1777)] = 105196, + [SMALL_STATE(1778)] = 105225, + [SMALL_STATE(1779)] = 105254, + [SMALL_STATE(1780)] = 105283, + [SMALL_STATE(1781)] = 105307, + [SMALL_STATE(1782)] = 105329, + [SMALL_STATE(1783)] = 105351, + [SMALL_STATE(1784)] = 105375, + [SMALL_STATE(1785)] = 105399, + [SMALL_STATE(1786)] = 105417, + [SMALL_STATE(1787)] = 105441, + [SMALL_STATE(1788)] = 105471, + [SMALL_STATE(1789)] = 105495, + [SMALL_STATE(1790)] = 105519, + [SMALL_STATE(1791)] = 105539, + [SMALL_STATE(1792)] = 105563, + [SMALL_STATE(1793)] = 105585, + [SMALL_STATE(1794)] = 105609, + [SMALL_STATE(1795)] = 105627, + [SMALL_STATE(1796)] = 105651, + [SMALL_STATE(1797)] = 105675, + [SMALL_STATE(1798)] = 105695, + [SMALL_STATE(1799)] = 105715, + [SMALL_STATE(1800)] = 105737, + [SMALL_STATE(1801)] = 105761, + [SMALL_STATE(1802)] = 105782, + [SMALL_STATE(1803)] = 105807, + [SMALL_STATE(1804)] = 105836, + [SMALL_STATE(1805)] = 105857, + [SMALL_STATE(1806)] = 105880, + [SMALL_STATE(1807)] = 105903, + [SMALL_STATE(1808)] = 105928, + [SMALL_STATE(1809)] = 105953, + [SMALL_STATE(1810)] = 105972, + [SMALL_STATE(1811)] = 105993, + [SMALL_STATE(1812)] = 106014, + [SMALL_STATE(1813)] = 106035, + [SMALL_STATE(1814)] = 106056, + [SMALL_STATE(1815)] = 106077, + [SMALL_STATE(1816)] = 106100, + [SMALL_STATE(1817)] = 106123, + [SMALL_STATE(1818)] = 106144, + [SMALL_STATE(1819)] = 106171, + [SMALL_STATE(1820)] = 106192, + [SMALL_STATE(1821)] = 106215, + [SMALL_STATE(1822)] = 106244, + [SMALL_STATE(1823)] = 106273, + [SMALL_STATE(1824)] = 106300, + [SMALL_STATE(1825)] = 106327, + [SMALL_STATE(1826)] = 106356, + [SMALL_STATE(1827)] = 106383, + [SMALL_STATE(1828)] = 106410, + [SMALL_STATE(1829)] = 106431, + [SMALL_STATE(1830)] = 106460, + [SMALL_STATE(1831)] = 106479, + [SMALL_STATE(1832)] = 106502, + [SMALL_STATE(1833)] = 106529, + [SMALL_STATE(1834)] = 106552, + [SMALL_STATE(1835)] = 106573, + [SMALL_STATE(1836)] = 106602, + [SMALL_STATE(1837)] = 106631, + [SMALL_STATE(1838)] = 106658, + [SMALL_STATE(1839)] = 106679, + [SMALL_STATE(1840)] = 106702, + [SMALL_STATE(1841)] = 106731, + [SMALL_STATE(1842)] = 106760, + [SMALL_STATE(1843)] = 106787, + [SMALL_STATE(1844)] = 106816, + [SMALL_STATE(1845)] = 106845, + [SMALL_STATE(1846)] = 106870, + [SMALL_STATE(1847)] = 106895, + [SMALL_STATE(1848)] = 106920, + [SMALL_STATE(1849)] = 106941, + [SMALL_STATE(1850)] = 106970, + [SMALL_STATE(1851)] = 106988, + [SMALL_STATE(1852)] = 107010, + [SMALL_STATE(1853)] = 107032, + [SMALL_STATE(1854)] = 107052, + [SMALL_STATE(1855)] = 107074, + [SMALL_STATE(1856)] = 107094, + [SMALL_STATE(1857)] = 107116, + [SMALL_STATE(1858)] = 107142, + [SMALL_STATE(1859)] = 107168, + [SMALL_STATE(1860)] = 107184, + [SMALL_STATE(1861)] = 107200, + [SMALL_STATE(1862)] = 107226, + [SMALL_STATE(1863)] = 107252, + [SMALL_STATE(1864)] = 107278, + [SMALL_STATE(1865)] = 107302, + [SMALL_STATE(1866)] = 107324, + [SMALL_STATE(1867)] = 107346, + [SMALL_STATE(1868)] = 107368, + [SMALL_STATE(1869)] = 107394, + [SMALL_STATE(1870)] = 107416, + [SMALL_STATE(1871)] = 107440, + [SMALL_STATE(1872)] = 107460, + [SMALL_STATE(1873)] = 107480, + [SMALL_STATE(1874)] = 107506, + [SMALL_STATE(1875)] = 107532, + [SMALL_STATE(1876)] = 107558, + [SMALL_STATE(1877)] = 107584, + [SMALL_STATE(1878)] = 107602, + [SMALL_STATE(1879)] = 107624, + [SMALL_STATE(1880)] = 107650, + [SMALL_STATE(1881)] = 107676, + [SMALL_STATE(1882)] = 107702, + [SMALL_STATE(1883)] = 107724, + [SMALL_STATE(1884)] = 107750, + [SMALL_STATE(1885)] = 107772, + [SMALL_STATE(1886)] = 107794, + [SMALL_STATE(1887)] = 107820, + [SMALL_STATE(1888)] = 107842, + [SMALL_STATE(1889)] = 107868, + [SMALL_STATE(1890)] = 107892, + [SMALL_STATE(1891)] = 107914, + [SMALL_STATE(1892)] = 107938, + [SMALL_STATE(1893)] = 107964, + [SMALL_STATE(1894)] = 107986, + [SMALL_STATE(1895)] = 108006, + [SMALL_STATE(1896)] = 108030, + [SMALL_STATE(1897)] = 108054, + [SMALL_STATE(1898)] = 108076, + [SMALL_STATE(1899)] = 108098, + [SMALL_STATE(1900)] = 108124, + [SMALL_STATE(1901)] = 108146, + [SMALL_STATE(1902)] = 108168, + [SMALL_STATE(1903)] = 108190, + [SMALL_STATE(1904)] = 108207, + [SMALL_STATE(1905)] = 108230, + [SMALL_STATE(1906)] = 108247, + [SMALL_STATE(1907)] = 108264, + [SMALL_STATE(1908)] = 108285, + [SMALL_STATE(1909)] = 108306, + [SMALL_STATE(1910)] = 108323, + [SMALL_STATE(1911)] = 108344, + [SMALL_STATE(1912)] = 108361, + [SMALL_STATE(1913)] = 108378, + [SMALL_STATE(1914)] = 108401, + [SMALL_STATE(1915)] = 108418, + [SMALL_STATE(1916)] = 108439, + [SMALL_STATE(1917)] = 108456, + [SMALL_STATE(1918)] = 108477, + [SMALL_STATE(1919)] = 108496, + [SMALL_STATE(1920)] = 108513, + [SMALL_STATE(1921)] = 108534, + [SMALL_STATE(1922)] = 108555, + [SMALL_STATE(1923)] = 108576, + [SMALL_STATE(1924)] = 108597, + [SMALL_STATE(1925)] = 108614, + [SMALL_STATE(1926)] = 108631, + [SMALL_STATE(1927)] = 108648, + [SMALL_STATE(1928)] = 108669, + [SMALL_STATE(1929)] = 108690, + [SMALL_STATE(1930)] = 108707, + [SMALL_STATE(1931)] = 108724, + [SMALL_STATE(1932)] = 108741, + [SMALL_STATE(1933)] = 108762, + [SMALL_STATE(1934)] = 108783, + [SMALL_STATE(1935)] = 108804, + [SMALL_STATE(1936)] = 108821, + [SMALL_STATE(1937)] = 108842, + [SMALL_STATE(1938)] = 108859, + [SMALL_STATE(1939)] = 108880, + [SMALL_STATE(1940)] = 108901, + [SMALL_STATE(1941)] = 108918, + [SMALL_STATE(1942)] = 108935, + [SMALL_STATE(1943)] = 108952, + [SMALL_STATE(1944)] = 108969, + [SMALL_STATE(1945)] = 108986, + [SMALL_STATE(1946)] = 109003, + [SMALL_STATE(1947)] = 109024, + [SMALL_STATE(1948)] = 109045, + [SMALL_STATE(1949)] = 109062, + [SMALL_STATE(1950)] = 109083, + [SMALL_STATE(1951)] = 109104, + [SMALL_STATE(1952)] = 109125, + [SMALL_STATE(1953)] = 109146, + [SMALL_STATE(1954)] = 109167, + [SMALL_STATE(1955)] = 109188, + [SMALL_STATE(1956)] = 109205, + [SMALL_STATE(1957)] = 109222, + [SMALL_STATE(1958)] = 109245, + [SMALL_STATE(1959)] = 109262, + [SMALL_STATE(1960)] = 109283, + [SMALL_STATE(1961)] = 109304, + [SMALL_STATE(1962)] = 109321, + [SMALL_STATE(1963)] = 109342, + [SMALL_STATE(1964)] = 109363, + [SMALL_STATE(1965)] = 109380, + [SMALL_STATE(1966)] = 109397, + [SMALL_STATE(1967)] = 109414, + [SMALL_STATE(1968)] = 109435, + [SMALL_STATE(1969)] = 109452, + [SMALL_STATE(1970)] = 109464, + [SMALL_STATE(1971)] = 109480, + [SMALL_STATE(1972)] = 109492, + [SMALL_STATE(1973)] = 109512, + [SMALL_STATE(1974)] = 109532, + [SMALL_STATE(1975)] = 109552, + [SMALL_STATE(1976)] = 109564, + [SMALL_STATE(1977)] = 109584, + [SMALL_STATE(1978)] = 109604, + [SMALL_STATE(1979)] = 109624, + [SMALL_STATE(1980)] = 109644, + [SMALL_STATE(1981)] = 109656, + [SMALL_STATE(1982)] = 109676, + [SMALL_STATE(1983)] = 109692, + [SMALL_STATE(1984)] = 109712, + [SMALL_STATE(1985)] = 109732, + [SMALL_STATE(1986)] = 109752, + [SMALL_STATE(1987)] = 109772, + [SMALL_STATE(1988)] = 109784, + [SMALL_STATE(1989)] = 109804, + [SMALL_STATE(1990)] = 109824, + [SMALL_STATE(1991)] = 109842, + [SMALL_STATE(1992)] = 109862, + [SMALL_STATE(1993)] = 109874, + [SMALL_STATE(1994)] = 109890, + [SMALL_STATE(1995)] = 109910, + [SMALL_STATE(1996)] = 109930, + [SMALL_STATE(1997)] = 109950, + [SMALL_STATE(1998)] = 109970, + [SMALL_STATE(1999)] = 109990, + [SMALL_STATE(2000)] = 110010, + [SMALL_STATE(2001)] = 110030, + [SMALL_STATE(2002)] = 110042, + [SMALL_STATE(2003)] = 110054, + [SMALL_STATE(2004)] = 110074, + [SMALL_STATE(2005)] = 110086, + [SMALL_STATE(2006)] = 110098, + [SMALL_STATE(2007)] = 110118, + [SMALL_STATE(2008)] = 110138, + [SMALL_STATE(2009)] = 110150, + [SMALL_STATE(2010)] = 110170, + [SMALL_STATE(2011)] = 110190, + [SMALL_STATE(2012)] = 110210, + [SMALL_STATE(2013)] = 110230, + [SMALL_STATE(2014)] = 110246, + [SMALL_STATE(2015)] = 110262, + [SMALL_STATE(2016)] = 110282, + [SMALL_STATE(2017)] = 110294, + [SMALL_STATE(2018)] = 110306, + [SMALL_STATE(2019)] = 110326, + [SMALL_STATE(2020)] = 110338, + [SMALL_STATE(2021)] = 110354, + [SMALL_STATE(2022)] = 110374, + [SMALL_STATE(2023)] = 110392, + [SMALL_STATE(2024)] = 110412, + [SMALL_STATE(2025)] = 110432, + [SMALL_STATE(2026)] = 110444, + [SMALL_STATE(2027)] = 110462, + [SMALL_STATE(2028)] = 110482, + [SMALL_STATE(2029)] = 110502, + [SMALL_STATE(2030)] = 110522, + [SMALL_STATE(2031)] = 110540, + [SMALL_STATE(2032)] = 110551, + [SMALL_STATE(2033)] = 110566, + [SMALL_STATE(2034)] = 110581, + [SMALL_STATE(2035)] = 110596, + [SMALL_STATE(2036)] = 110611, + [SMALL_STATE(2037)] = 110626, + [SMALL_STATE(2038)] = 110641, + [SMALL_STATE(2039)] = 110652, + [SMALL_STATE(2040)] = 110667, + [SMALL_STATE(2041)] = 110682, + [SMALL_STATE(2042)] = 110697, + [SMALL_STATE(2043)] = 110714, + [SMALL_STATE(2044)] = 110729, + [SMALL_STATE(2045)] = 110746, + [SMALL_STATE(2046)] = 110763, + [SMALL_STATE(2047)] = 110776, + [SMALL_STATE(2048)] = 110791, + [SMALL_STATE(2049)] = 110808, + [SMALL_STATE(2050)] = 110823, + [SMALL_STATE(2051)] = 110838, + [SMALL_STATE(2052)] = 110853, + [SMALL_STATE(2053)] = 110868, + [SMALL_STATE(2054)] = 110883, + [SMALL_STATE(2055)] = 110898, + [SMALL_STATE(2056)] = 110913, + [SMALL_STATE(2057)] = 110930, + [SMALL_STATE(2058)] = 110947, + [SMALL_STATE(2059)] = 110964, + [SMALL_STATE(2060)] = 110979, + [SMALL_STATE(2061)] = 110994, + [SMALL_STATE(2062)] = 111011, + [SMALL_STATE(2063)] = 111028, + [SMALL_STATE(2064)] = 111042, + [SMALL_STATE(2065)] = 111056, + [SMALL_STATE(2066)] = 111070, + [SMALL_STATE(2067)] = 111084, + [SMALL_STATE(2068)] = 111098, + [SMALL_STATE(2069)] = 111112, + [SMALL_STATE(2070)] = 111126, + [SMALL_STATE(2071)] = 111140, + [SMALL_STATE(2072)] = 111154, + [SMALL_STATE(2073)] = 111168, + [SMALL_STATE(2074)] = 111182, + [SMALL_STATE(2075)] = 111196, + [SMALL_STATE(2076)] = 111210, + [SMALL_STATE(2077)] = 111224, + [SMALL_STATE(2078)] = 111238, + [SMALL_STATE(2079)] = 111252, + [SMALL_STATE(2080)] = 111262, + [SMALL_STATE(2081)] = 111276, + [SMALL_STATE(2082)] = 111290, + [SMALL_STATE(2083)] = 111304, + [SMALL_STATE(2084)] = 111318, + [SMALL_STATE(2085)] = 111332, + [SMALL_STATE(2086)] = 111346, + [SMALL_STATE(2087)] = 111360, + [SMALL_STATE(2088)] = 111374, + [SMALL_STATE(2089)] = 111388, + [SMALL_STATE(2090)] = 111402, + [SMALL_STATE(2091)] = 111416, + [SMALL_STATE(2092)] = 111426, + [SMALL_STATE(2093)] = 111440, + [SMALL_STATE(2094)] = 111454, + [SMALL_STATE(2095)] = 111466, + [SMALL_STATE(2096)] = 111480, + [SMALL_STATE(2097)] = 111494, + [SMALL_STATE(2098)] = 111504, + [SMALL_STATE(2099)] = 111518, + [SMALL_STATE(2100)] = 111532, + [SMALL_STATE(2101)] = 111546, + [SMALL_STATE(2102)] = 111560, + [SMALL_STATE(2103)] = 111574, + [SMALL_STATE(2104)] = 111588, + [SMALL_STATE(2105)] = 111602, + [SMALL_STATE(2106)] = 111616, + [SMALL_STATE(2107)] = 111630, + [SMALL_STATE(2108)] = 111644, + [SMALL_STATE(2109)] = 111658, + [SMALL_STATE(2110)] = 111672, + [SMALL_STATE(2111)] = 111686, + [SMALL_STATE(2112)] = 111698, + [SMALL_STATE(2113)] = 111712, + [SMALL_STATE(2114)] = 111726, + [SMALL_STATE(2115)] = 111740, + [SMALL_STATE(2116)] = 111754, + [SMALL_STATE(2117)] = 111768, + [SMALL_STATE(2118)] = 111782, + [SMALL_STATE(2119)] = 111796, + [SMALL_STATE(2120)] = 111808, + [SMALL_STATE(2121)] = 111822, + [SMALL_STATE(2122)] = 111836, + [SMALL_STATE(2123)] = 111850, + [SMALL_STATE(2124)] = 111864, + [SMALL_STATE(2125)] = 111878, + [SMALL_STATE(2126)] = 111892, + [SMALL_STATE(2127)] = 111906, + [SMALL_STATE(2128)] = 111920, + [SMALL_STATE(2129)] = 111932, + [SMALL_STATE(2130)] = 111946, + [SMALL_STATE(2131)] = 111960, + [SMALL_STATE(2132)] = 111974, + [SMALL_STATE(2133)] = 111988, + [SMALL_STATE(2134)] = 112002, + [SMALL_STATE(2135)] = 112012, + [SMALL_STATE(2136)] = 112026, + [SMALL_STATE(2137)] = 112040, + [SMALL_STATE(2138)] = 112054, + [SMALL_STATE(2139)] = 112068, + [SMALL_STATE(2140)] = 112082, + [SMALL_STATE(2141)] = 112096, + [SMALL_STATE(2142)] = 112110, + [SMALL_STATE(2143)] = 112124, + [SMALL_STATE(2144)] = 112136, + [SMALL_STATE(2145)] = 112150, + [SMALL_STATE(2146)] = 112164, + [SMALL_STATE(2147)] = 112178, + [SMALL_STATE(2148)] = 112192, + [SMALL_STATE(2149)] = 112206, + [SMALL_STATE(2150)] = 112220, + [SMALL_STATE(2151)] = 112234, + [SMALL_STATE(2152)] = 112246, + [SMALL_STATE(2153)] = 112260, + [SMALL_STATE(2154)] = 112274, + [SMALL_STATE(2155)] = 112288, + [SMALL_STATE(2156)] = 112302, + [SMALL_STATE(2157)] = 112316, + [SMALL_STATE(2158)] = 112330, + [SMALL_STATE(2159)] = 112344, + [SMALL_STATE(2160)] = 112358, + [SMALL_STATE(2161)] = 112372, + [SMALL_STATE(2162)] = 112386, + [SMALL_STATE(2163)] = 112400, + [SMALL_STATE(2164)] = 112414, + [SMALL_STATE(2165)] = 112428, + [SMALL_STATE(2166)] = 112442, + [SMALL_STATE(2167)] = 112456, + [SMALL_STATE(2168)] = 112470, + [SMALL_STATE(2169)] = 112484, + [SMALL_STATE(2170)] = 112498, + [SMALL_STATE(2171)] = 112512, + [SMALL_STATE(2172)] = 112526, + [SMALL_STATE(2173)] = 112540, + [SMALL_STATE(2174)] = 112554, + [SMALL_STATE(2175)] = 112568, + [SMALL_STATE(2176)] = 112582, + [SMALL_STATE(2177)] = 112596, + [SMALL_STATE(2178)] = 112608, + [SMALL_STATE(2179)] = 112622, + [SMALL_STATE(2180)] = 112636, + [SMALL_STATE(2181)] = 112648, + [SMALL_STATE(2182)] = 112662, + [SMALL_STATE(2183)] = 112676, + [SMALL_STATE(2184)] = 112690, + [SMALL_STATE(2185)] = 112704, + [SMALL_STATE(2186)] = 112718, + [SMALL_STATE(2187)] = 112732, + [SMALL_STATE(2188)] = 112746, + [SMALL_STATE(2189)] = 112756, + [SMALL_STATE(2190)] = 112770, + [SMALL_STATE(2191)] = 112784, + [SMALL_STATE(2192)] = 112796, + [SMALL_STATE(2193)] = 112810, + [SMALL_STATE(2194)] = 112824, + [SMALL_STATE(2195)] = 112838, + [SMALL_STATE(2196)] = 112852, + [SMALL_STATE(2197)] = 112864, + [SMALL_STATE(2198)] = 112876, + [SMALL_STATE(2199)] = 112890, + [SMALL_STATE(2200)] = 112904, + [SMALL_STATE(2201)] = 112918, + [SMALL_STATE(2202)] = 112932, + [SMALL_STATE(2203)] = 112946, + [SMALL_STATE(2204)] = 112958, + [SMALL_STATE(2205)] = 112972, + [SMALL_STATE(2206)] = 112986, + [SMALL_STATE(2207)] = 112998, + [SMALL_STATE(2208)] = 113012, + [SMALL_STATE(2209)] = 113026, + [SMALL_STATE(2210)] = 113040, + [SMALL_STATE(2211)] = 113054, + [SMALL_STATE(2212)] = 113068, + [SMALL_STATE(2213)] = 113082, + [SMALL_STATE(2214)] = 113094, + [SMALL_STATE(2215)] = 113108, + [SMALL_STATE(2216)] = 113122, + [SMALL_STATE(2217)] = 113136, + [SMALL_STATE(2218)] = 113150, + [SMALL_STATE(2219)] = 113164, + [SMALL_STATE(2220)] = 113178, + [SMALL_STATE(2221)] = 113192, + [SMALL_STATE(2222)] = 113206, + [SMALL_STATE(2223)] = 113218, + [SMALL_STATE(2224)] = 113232, + [SMALL_STATE(2225)] = 113246, + [SMALL_STATE(2226)] = 113258, + [SMALL_STATE(2227)] = 113272, + [SMALL_STATE(2228)] = 113284, + [SMALL_STATE(2229)] = 113298, + [SMALL_STATE(2230)] = 113312, + [SMALL_STATE(2231)] = 113326, + [SMALL_STATE(2232)] = 113336, + [SMALL_STATE(2233)] = 113348, + [SMALL_STATE(2234)] = 113362, + [SMALL_STATE(2235)] = 113376, + [SMALL_STATE(2236)] = 113390, + [SMALL_STATE(2237)] = 113404, + [SMALL_STATE(2238)] = 113418, + [SMALL_STATE(2239)] = 113432, + [SMALL_STATE(2240)] = 113446, + [SMALL_STATE(2241)] = 113460, + [SMALL_STATE(2242)] = 113474, + [SMALL_STATE(2243)] = 113488, + [SMALL_STATE(2244)] = 113502, + [SMALL_STATE(2245)] = 113516, + [SMALL_STATE(2246)] = 113530, + [SMALL_STATE(2247)] = 113544, + [SMALL_STATE(2248)] = 113554, + [SMALL_STATE(2249)] = 113564, + [SMALL_STATE(2250)] = 113578, + [SMALL_STATE(2251)] = 113590, + [SMALL_STATE(2252)] = 113604, + [SMALL_STATE(2253)] = 113616, + [SMALL_STATE(2254)] = 113628, + [SMALL_STATE(2255)] = 113642, + [SMALL_STATE(2256)] = 113656, + [SMALL_STATE(2257)] = 113670, + [SMALL_STATE(2258)] = 113684, + [SMALL_STATE(2259)] = 113698, + [SMALL_STATE(2260)] = 113712, + [SMALL_STATE(2261)] = 113726, + [SMALL_STATE(2262)] = 113740, + [SMALL_STATE(2263)] = 113752, + [SMALL_STATE(2264)] = 113764, + [SMALL_STATE(2265)] = 113778, + [SMALL_STATE(2266)] = 113792, + [SMALL_STATE(2267)] = 113806, + [SMALL_STATE(2268)] = 113818, + [SMALL_STATE(2269)] = 113832, + [SMALL_STATE(2270)] = 113841, + [SMALL_STATE(2271)] = 113850, + [SMALL_STATE(2272)] = 113859, + [SMALL_STATE(2273)] = 113868, + [SMALL_STATE(2274)] = 113877, + [SMALL_STATE(2275)] = 113886, + [SMALL_STATE(2276)] = 113895, + [SMALL_STATE(2277)] = 113904, + [SMALL_STATE(2278)] = 113913, + [SMALL_STATE(2279)] = 113922, + [SMALL_STATE(2280)] = 113931, + [SMALL_STATE(2281)] = 113942, + [SMALL_STATE(2282)] = 113951, + [SMALL_STATE(2283)] = 113962, + [SMALL_STATE(2284)] = 113971, + [SMALL_STATE(2285)] = 113980, + [SMALL_STATE(2286)] = 113989, + [SMALL_STATE(2287)] = 113998, + [SMALL_STATE(2288)] = 114007, + [SMALL_STATE(2289)] = 114016, + [SMALL_STATE(2290)] = 114025, + [SMALL_STATE(2291)] = 114034, + [SMALL_STATE(2292)] = 114043, + [SMALL_STATE(2293)] = 114052, + [SMALL_STATE(2294)] = 114061, + [SMALL_STATE(2295)] = 114070, + [SMALL_STATE(2296)] = 114079, + [SMALL_STATE(2297)] = 114088, + [SMALL_STATE(2298)] = 114097, + [SMALL_STATE(2299)] = 114108, + [SMALL_STATE(2300)] = 114117, + [SMALL_STATE(2301)] = 114126, + [SMALL_STATE(2302)] = 114135, + [SMALL_STATE(2303)] = 114144, + [SMALL_STATE(2304)] = 114153, + [SMALL_STATE(2305)] = 114162, + [SMALL_STATE(2306)] = 114173, + [SMALL_STATE(2307)] = 114182, + [SMALL_STATE(2308)] = 114191, + [SMALL_STATE(2309)] = 114202, + [SMALL_STATE(2310)] = 114213, + [SMALL_STATE(2311)] = 114222, + [SMALL_STATE(2312)] = 114231, + [SMALL_STATE(2313)] = 114240, + [SMALL_STATE(2314)] = 114251, + [SMALL_STATE(2315)] = 114260, + [SMALL_STATE(2316)] = 114269, + [SMALL_STATE(2317)] = 114278, + [SMALL_STATE(2318)] = 114289, + [SMALL_STATE(2319)] = 114298, + [SMALL_STATE(2320)] = 114307, + [SMALL_STATE(2321)] = 114316, + [SMALL_STATE(2322)] = 114325, + [SMALL_STATE(2323)] = 114334, + [SMALL_STATE(2324)] = 114345, + [SMALL_STATE(2325)] = 114354, + [SMALL_STATE(2326)] = 114363, + [SMALL_STATE(2327)] = 114372, + [SMALL_STATE(2328)] = 114381, + [SMALL_STATE(2329)] = 114390, + [SMALL_STATE(2330)] = 114399, + [SMALL_STATE(2331)] = 114408, + [SMALL_STATE(2332)] = 114417, + [SMALL_STATE(2333)] = 114426, + [SMALL_STATE(2334)] = 114435, + [SMALL_STATE(2335)] = 114443, + [SMALL_STATE(2336)] = 114451, + [SMALL_STATE(2337)] = 114459, + [SMALL_STATE(2338)] = 114467, + [SMALL_STATE(2339)] = 114475, + [SMALL_STATE(2340)] = 114483, + [SMALL_STATE(2341)] = 114491, + [SMALL_STATE(2342)] = 114499, + [SMALL_STATE(2343)] = 114507, + [SMALL_STATE(2344)] = 114515, + [SMALL_STATE(2345)] = 114523, + [SMALL_STATE(2346)] = 114531, + [SMALL_STATE(2347)] = 114539, + [SMALL_STATE(2348)] = 114547, + [SMALL_STATE(2349)] = 114555, + [SMALL_STATE(2350)] = 114563, + [SMALL_STATE(2351)] = 114571, + [SMALL_STATE(2352)] = 114579, + [SMALL_STATE(2353)] = 114587, + [SMALL_STATE(2354)] = 114595, + [SMALL_STATE(2355)] = 114603, + [SMALL_STATE(2356)] = 114611, + [SMALL_STATE(2357)] = 114619, + [SMALL_STATE(2358)] = 114627, + [SMALL_STATE(2359)] = 114635, + [SMALL_STATE(2360)] = 114643, + [SMALL_STATE(2361)] = 114651, + [SMALL_STATE(2362)] = 114659, + [SMALL_STATE(2363)] = 114667, + [SMALL_STATE(2364)] = 114675, + [SMALL_STATE(2365)] = 114683, + [SMALL_STATE(2366)] = 114691, + [SMALL_STATE(2367)] = 114699, + [SMALL_STATE(2368)] = 114707, + [SMALL_STATE(2369)] = 114715, + [SMALL_STATE(2370)] = 114723, + [SMALL_STATE(2371)] = 114731, + [SMALL_STATE(2372)] = 114739, + [SMALL_STATE(2373)] = 114747, + [SMALL_STATE(2374)] = 114755, + [SMALL_STATE(2375)] = 114763, + [SMALL_STATE(2376)] = 114771, + [SMALL_STATE(2377)] = 114779, + [SMALL_STATE(2378)] = 114787, + [SMALL_STATE(2379)] = 114795, + [SMALL_STATE(2380)] = 114803, + [SMALL_STATE(2381)] = 114811, + [SMALL_STATE(2382)] = 114819, + [SMALL_STATE(2383)] = 114827, + [SMALL_STATE(2384)] = 114835, + [SMALL_STATE(2385)] = 114843, + [SMALL_STATE(2386)] = 114851, + [SMALL_STATE(2387)] = 114859, + [SMALL_STATE(2388)] = 114867, + [SMALL_STATE(2389)] = 114875, + [SMALL_STATE(2390)] = 114883, + [SMALL_STATE(2391)] = 114891, + [SMALL_STATE(2392)] = 114899, + [SMALL_STATE(2393)] = 114907, + [SMALL_STATE(2394)] = 114915, + [SMALL_STATE(2395)] = 114923, + [SMALL_STATE(2396)] = 114931, + [SMALL_STATE(2397)] = 114939, + [SMALL_STATE(2398)] = 114947, + [SMALL_STATE(2399)] = 114955, + [SMALL_STATE(2400)] = 114963, + [SMALL_STATE(2401)] = 114971, + [SMALL_STATE(2402)] = 114979, + [SMALL_STATE(2403)] = 114987, + [SMALL_STATE(2404)] = 114995, + [SMALL_STATE(2405)] = 115003, + [SMALL_STATE(2406)] = 115011, + [SMALL_STATE(2407)] = 115019, + [SMALL_STATE(2408)] = 115027, + [SMALL_STATE(2409)] = 115035, + [SMALL_STATE(2410)] = 115043, + [SMALL_STATE(2411)] = 115051, + [SMALL_STATE(2412)] = 115059, + [SMALL_STATE(2413)] = 115067, + [SMALL_STATE(2414)] = 115075, + [SMALL_STATE(2415)] = 115083, + [SMALL_STATE(2416)] = 115091, + [SMALL_STATE(2417)] = 115099, + [SMALL_STATE(2418)] = 115107, + [SMALL_STATE(2419)] = 115115, + [SMALL_STATE(2420)] = 115123, + [SMALL_STATE(2421)] = 115131, + [SMALL_STATE(2422)] = 115139, + [SMALL_STATE(2423)] = 115147, + [SMALL_STATE(2424)] = 115155, + [SMALL_STATE(2425)] = 115163, + [SMALL_STATE(2426)] = 115171, + [SMALL_STATE(2427)] = 115179, + [SMALL_STATE(2428)] = 115187, + [SMALL_STATE(2429)] = 115195, + [SMALL_STATE(2430)] = 115203, + [SMALL_STATE(2431)] = 115211, + [SMALL_STATE(2432)] = 115219, + [SMALL_STATE(2433)] = 115227, + [SMALL_STATE(2434)] = 115235, + [SMALL_STATE(2435)] = 115243, + [SMALL_STATE(2436)] = 115251, + [SMALL_STATE(2437)] = 115259, + [SMALL_STATE(2438)] = 115267, + [SMALL_STATE(2439)] = 115275, + [SMALL_STATE(2440)] = 115283, + [SMALL_STATE(2441)] = 115291, + [SMALL_STATE(2442)] = 115299, + [SMALL_STATE(2443)] = 115307, + [SMALL_STATE(2444)] = 115315, + [SMALL_STATE(2445)] = 115323, + [SMALL_STATE(2446)] = 115331, + [SMALL_STATE(2447)] = 115339, + [SMALL_STATE(2448)] = 115347, + [SMALL_STATE(2449)] = 115355, + [SMALL_STATE(2450)] = 115363, + [SMALL_STATE(2451)] = 115371, + [SMALL_STATE(2452)] = 115379, + [SMALL_STATE(2453)] = 115387, + [SMALL_STATE(2454)] = 115395, + [SMALL_STATE(2455)] = 115403, + [SMALL_STATE(2456)] = 115411, + [SMALL_STATE(2457)] = 115419, + [SMALL_STATE(2458)] = 115427, + [SMALL_STATE(2459)] = 115435, + [SMALL_STATE(2460)] = 115443, + [SMALL_STATE(2461)] = 115451, + [SMALL_STATE(2462)] = 115459, + [SMALL_STATE(2463)] = 115467, + [SMALL_STATE(2464)] = 115475, + [SMALL_STATE(2465)] = 115483, + [SMALL_STATE(2466)] = 115491, + [SMALL_STATE(2467)] = 115499, + [SMALL_STATE(2468)] = 115507, + [SMALL_STATE(2469)] = 115515, + [SMALL_STATE(2470)] = 115523, + [SMALL_STATE(2471)] = 115531, + [SMALL_STATE(2472)] = 115539, + [SMALL_STATE(2473)] = 115547, + [SMALL_STATE(2474)] = 115555, + [SMALL_STATE(2475)] = 115563, + [SMALL_STATE(2476)] = 115571, + [SMALL_STATE(2477)] = 115579, + [SMALL_STATE(2478)] = 115587, + [SMALL_STATE(2479)] = 115595, + [SMALL_STATE(2480)] = 115603, + [SMALL_STATE(2481)] = 115611, + [SMALL_STATE(2482)] = 115619, + [SMALL_STATE(2483)] = 115627, + [SMALL_STATE(2484)] = 115635, + [SMALL_STATE(2485)] = 115643, + [SMALL_STATE(2486)] = 115651, + [SMALL_STATE(2487)] = 115659, + [SMALL_STATE(2488)] = 115667, + [SMALL_STATE(2489)] = 115675, + [SMALL_STATE(2490)] = 115683, + [SMALL_STATE(2491)] = 115691, + [SMALL_STATE(2492)] = 115699, + [SMALL_STATE(2493)] = 115707, + [SMALL_STATE(2494)] = 115715, + [SMALL_STATE(2495)] = 115723, + [SMALL_STATE(2496)] = 115731, + [SMALL_STATE(2497)] = 115739, + [SMALL_STATE(2498)] = 115747, + [SMALL_STATE(2499)] = 115755, + [SMALL_STATE(2500)] = 115763, + [SMALL_STATE(2501)] = 115771, + [SMALL_STATE(2502)] = 115779, + [SMALL_STATE(2503)] = 115787, + [SMALL_STATE(2504)] = 115795, + [SMALL_STATE(2505)] = 115803, + [SMALL_STATE(2506)] = 115811, + [SMALL_STATE(2507)] = 115819, + [SMALL_STATE(2508)] = 115827, + [SMALL_STATE(2509)] = 115835, + [SMALL_STATE(2510)] = 115843, + [SMALL_STATE(2511)] = 115851, + [SMALL_STATE(2512)] = 115859, + [SMALL_STATE(2513)] = 115867, + [SMALL_STATE(2514)] = 115875, + [SMALL_STATE(2515)] = 115883, + [SMALL_STATE(2516)] = 115891, + [SMALL_STATE(2517)] = 115899, + [SMALL_STATE(2518)] = 115907, + [SMALL_STATE(2519)] = 115915, + [SMALL_STATE(2520)] = 115923, + [SMALL_STATE(2521)] = 115931, + [SMALL_STATE(2522)] = 115939, + [SMALL_STATE(2523)] = 115947, + [SMALL_STATE(2524)] = 115955, + [SMALL_STATE(2525)] = 115963, + [SMALL_STATE(2526)] = 115971, + [SMALL_STATE(2527)] = 115979, + [SMALL_STATE(2528)] = 115987, + [SMALL_STATE(2529)] = 115995, + [SMALL_STATE(2530)] = 116003, + [SMALL_STATE(2531)] = 116011, + [SMALL_STATE(2532)] = 116019, + [SMALL_STATE(2533)] = 116027, + [SMALL_STATE(2534)] = 116035, + [SMALL_STATE(2535)] = 116043, + [SMALL_STATE(2536)] = 116051, + [SMALL_STATE(2537)] = 116059, + [SMALL_STATE(2538)] = 116067, + [SMALL_STATE(2539)] = 116075, + [SMALL_STATE(2540)] = 116083, + [SMALL_STATE(2541)] = 116091, + [SMALL_STATE(2542)] = 116099, + [SMALL_STATE(2543)] = 116107, + [SMALL_STATE(2544)] = 116115, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(406), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1760), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1565), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(176), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1040), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(78), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(448), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(349), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(436), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(307), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1975), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1976), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1977), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(465), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(79), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(295), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(822), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(467), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2205), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(361), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2203), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2199), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2197), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(342), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2195), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(474), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(187), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(476), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(900), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1384), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(301), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1157), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(194), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1157), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(80), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1442), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(473), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(81), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(315), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(823), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(472), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2196), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(367), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2215), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2198), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, .production_id = 1), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 7), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 110), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 110), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 98), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 98), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 99), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 99), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 84), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 84), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 69), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 69), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 48), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 48), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 18), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 19), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 8), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 77), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 77), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 54), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 54), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 77), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 77), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 28), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 28), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 54), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 54), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 61), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 61), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 62), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 62), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 42), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 42), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(425), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(485), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 87), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 87), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(457), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(424), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 64), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 64), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 64), SHIFT_REPEAT(445), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 64), SHIFT_REPEAT(459), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, .production_id = 88), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, .production_id = 88), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 65), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 65), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 93), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 93), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 108), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 108), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, .production_id = 108), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, .production_id = 108), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 128), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 128), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 128), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 128), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 44), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 44), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 21), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 21), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 64), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 64), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 64), SHIFT_REPEAT(359), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 3, .production_id = 21), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 3, .production_id = 21), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 63), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 63), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 45), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 45), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 45), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 45), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 64), SHIFT_REPEAT(363), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 91), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 91), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 62), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 62), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 43), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 43), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 48), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 48), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 68), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 68), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 69), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 69), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 47), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 47), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 104), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 104), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 116), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 116), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 107), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 107), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 42), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 42), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 114), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 114), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 111), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 111), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 112), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 112), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 120), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 120), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 121), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 121), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 48), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 48), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 122), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 122), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 123), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 123), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 102), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 102), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 124), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 124), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 125), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 125), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 1, .production_id = 43), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat2, 1, .production_id = 43), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 69), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 69), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 113), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 113), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 129), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 129), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 130), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 130), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 131), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 131), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 132), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 132), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, .production_id = 133), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 8, .production_id = 133), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 105), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 105), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 92), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 92), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 90), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 90), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 60), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 60), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 126), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 126), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 94), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 94), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 85), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 85), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 67), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 67), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 69), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 69), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 66), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 66), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 86), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 86), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 73), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 73), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 72), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 72), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 100), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 100), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 109), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 109), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 49), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 49), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 89), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 89), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 14), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 14), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 118), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 118), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 70), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 70), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 71), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 71), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 50), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 50), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 127), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 127), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 115), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 115), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 93), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 93), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 117), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 117), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 48), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 48), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 119), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 119), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 95), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 95), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 106), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 106), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1455), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1442), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1451), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 55), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 55), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 11), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 11), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 26), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 26), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1449), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 29), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 29), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 56), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 56), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1445), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1440), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1444), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 15), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 15), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1448), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 39), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 39), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 39), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 39), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 12), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 12), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 38), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 38), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 38), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 38), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 38), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 38), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 39), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 39), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 39), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 39), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 7), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(1005), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2118), - [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(1005), - [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(868), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 13), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 13), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(975), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2174), - [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(975), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(871), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(978), - [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2063), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(978), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(885), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(1036), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2160), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(1036), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(878), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(911), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2130), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(911), - [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(882), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(931), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2075), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(931), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(888), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 7), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(927), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2049), - [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(927), - [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(880), - [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(963), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2087), - [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(963), - [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 30), SHIFT_REPEAT(869), - [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(829), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 9), SHIFT(270), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), - [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(302), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(1612), - [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(1612), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 23), - [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 23), SHIFT(440), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 22), - [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 23), SHIFT(564), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 26), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, .production_id = 27), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 8), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 26), - [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 23), SHIFT(527), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 52), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, .production_id = 27), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 8), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 53), - [2622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 23), SHIFT(498), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 23), SHIFT(530), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 8), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 10), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 23), SHIFT(453), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 8), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(442), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2177), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(818), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(516), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2223), - [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(826), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1578), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1578), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 23), SHIFT(468), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 23), SHIFT(531), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(439), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2220), - [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(816), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 76), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 97), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 97), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 23), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 31), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 31), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 23), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 110), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 20), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 84), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 21), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(365), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 80), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 80), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 79), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 79), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 58), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 58), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(398), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 9), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 59), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 59), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 99), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 96), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 75), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 81), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 81), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 41), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(559), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 31), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 31), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(474), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2101), - [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(387), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 101), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(500), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 22), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2151), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 17), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 52), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), - [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(296), - [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1717), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 40), - [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 40), SHIFT_REPEAT(458), - [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 103), SHIFT_REPEAT(353), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 103), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 10), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1756), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 17), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 33), - [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 33), SHIFT_REPEAT(1801), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 19), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 18), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 32), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), - [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(2213), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(325), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(493), - [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1406), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 51), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 57), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 57), - [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(438), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(160), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 24), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(413), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(275), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(508), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(828), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 46), SHIFT_REPEAT(471), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 46), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 78), SHIFT_REPEAT(385), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 78), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(830), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(268), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1405), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 34), - [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(431), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(272), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 33), SHIFT_REPEAT(1881), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(290), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 10), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2037), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 38), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 25), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 37), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 26), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 36), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 74), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 38), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 83), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 35), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 82), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3888] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(650), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2057), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1870), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(208), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1024), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(70), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(514), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(368), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(429), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(315), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2277), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2278), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2279), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(556), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(72), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(421), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(820), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(560), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2521), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(418), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2519), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2516), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2514), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(403), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2512), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(649), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(189), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(645), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1023), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1713), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(320), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1344), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(198), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1344), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(71), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1762), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(644), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(73), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(385), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(856), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(638), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2511), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(405), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2534), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2513), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(287), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(967), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, .production_id = 1), + [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(235), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(645), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1023), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 5), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 80), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 80), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 95), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 95), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 106), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 106), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 94), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 94), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 14), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 6), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .dynamic_precedence = -1, .production_id = 15), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 44), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 44), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 65), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 65), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 58), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 58), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 73), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 73), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 83), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 83), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 38), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 38), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2), + [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 50), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 50), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), + [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1, .production_id = 2), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 57), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 57), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 24), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 24), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(441), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(648), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 73), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 73), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 50), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 50), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(430), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(549), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), SHIFT_REPEAT(469), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), SHIFT_REPEAT(513), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 124), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 124), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 124), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 124), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 3, .production_id = 17), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 3, .production_id = 17), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, .production_id = 104), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, .production_id = 104), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 104), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 104), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 89), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 89), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, .production_id = 84), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, .production_id = 84), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 61), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 61), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 41), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 41), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 60), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 60), + [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 60), SHIFT_REPEAT(559), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 59), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 59), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 41), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 41), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 40), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 40), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 17), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 17), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 60), SHIFT_REPEAT(621), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 38), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 38), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 44), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 44), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 43), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 43), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 64), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 64), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 65), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 65), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 58), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 58), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 112), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 112), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 39), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 39), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 103), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 103), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 100), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 100), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 87), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 87), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 65), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 65), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 110), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 110), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 107), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 107), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 118), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 118), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 119), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 119), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 120), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 120), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 121), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 121), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 44), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 44), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 98), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 98), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 116), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 116), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 125), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 125), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 108), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 108), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 126), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 126), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 127), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 127), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 109), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 109), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 1, .production_id = 39), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat2, 1, .production_id = 39), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 128), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 128), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 8, .production_id = 129), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, .production_id = 129), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 117), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 117), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 115), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 115), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 111), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 111), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 91), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 91), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 44), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 44), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 86), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 86), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 85), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 85), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 46), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 46), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 123), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 123), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 122), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 122), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 82), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 82), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 81), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 81), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 45), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 45), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 63), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 63), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 12), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 12), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 68), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 68), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 67), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 67), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 114), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 114), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 113), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 113), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 69), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 69), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 66), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 66), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 96), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 96), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 89), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 89), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 105), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 105), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 88), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 88), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 101), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 101), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 65), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 65), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 90), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 90), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 102), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 102), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 62), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 62), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1774), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1761), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1762), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 51), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 51), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 22), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 22), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 52), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 52), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 9), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 9), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1765), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1778), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1766), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), + [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(987), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2361), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(987), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(920), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 11), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 11), + [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1769), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(921), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2348), + [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(921), + [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(917), + [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1759), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(1003), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2392), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(1003), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(916), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 34), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 34), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 48), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 48), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 18), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 18), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 34), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 34), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), + [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(475), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, .production_id = 23), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, .production_id = 23), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 22), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 22), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 34), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 34), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 35), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 35), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 35), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 35), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(489), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 35), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 35), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 35), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 35), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(1022), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2434), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(1022), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(918), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(948), + [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2483), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(948), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(913), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 10), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 10), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(947), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2464), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(947), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(919), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 6), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 6), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(471), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(939), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2345), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(939), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(915), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(458), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(548), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(573), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(934), + [2637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2523), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(934), + [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(914), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(557), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(518), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(586), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), + [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(910), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(906), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 7), SHIFT(291), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(221), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1889), + [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1889), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(580), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(543), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(647), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(615), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(608), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 49), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .dynamic_precedence = -1, .production_id = 6), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 8), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(502), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1864), + [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1864), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 6), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(599), + [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2467), + [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(851), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(520), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(454), + [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2539), + [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(882), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 72), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(637), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2542), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(860), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 80), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 27), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 27), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 106), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 37), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 95), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 94), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(393), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(416), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 92), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2393), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 16), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 97), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 19), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(563), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 71), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(410), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 75), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 75), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 17), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 7), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(909), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 19), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 76), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 76), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 77), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 77), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(649), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 55), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 55), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 54), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 54), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 27), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 27), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 93), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 93), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 48), + [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(476), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 18), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 4), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(220), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1998), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2437), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 13), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 4), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 13), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(2033), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 36), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(468), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 29), + [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2138), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 8), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 15), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 14), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(2491), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 99), SHIFT_REPEAT(646), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 99), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(434), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(306), + [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(321), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(547), + [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(907), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 74), SHIFT_REPEAT(412), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 74), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 47), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(905), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 53), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 53), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(356), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1724), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(324), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(145), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1725), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 20), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(432), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2234), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(616), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2463), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 42), SHIFT_REPEAT(478), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 42), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(312), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 8), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 30), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(908), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(515), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 34), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 70), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 34), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 79), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 3), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 31), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 32), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 33), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 78), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 22), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 21), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4345] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), }; #ifdef __cplusplus diff --git a/test/corpus/errors.txt b/test/corpus/errors.txt index fdca1b4c..f357c276 100644 --- a/test/corpus/errors.txt +++ b/test/corpus/errors.txt @@ -22,6 +22,9 @@ def a(b): (identifier)) (block (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement (identifier))))) diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 31a37fb7..512880d0 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -280,19 +280,28 @@ exec("""exec _code_ in _globs_, _locs_""") (call (identifier) (argument_list - (string (string_content - (escape_sequence) - (escape_sequence))) + (string + (string_start) + (string_content + (escape_sequence) + (escape_sequence)) + (string_end)) (dictionary (pair - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (none))) (identifier)))) (expression_statement (call (identifier) (argument_list - (string (string_content)))))) + (string + (string_start) + (string_content) + (string_end)))))) ================================================================================ Async / await used as identifiers @@ -762,7 +771,10 @@ foo(x := 3, cat='vector') (integer)) (keyword_argument (identifier) - (string (string_content)))))) + (string + (string_start) + (string_content) + (string_end)))))) (expression_statement (parenthesized_expression (named_expression @@ -841,7 +853,10 @@ lambda (a, b): (a, b) (identifier) (argument_list (binary_operator - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (identifier)))))) (expression_statement (lambda diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index a496a894..b703f574 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -139,45 +139,81 @@ b"\x12\u12\U12\x13\N{WINKING FACE}" (module (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content - (escape_sequence)))) + (string + (string_start) + (string_content + (escape_sequence)) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content - (escape_sequence)))) + (string + (string_start) + (string_content + (escape_sequence)) + (string_end))) (expression_statement - (string (string_content - (escape_sequence) - (escape_sequence)))) + (string + (string_start) + (string_content + (escape_sequence) + (escape_sequence)) + (string_end))) (expression_statement - (string (string_content - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence)))) + (string + (string_start) + (string_content + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence)) + (string_end))) (expression_statement - (string (string_content)))) + (string + (string_start) + (string_content) + (string_end)))) ================================================================================ Raw strings @@ -199,24 +235,40 @@ r"\\" (module (expression_statement - (string (string_content - (escape_sequence)))) + (string + (string_start) + (string_content + (escape_sequence)) + (string_end))) (expression_statement - (string (string_content - (escape_sequence)))) + (string + (string_start) + (string_content + (escape_sequence)) + (string_end))) (comment) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (comment) (expression_statement (string + (string_start) (string_content) (interpolation - (integer)))) + (integer)) + (string_end))) (expression_statement - (string))) + (string + (string_start) + (string_end)))) ================================================================================ Raw strings with escaped quotes @@ -235,8 +287,14 @@ re.compile(r"(\n|\A)#include\s*['\"]" (identifier)) (argument_list (concatenated_string - (string (string_content)) - (string (string_content))))))) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end))))))) ================================================================================ Format strings @@ -260,59 +318,84 @@ f"{yield d}" (comment) (expression_statement (string + (string_start) (string_content) (interpolation (call (identifier) (argument_list (string + (string_start) (string_content) (interpolation (identifier)) - (string_content))))) - (string_content))) + (string_content) + (string_end))))) + (string_content) + (string_end))) (expression_statement (string + (string_start) (string_content) (interpolation (identifier)) - (string_content))) + (string_content) + (string_end))) (expression_statement (string + (string_start) (string_content) (interpolation (identifier)) - (string_content))) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement (string + (string_start) (string_content) (interpolation (identifier)) - (string_content))) + (string_content) + (string_end))) (expression_statement (string + (string_start) (string_content) (interpolation - (identifier)))) + (identifier)) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement (string + (string_start) (string_content) (interpolation (identifier)) - (string_content))) + (string_content) + (string_end))) (expression_statement (string + (string_start) (interpolation - (expression_list (identifier))))) + (expression_list + (identifier))) + (string_end))) (expression_statement (string + (string_start) (interpolation (yield - (identifier)))))) + (identifier))) + (string_end)))) ================================================================================ Format strings with format specifiers @@ -330,6 +413,7 @@ f"{value:{width + padding!r}.{precision}}" (module (expression_statement (string + (string_start) (string_content) (interpolation (identifier) @@ -337,9 +421,11 @@ f"{value:{width + padding!r}.{precision}}" (string_content) (interpolation (identifier) - (format_specifier)))) + (format_specifier)) + (string_end))) (expression_statement (string + (string_start) (interpolation (identifier) (format_specifier @@ -350,17 +436,31 @@ f"{value:{width + padding!r}.{precision}}" (format_expression (attribute (identifier) - (identifier))))))) + (identifier))))) + (string_end))) (expression_statement (string - (interpolation (identifier) (format_specifier)))) + (string_start) + (interpolation + (identifier) + (format_specifier)) + (string_end))) (expression_statement - (string (interpolation (identifier)))) + (string + (string_start) + (interpolation + (identifier)) + (string_end))) (expression_statement (string - (interpolation (identifier) (format_specifier)))) + (string_start) + (interpolation + (identifier) + (format_specifier)) + (string_end))) (expression_statement (string + (string_start) (interpolation (identifier) (format_specifier @@ -370,7 +470,8 @@ f"{value:{width + padding!r}.{precision}}" (identifier)) (type_conversion)) (format_expression - (identifier))))))) + (identifier)))) + (string_end)))) ================================================================================ Unicode escape sequences @@ -382,10 +483,13 @@ Unicode escape sequences (module (expression_statement - (string (string_content - (escape_sequence) - (escape_sequence) - (escape_sequence))))) + (string + (string_start) + (string_content + (escape_sequence) + (escape_sequence) + (escape_sequence)) + (string_end)))) ================================================================================ Other primitives @@ -416,9 +520,18 @@ Concatenated strings (module (expression_statement (concatenated_string - (string (string_content)) - (string (string_content)) - (string (string_content))))) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end))))) ================================================================================ Multi-line strings @@ -464,25 +577,46 @@ and another escaped newline\n\ (module (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (expression_statement - (string (string_content - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence) - (escape_sequence))))) + (string + (string_start) + (string_content + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence)) + (string_end)))) ================================================================================ Lists @@ -520,24 +654,24 @@ Lists (identifier)))) (expression_statement (list - (list_splat - (attribute - (identifier) - (identifier))))) + (attribute + (list_splat + (identifier)) + (identifier)))) (expression_statement (list - (list_splat - (attribute - (subscript - (identifier) + (attribute + (subscript + (list_splat (identifier)) - (identifier))))) + (identifier)) + (identifier)))) (expression_statement (list - (list_splat - (call - (identifier) - (argument_list)))))) + (call + (list_splat + (identifier)) + (argument_list))))) ================================================================================ List comprehensions diff --git a/test/corpus/pattern_matching.txt b/test/corpus/pattern_matching.txt index 10519ed2..16be3e78 100644 --- a/test/corpus/pattern_matching.txt +++ b/test/corpus/pattern_matching.txt @@ -25,13 +25,19 @@ match command.split(): (case_clause (case_pattern (list - (string (string_content)))) + (string + (string_start) + (string_content) + (string_end)))) (block (expression_statement (call (identifier) (argument_list - (string (string_content))))) + (string + (string_start) + (string_content) + (string_end))))) (expression_statement (call (identifier) @@ -39,7 +45,10 @@ match command.split(): (case_clause (case_pattern (list - (string (string_content)))) + (string + (string_start) + (string_content) + (string_end)))) (block (expression_statement (call @@ -50,7 +59,10 @@ match command.split(): (case_clause (case_pattern (list - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (identifier))) (block (expression_statement @@ -64,7 +76,10 @@ match command.split(): (case_clause (case_pattern (list - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (identifier))) (block (expression_statement @@ -98,7 +113,10 @@ match command.split(): (case_clause (case_pattern (list - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (list_splat (identifier)))) (block @@ -140,7 +158,10 @@ match command.split(): (case_clause (case_pattern (list - (string (string_content)))) + (string + (string_start) + (string_content) + (string_end)))) (block (expression_statement (ellipsis)) @@ -148,14 +169,20 @@ match command.split(): (case_clause (case_pattern (list - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (identifier))) (block (pass_statement))) (case_clause (case_pattern (list - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (list_splat (identifier)))) (block @@ -169,10 +196,12 @@ match command.split(): (identifier) (argument_list (string + (string_start) (string_content) (interpolation (identifier) - (type_conversion)))))))))) + (type_conversion)) + (string_end))))))))) ================================================================================ Or patterns @@ -196,10 +225,19 @@ match command.split(): (case_pattern (binary_operator (list - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (list - (string (string_content)) - (string (string_content))))) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end))))) (block (expression_statement (assignment @@ -209,22 +247,40 @@ match command.split(): (identifier) (identifier)) (argument_list - (string (string_content)))))))) + (string + (string_start) + (string_content) + (string_end)))))))) (case_clause (case_pattern (binary_operator (binary_operator (list - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (identifier)) (list - (string (string_content)) - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end)) (identifier))) (list - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (identifier) - (string (string_content))))) + (string + (string_start) + (string_content) + (string_end))))) (block (pass_statement))))) @@ -247,16 +303,31 @@ match command.split(): (case_clause (case_pattern (list - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (as_pattern (parenthesized_expression (binary_operator (binary_operator (binary_operator - (string (string_content)) - (string (string_content))) - (string (string_content))) - (string (string_content)))) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end))) + (string + (string_start) + (string_content) + (string_end))) + (string + (string_start) + (string_content) + (string_end)))) (as_pattern_target (identifier))))) (block @@ -308,7 +379,10 @@ def foo(**match): pass (identifier)) (expression_list (integer) - (string (string_content))))) + (string + (string_start) + (string_content) + (string_end))))) (expression_statement (assignment (pattern_list @@ -364,7 +438,10 @@ field = call(match=r".*\.txt$") (argument_list (keyword_argument (identifier) - (string (string_content)))))))) + (string + (string_start) + (string_content) + (string_end)))))))) ================================================================================ Match kwargs 2 @@ -481,7 +558,8 @@ match (0, 1, 2): (case_pattern (integer)) (case_pattern - (identifier)) + (list_splat + (identifier))) (block (expression_statement (assignment @@ -501,7 +579,8 @@ match x,: (identifier) (case_clause (case_pattern - (identifier)) + (list_splat + (identifier))) (block (expression_statement (assignment @@ -576,7 +655,10 @@ if match := re.fullmatch(r"(-)?(\d+:)?\d?\d:\d\d(\.\d*)?", time, flags=re.ASCII) (identifier) (identifier)) (argument_list - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (identifier) (keyword_argument (identifier) diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index e510a451..3c8b2b78 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -161,8 +161,14 @@ print >> a, "b", "c" (print_statement (chevron (identifier)) - (string (string_content)) - (string (string_content)))) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end)))) ================================================================================ Assert statements @@ -606,7 +612,10 @@ with e as f, g as h,: (call (identifier) (argument_list - (string (string_content)))) + (string + (string_start) + (string_content) + (string_end)))) (as_pattern_target (identifier)))) (with_item @@ -614,7 +623,10 @@ with e as f, g as h,: (call (identifier) (argument_list - (string (string_content)))) + (string + (string_start) + (string_content) + (string_end)))) (as_pattern_target (identifier))))) (block @@ -760,7 +772,10 @@ async def d(a:str="default", b=c) -> None: name: (identifier) type: (type (identifier)) - value: (string string_content: (string_content))) + value: (string + (string_start) + (string_content) + (string_end))) (default_parameter name: (identifier) value: (identifier))) @@ -1097,12 +1112,18 @@ raise RunTimeError('NO') from e (call (identifier) (argument_list - (string (string_content))))) + (string + (string_start) + (string_content) + (string_end))))) (raise_statement (call (identifier) (argument_list - (string (string_content)))) + (string + (string_start) + (string_content) + (string_end)))) (identifier))) ================================================================================ @@ -1220,7 +1241,10 @@ print "a" (module (print_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (comment)) ================================================================================ @@ -1251,12 +1275,21 @@ exec 'x+=1' in a, b (module (exec_statement - (string (string_content))) + (string + (string_start) + (string_content) + (string_end))) (exec_statement - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (none)) (exec_statement - (string (string_content)) + (string + (string_start) + (string_content) + (string_end)) (identifier) (identifier))) @@ -1323,11 +1356,18 @@ or len("aa") (call (identifier) (argument_list - (string (string_content)))) + (string + (string_start) + (string_content) + (string_end)))) + (line_continuation) (call (identifier) (argument_list - (string (string_content))))))) + (string + (string_start) + (string_content) + (string_end))))))) ================================================================================ Statements with semicolons