diff --git a/.gitignore b/.gitignore index 0ac164cd9..c38738e07 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ nvim.appimage nvim-linux64* nvim-macos* nvim-win64* +build/ +node_modules/ diff --git a/grammar.js b/grammar.js index 02cd8af19..578dafc06 100644 --- a/grammar.js +++ b/grammar.js @@ -306,6 +306,11 @@ module.exports = grammar({ /[a-z0-9]{58}/ ), + signature_literal: $ => seq( + 'sign', + /[a-z0-9]{212}/ + ), + annotation: $ => seq( '@', $.identifier ), @@ -396,6 +401,8 @@ module.exports = grammar({ address_type: $ => 'address', + signature_type: $ => 'signature', + unit_type: $ => seq( "(", ")" @@ -430,6 +437,7 @@ module.exports = grammar({ $.group_type, $.scalar_type, $.address_type, + $.signature_type, $.record_type, ), @@ -448,6 +456,14 @@ module.exports = grammar({ ')' ), + array_type: $ => seq( + '[', + $.type, + ';', + $._numeral, + ']' + ), + type: $ => choice( $.unsigned_type, $.signed_type, @@ -456,9 +472,11 @@ module.exports = grammar({ $.scalar_type, $.boolean_type, $.address_type, + $.signature_type, $.record_type, $.unit_type, - $.tuple_type + $.tuple_type, + $.array_type ), group_coordinate: $ => choice( @@ -554,6 +572,18 @@ module.exports = grammar({ ')' ), + array_expression: $ => seq( + '[', + $._expression, + repeat1( + seq( + ',', + $._expression, + ) + ), + ']' + ), + struct_expression: $ => seq( $.identifier, '{', @@ -585,6 +615,14 @@ module.exports = grammar({ ) ), + self_signer: $ => prec(PREC.OBJ_ACCESS, + seq( + 'self', + '.', + 'signer' + ) + ), + block_height: $ => prec(PREC.OBJ_ACCESS, seq( 'block', @@ -601,6 +639,7 @@ module.exports = grammar({ $.scalar_literal, $.boolean_literal, $.address_literal, + $.signature_literal, $.affine_group_literal, $.variable, $.associated_constant, @@ -609,6 +648,7 @@ module.exports = grammar({ $.associated_function_call, $.unit_expression, $.tuple_expression, + $.array_expression, $.struct_expression, $.self_caller, $.block_height, @@ -650,6 +690,7 @@ module.exports = grammar({ $.scalar_literal, $.boolean_literal, $.address_literal, + $.signature_literal, $.affine_group_literal, $.variable, $.associated_constant, @@ -658,6 +699,7 @@ module.exports = grammar({ $.associated_function_call, $.unit_expression, $.tuple_expression, + $.array_expression, $.struct_expression, $.self_caller, $.block_height, diff --git a/src/grammar.json b/src/grammar.json index 468bc17d9..12a7d1b65 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -779,6 +779,19 @@ } ] }, + "signature_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "sign" + }, + { + "type": "PATTERN", + "value": "[a-z0-9]{212}" + } + ] + }, "annotation": { "type": "SEQ", "members": [ @@ -1188,6 +1201,10 @@ "type": "STRING", "value": "address" }, + "signature_type": { + "type": "STRING", + "value": "signature" + }, "unit_type": { "type": "SEQ", "members": [ @@ -1293,6 +1310,10 @@ "type": "SYMBOL", "name": "address_type" }, + { + "type": "SYMBOL", + "name": "signature_type" + }, { "type": "SYMBOL", "name": "record_type" @@ -1344,6 +1365,31 @@ } ] }, + "array_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "SYMBOL", + "name": "_numeral" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, "type": { "type": "CHOICE", "members": [ @@ -1375,6 +1421,10 @@ "type": "SYMBOL", "name": "address_type" }, + { + "type": "SYMBOL", + "name": "signature_type" + }, { "type": "SYMBOL", "name": "record_type" @@ -1386,6 +1436,10 @@ { "type": "SYMBOL", "name": "tuple_type" + }, + { + "type": "SYMBOL", + "name": "array_type" } ] }, @@ -1679,6 +1733,39 @@ } ] }, + "array_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, "struct_expression": { "type": "SEQ", "members": [ @@ -1775,6 +1862,27 @@ ] } }, + "self_signer": { + "type": "PREC", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "self" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "signer" + } + ] + } + }, "block_height": { "type": "PREC", "value": 17, @@ -1827,6 +1935,10 @@ "type": "SYMBOL", "name": "address_literal" }, + { + "type": "SYMBOL", + "name": "signature_literal" + }, { "type": "SYMBOL", "name": "affine_group_literal" @@ -1872,6 +1984,10 @@ "type": "SYMBOL", "name": "tuple_expression" }, + { + "type": "SYMBOL", + "name": "array_expression" + }, { "type": "SYMBOL", "name": "struct_expression" @@ -1996,6 +2112,10 @@ "type": "SYMBOL", "name": "address_literal" }, + { + "type": "SYMBOL", + "name": "signature_literal" + }, { "type": "SYMBOL", "name": "affine_group_literal" @@ -2045,6 +2165,10 @@ "type": "SYMBOL", "name": "tuple_expression" }, + { + "type": "SYMBOL", + "name": "array_expression" + }, { "type": "SYMBOL", "name": "struct_expression" diff --git a/src/node-types.json b/src/node-types.json index acaabc54e..b145131dc 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -40,7 +40,7 @@ } }, { - "type": "assert_call", + "type": "array_expression", "named": true, "fields": { "additive_expression": { @@ -135,6 +135,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -175,6 +179,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -313,6 +321,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -353,6 +365,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -491,6 +507,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -531,6 +551,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -669,6 +693,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -709,6 +737,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -847,6 +879,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -887,6 +923,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -1025,6 +1065,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -1065,6 +1109,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -1203,6 +1251,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -1243,6 +1295,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -1381,6 +1437,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -1421,6 +1481,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -1559,6 +1623,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -1599,6 +1667,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -1737,6 +1809,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -1777,6 +1853,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -1915,6 +1995,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -1955,6 +2039,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -2093,6 +2181,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -2133,6 +2225,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -2181,7 +2277,7 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ { @@ -2192,6 +2288,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -2232,6 +2332,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -2272,7 +2376,22 @@ } }, { - "type": "assert_equal_call", + "type": "array_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "assert_call", "named": true, "fields": { "additive_expression": { @@ -2367,6 +2486,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -2407,6 +2530,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -2545,6 +2672,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -2585,6 +2716,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -2723,6 +2858,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -2763,6 +2902,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -2901,6 +3044,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -2941,6 +3088,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -3079,6 +3230,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -3119,6 +3274,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -3257,6 +3416,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -3297,6 +3460,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -3435,6 +3602,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -3475,6 +3646,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -3613,6 +3788,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -3653,6 +3832,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -3791,6 +3974,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -3831,6 +4018,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -3969,6 +4160,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -4009,6 +4204,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -4147,6 +4346,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -4187,6 +4390,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -4325,6 +4532,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -4365,6 +4576,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -4413,7 +4628,7 @@ } }, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { @@ -4424,6 +4639,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -4464,6 +4683,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -4504,7 +4727,7 @@ } }, { - "type": "assert_not_equal_call", + "type": "assert_equal_call", "named": true, "fields": { "additive_expression": { @@ -4599,6 +4822,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -4639,6 +4866,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -4777,6 +5008,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -4817,6 +5052,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -4955,6 +5194,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -4995,6 +5238,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -5133,6 +5380,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -5173,6 +5424,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -5311,6 +5566,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -5351,6 +5610,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -5489,6 +5752,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -5529,6 +5796,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -5667,6 +5938,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -5707,6 +5982,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -5845,6 +6124,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -5885,6 +6168,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -6023,6 +6310,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -6063,6 +6354,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -6201,6 +6496,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -6241,6 +6540,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -6379,6 +6682,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -6419,6 +6726,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -6557,6 +6868,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -6597,6 +6912,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -6656,6 +6975,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -6696,6 +7019,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -6736,35 +7063,7 @@ } }, { - "type": "assert_statement", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "assert_call", - "named": true - }, - { - "type": "assert_equal_call", - "named": true - }, - { - "type": "assert_not_equal_call", - "named": true - } - ] - } - }, - { - "type": "assignment_operator", - "named": true, - "fields": {} - }, - { - "type": "assignment_statement", + "type": "assert_not_equal_call", "named": true, "fields": { "additive_expression": { @@ -6859,6 +7158,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -6899,6 +7202,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -7037,6 +7344,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -7077,6 +7388,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -7215,6 +7530,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -7255,6 +7574,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -7393,6 +7716,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -7433,6 +7760,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -7571,6 +7902,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -7611,6 +7946,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -7749,6 +8088,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -7789,6 +8132,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -7927,6 +8274,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -7967,6 +8318,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -8105,6 +8460,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -8145,6 +8504,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -8283,6 +8646,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -8323,6 +8690,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -8461,6 +8832,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -8501,6 +8876,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -8639,6 +9018,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -8679,6 +9062,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -8817,6 +9204,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -8857,6 +9248,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -8906,7 +9301,7 @@ }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "address_literal", @@ -8917,7 +9312,7 @@ "named": true }, { - "type": "assignment_operator", + "type": "array_expression", "named": true }, { @@ -8960,6 +9355,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -9000,107 +9399,35 @@ } }, { - "type": "associated_constant", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "named_type", - "named": true - } - ] - } - }, - { - "type": "associated_function_call", + "type": "assert_statement", "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { - "type": "function_arguments", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "named_type", - "named": true - } - ] - } - }, - { - "type": "block", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "assert_statement", - "named": true - }, - { - "type": "assignment_statement", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "conditional_statement", - "named": true - }, - { - "type": "expression_statement", - "named": true - }, - { - "type": "loop_statement", + "type": "assert_call", "named": true }, { - "type": "return_statement", + "type": "assert_equal_call", "named": true }, { - "type": "variable_declaration", + "type": "assert_not_equal_call", "named": true } ] } }, { - "type": "block_height", - "named": true, - "fields": {} - }, - { - "type": "boolean_literal", - "named": true, - "fields": {} - }, - { - "type": "boolean_type", + "type": "assignment_operator", "named": true, "fields": {} }, { - "type": "branch", + "type": "assignment_statement", "named": true, "fields": { "additive_expression": { @@ -9195,6 +9522,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -9235,6 +9566,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -9373,6 +9708,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -9413,6 +9752,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -9551,6 +9894,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -9591,6 +9938,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -9729,6 +10080,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -9769,6 +10124,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -9907,6 +10266,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -9947,6 +10310,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -10085,6 +10452,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -10125,6 +10496,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -10263,6 +10638,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -10303,6 +10682,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -10441,6 +10824,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -10481,6 +10868,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -10619,6 +11010,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -10659,6 +11054,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -10797,6 +11196,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -10837,6 +11240,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -10975,6 +11382,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -11015,6 +11426,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -11153,6 +11568,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -11193,6 +11612,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -11253,15 +11676,19 @@ "named": true }, { - "type": "associated_constant", + "type": "array_expression", "named": true }, { - "type": "associated_function_call", + "type": "assignment_operator", "named": true }, { - "type": "block", + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", "named": true }, { @@ -11296,6 +11723,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -11336,12 +11767,26 @@ } }, { - "type": "comment", + "type": "associated_constant", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "named_type", + "named": true + } + ] + } }, { - "type": "conditional_statement", + "type": "associated_function_call", "named": true, "fields": {}, "children": { @@ -11349,22 +11794,80 @@ "required": true, "types": [ { - "type": "block", + "type": "function_arguments", "named": true }, { - "type": "branch", + "type": "identifier", + "named": true + }, + { + "type": "named_type", + "named": true + } + ] + } + }, + { + "type": "block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "assert_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "block", "named": true }, { "type": "conditional_statement", "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "loop_statement", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "variable_declaration", + "named": true } ] } }, { - "type": "constant_declaration", + "type": "block_height", + "named": true, + "fields": {} + }, + { + "type": "boolean_literal", + "named": true, + "fields": {} + }, + { + "type": "boolean_type", + "named": true, + "fields": {} + }, + { + "type": "branch", "named": true, "fields": { "additive_expression": { @@ -11459,6 +11962,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -11499,6 +12006,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -11637,6 +12148,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -11677,6 +12192,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -11815,6 +12334,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -11855,6 +12378,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -11993,6 +12520,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -12033,6 +12564,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -12171,6 +12706,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -12211,6 +12750,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -12349,6 +12892,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -12389,6 +12936,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -12527,6 +13078,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -12567,6 +13122,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -12705,6 +13264,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -12745,6 +13308,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -12883,6 +13450,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -12923,6 +13494,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -13061,6 +13636,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -13101,6 +13680,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -13239,6 +13822,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -13279,6 +13866,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -13417,6 +14008,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -13457,6 +14052,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -13516,6 +14115,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -13524,6 +14127,10 @@ "type": "associated_function_call", "named": true }, + { + "type": "block", + "named": true + }, { "type": "block_height", "named": true @@ -13540,10 +14147,6 @@ "type": "free_function_call", "named": true }, - { - "type": "identifier", - "named": true - }, { "type": "method_call", "named": true @@ -13560,6 +14163,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -13584,10 +14191,6 @@ "type": "tuple_expression", "named": true }, - { - "type": "type", - "named": true - }, { "type": "unit_expression", "named": true @@ -13604,17 +14207,35 @@ } }, { - "type": "constant_identifier", + "type": "comment", "named": true, "fields": {} }, { - "type": "decimal_digit", + "type": "conditional_statement", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block", + "named": true + }, + { + "type": "branch", + "named": true + }, + { + "type": "conditional_statement", + "named": true + } + ] + } }, { - "type": "expression_statement", + "type": "constant_declaration", "named": true, "fields": { "additive_expression": { @@ -13709,6 +14330,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -13749,6 +14374,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -13887,6 +14516,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -13927,6 +14560,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -14065,6 +14702,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -14105,6 +14746,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -14243,6 +14888,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -14283,6 +14932,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -14421,6 +15074,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -14461,6 +15118,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -14599,6 +15260,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -14639,6 +15304,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -14777,6 +15446,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -14817,6 +15490,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -14955,6 +15632,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -14995,6 +15676,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -15133,6 +15818,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -15173,6 +15862,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -15311,6 +16004,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -15351,6 +16048,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -15489,6 +16190,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -15529,6 +16234,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -15667,6 +16376,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -15707,6 +16420,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -15755,8 +16472,8 @@ } }, "children": { - "multiple": false, - "required": false, + "multiple": true, + "required": true, "types": [ { "type": "address_literal", @@ -15766,6 +16483,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -15790,6 +16511,10 @@ "type": "free_function_call", "named": true }, + { + "type": "identifier", + "named": true + }, { "type": "method_call", "named": true @@ -15806,6 +16531,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -15830,6 +16559,10 @@ "type": "tuple_expression", "named": true }, + { + "type": "type", + "named": true + }, { "type": "unit_expression", "named": true @@ -15846,111 +16579,206 @@ } }, { - "type": "field_literal", + "type": "constant_identifier", "named": true, "fields": {} }, { - "type": "field_type", + "type": "decimal_digit", "named": true, "fields": {} }, { - "type": "finalizer", + "type": "expression_statement", "named": true, "fields": { - "body": { - "multiple": false, - "required": true, + "additive_expression": { + "multiple": true, + "required": false, "types": [ { - "type": "block", + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "identifier", + "type": "affine_group_literal", "named": true - } - ] - }, - "output_type": { - "multiple": false, - "required": false, - "types": [ + }, { - "type": "type", + "type": "array_expression", "named": true - } - ] - }, - "output_visibility": { - "multiple": false, - "required": false, - "types": [ + }, { - "type": "constant", - "named": false + "type": "associated_constant", + "named": true }, { - "type": "private", + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", "named": false }, { - "type": "public", + "type": "||", "named": false } ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "function_parameters", - "named": true - }, - { - "type": "return_arrow", - "named": true - } - ] - } - }, - { - "type": "free_function_call", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "function_arguments", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "locator", - "named": true - } - ] - } - }, - { - "type": "function_arguments", - "named": true, - "fields": { - "additive_expression": { + }, + "conditional_conjunctive_expression": { "multiple": true, "required": false, "types": [ @@ -16042,6 +16870,2261 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "conditional_disjunctive_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "conjunctive_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "disjunctive_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "equality_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "exclusive_disjunctive_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "exponential_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "multiplicative_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "ordering_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "shift_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "unary_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "associated_constant", + "named": true + }, + { + "type": "associated_function_call", + "named": true + }, + { + "type": "block_height", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "field_literal", + "named": true + }, + { + "type": "free_function_call", + "named": true + }, + { + "type": "method_call", + "named": true + }, + { + "type": "product_group_literal", + "named": true + }, + { + "type": "scalar_literal", + "named": true + }, + { + "type": "self_caller", + "named": true + }, + { + "type": "signature_literal", + "named": true + }, + { + "type": "signed_literal", + "named": true + }, + { + "type": "struct_component_expression", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "tuple_component_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable", + "named": true + } + ] + } + }, + { + "type": "field_literal", + "named": true, + "fields": {} + }, + { + "type": "field_type", + "named": true, + "fields": {} + }, + { + "type": "finalizer", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "output_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": true + } + ] + }, + "output_visibility": { + "multiple": false, + "required": false, + "types": [ + { + "type": "constant", + "named": false + }, + { + "type": "private", + "named": false + }, + { + "type": "public", + "named": false + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "function_parameters", + "named": true + }, + { + "type": "return_arrow", + "named": true + } + ] + } + }, + { + "type": "free_function_call", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function_arguments", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "locator", + "named": true + } + ] + } + }, + { + "type": "function_arguments", + "named": true, + "fields": { + "additive_expression": { + "multiple": true, + "required": false, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "address_literal", + "named": true + }, + { + "type": "affine_group_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -16082,6 +19165,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -16220,6 +19307,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -16260,6 +19351,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -16398,6 +19493,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -16438,6 +19537,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -16576,6 +19679,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -16616,6 +19723,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -16754,6 +19865,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -16794,6 +19909,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -16932,6 +20051,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -16972,6 +20095,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -17110,6 +20237,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -17150,6 +20281,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -17288,6 +20423,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -17328,6 +20467,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -17466,6 +20609,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -17506,6 +20653,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -17644,6 +20795,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -17684,6 +20839,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -17822,6 +20981,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -17862,6 +21025,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -18000,6 +21167,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -18040,6 +21211,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -18099,6 +21274,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -18139,6 +21318,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -18508,6 +21691,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -18548,6 +21735,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -18686,6 +21877,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -18726,6 +21921,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -18864,6 +22063,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -18904,6 +22107,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -19042,6 +22249,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -19082,6 +22293,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -19220,6 +22435,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -19260,6 +22479,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -19398,6 +22621,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -19438,6 +22665,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -19576,6 +22807,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -19616,6 +22851,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -19754,6 +22993,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -19794,6 +23037,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -19932,6 +23179,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -19972,6 +23223,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -20110,6 +23365,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -20150,6 +23409,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -20288,6 +23551,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -20328,6 +23595,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -20466,6 +23737,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -20506,6 +23781,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -20565,6 +23844,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -20613,6 +23896,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -20771,6 +24058,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -20811,6 +24102,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -20949,6 +24244,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -20989,6 +24288,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -21127,6 +24430,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -21167,6 +24474,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -21305,6 +24616,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -21345,6 +24660,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -21483,6 +24802,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -21523,6 +24846,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -21661,6 +24988,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -21701,6 +25032,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -21839,6 +25174,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -21879,6 +25218,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -22017,6 +25360,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -22057,6 +25404,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -22195,6 +25546,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -22235,6 +25590,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -22373,6 +25732,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -22413,6 +25776,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -22551,6 +25918,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -22591,6 +25962,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -22729,6 +26104,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -22769,6 +26148,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -22828,6 +26211,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -22876,6 +26263,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -22950,6 +26341,10 @@ { "type": "scalar_type", "named": true + }, + { + "type": "signature_type", + "named": true } ] } @@ -23306,6 +26701,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -23346,6 +26745,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -23484,6 +26887,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -23524,6 +26931,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -23662,6 +27073,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -23702,6 +27117,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -23840,6 +27259,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -23880,6 +27303,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -24018,6 +27445,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -24058,6 +27489,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -24196,6 +27631,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -24236,6 +27675,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -24374,6 +27817,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -24414,6 +27861,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -24552,6 +28003,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -24592,6 +28047,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -24730,6 +28189,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -24770,6 +28233,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -24908,6 +28375,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -24948,6 +28419,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -25086,6 +28561,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -25126,6 +28605,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -25264,6 +28747,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -25304,6 +28791,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -25363,6 +28854,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -25407,6 +28902,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -25497,6 +28996,11 @@ "named": true, "fields": {} }, + { + "type": "signature_literal", + "named": true, + "fields": {} + }, { "type": "signed_literal", "named": true, @@ -25656,6 +29160,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -25696,6 +29204,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -25834,6 +29346,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -25874,6 +29390,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -26012,6 +29532,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -26052,6 +29576,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -26190,6 +29718,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -26230,6 +29762,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -26368,6 +29904,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -26408,6 +29948,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -26546,6 +30090,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -26586,6 +30134,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -26724,6 +30276,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -26764,6 +30320,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -26902,6 +30462,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -26942,6 +30506,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -27080,6 +30648,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -27120,6 +30692,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -27258,6 +30834,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -27298,6 +30878,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -27436,6 +31020,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -27476,6 +31064,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -27614,6 +31206,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -27654,6 +31250,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -27713,6 +31313,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -27757,6 +31361,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -27892,6 +31500,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -27932,6 +31544,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -28070,6 +31686,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -28110,6 +31730,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -28248,6 +31872,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -28288,6 +31916,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -28426,6 +32058,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -28466,6 +32102,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -28604,6 +32244,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -28644,6 +32288,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -28782,6 +32430,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -28822,6 +32474,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -28960,6 +32616,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -29000,6 +32660,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -29138,6 +32802,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -29178,6 +32846,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -29316,6 +32988,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -29356,6 +33032,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -29494,6 +33174,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -29534,6 +33218,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -29672,6 +33360,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -29712,6 +33404,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -29850,6 +33546,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -29890,6 +33590,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -29949,6 +33653,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -29993,6 +33701,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -30178,6 +33890,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -30218,6 +33934,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -30356,6 +34076,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -30396,6 +34120,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -30534,6 +34262,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -30574,6 +34306,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -30712,6 +34448,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -30752,6 +34492,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -30890,6 +34634,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -30930,6 +34678,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -31068,6 +34820,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -31108,6 +34864,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -31246,6 +35006,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -31286,6 +35050,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -31424,6 +35192,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -31464,6 +35236,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -31602,6 +35378,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -31642,6 +35422,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -31780,6 +35564,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -31820,6 +35608,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -31958,6 +35750,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -31998,6 +35794,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -32136,6 +35936,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -32176,6 +35980,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -32235,6 +36043,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -32275,6 +36087,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -32519,6 +36335,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -32559,6 +36379,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -32697,6 +36521,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -32737,6 +36565,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -32875,6 +36707,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -32915,6 +36751,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -33053,6 +36893,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -33093,6 +36937,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -33231,6 +37079,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -33271,6 +37123,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -33409,6 +37265,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -33449,6 +37309,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -33587,6 +37451,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -33627,6 +37495,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -33765,6 +37637,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -33805,6 +37681,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -33943,6 +37823,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -33983,6 +37867,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -34121,6 +38009,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -34161,6 +38053,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -34299,6 +38195,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -34339,6 +38239,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -34477,6 +38381,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -34517,6 +38425,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -34576,6 +38488,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -34616,6 +38532,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -34755,6 +38675,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -34795,6 +38719,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -34933,6 +38861,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -34973,6 +38905,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -35111,6 +39047,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -35151,6 +39091,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -35289,6 +39233,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -35329,6 +39277,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -35467,6 +39419,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -35507,6 +39463,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -35645,6 +39605,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -35685,6 +39649,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -35823,6 +39791,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -35863,6 +39835,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -36001,6 +39977,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -36041,6 +40021,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -36179,6 +40163,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -36219,6 +40207,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -36357,6 +40349,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -36397,6 +40393,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -36535,6 +40535,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -36575,6 +40579,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -36713,6 +40721,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -36753,6 +40765,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -36812,6 +40828,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -36852,6 +40872,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -36937,6 +40961,10 @@ "type": "address_type", "named": true }, + { + "type": "array_type", + "named": true + }, { "type": "boolean_type", "named": true @@ -36957,6 +40985,10 @@ "type": "scalar_type", "named": true }, + { + "type": "signature_type", + "named": true + }, { "type": "signed_type", "named": true @@ -37111,6 +41143,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -37151,6 +41187,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -37289,6 +41329,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -37329,6 +41373,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -37467,6 +41515,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -37507,6 +41559,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -37645,6 +41701,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -37685,6 +41745,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -37823,6 +41887,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -37863,6 +41931,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -38001,6 +42073,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -38041,6 +42117,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -38179,6 +42259,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -38219,6 +42303,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -38357,6 +42445,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -38397,6 +42489,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -38535,6 +42631,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -38575,6 +42675,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -38713,6 +42817,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -38753,6 +42861,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -38891,6 +43003,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -38931,6 +43047,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -39069,6 +43189,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -39109,6 +43233,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -39168,6 +43296,10 @@ "type": "affine_group_literal", "named": true }, + { + "type": "array_expression", + "named": true + }, { "type": "associated_constant", "named": true @@ -39212,6 +43344,10 @@ "type": "self_caller", "named": true }, + { + "type": "signature_literal", + "named": true + }, { "type": "signed_literal", "named": true @@ -39628,6 +43764,18 @@ "type": "self", "named": false }, + { + "type": "sign", + "named": false + }, + { + "type": "signature_type", + "named": true + }, + { + "type": "signer", + "named": false + }, { "type": "space", "named": true diff --git a/src/parser.c b/src/parser.c index dcbbfff87..a46060270 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 708 -#define LARGE_STATE_COUNT 123 -#define SYMBOL_COUNT 213 +#define STATE_COUNT 725 +#define LARGE_STATE_COUNT 125 +#define SYMBOL_COUNT 219 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 118 +#define TOKEN_COUNT 121 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 17 #define MAX_ALIAS_SEQUENCE_LENGTH 11 @@ -89,154 +89,160 @@ enum { anon_sym_false = 62, anon_sym_aleo1 = 63, aux_sym_address_literal_token1 = 64, - anon_sym_AT = 65, - anon_sym_BANG = 66, - anon_sym_AMP_AMP = 67, - anon_sym_PIPE_PIPE = 68, - anon_sym_EQ_EQ = 69, - anon_sym_BANG_EQ = 70, - anon_sym_LT = 71, - anon_sym_LT_EQ = 72, - anon_sym_GT = 73, - anon_sym_GT_EQ = 74, - anon_sym_AMP = 75, - anon_sym_PIPE = 76, - anon_sym_CARET = 77, - anon_sym_LT_LT = 78, - anon_sym_GT_GT = 79, - anon_sym_PLUS = 80, - anon_sym_DASH = 81, - anon_sym_PERCENT = 82, - anon_sym_STAR_STAR = 83, - anon_sym_EQ = 84, - anon_sym_PLUS_EQ = 85, - anon_sym_DASH_EQ = 86, - anon_sym_STAR_EQ = 87, - anon_sym_SLASH_EQ = 88, - anon_sym_PERCENT_EQ = 89, - anon_sym_STAR_STAR_EQ = 90, - anon_sym_LT_LT_EQ = 91, - anon_sym_GT_GT_EQ = 92, - anon_sym_AMP_EQ = 93, - anon_sym_PIPE_EQ = 94, - anon_sym_CARET_EQ = 95, - anon_sym_AMP_AMP_EQ = 96, - anon_sym_PIPE_PIPE_EQ = 97, - anon_sym_LPAREN = 98, - anon_sym_RPAREN = 99, - anon_sym_LBRACK = 100, - anon_sym_RBRACK = 101, - anon_sym_LBRACE = 102, - anon_sym_RBRACE = 103, - anon_sym_COMMA = 104, - anon_sym_DOT = 105, - anon_sym_DOT_DOT = 106, - anon_sym_SEMI = 107, - anon_sym_COLON = 108, - anon_sym_COLON_COLON = 109, - anon_sym_QMARK = 110, - anon_sym_DASH_GT = 111, - anon_sym_EQ_GT = 112, - sym_aleo_literal = 113, - sym_leo_literal = 114, - anon_sym_RPARENgroup = 115, - anon_sym_caller = 116, - anon_sym_height = 117, - sym_source_file = 118, - sym_comment = 119, - sym_decimal_digit = 120, - sym_constant_identifier = 121, - sym_variable_identifier = 122, - sym_identifier = 123, - sym_tuple_index = 124, - sym_unsigned_literal = 125, - sym_signed_literal = 126, - sym_field_literal = 127, - sym_product_group_literal = 128, - sym_scalar_literal = 129, - sym_boolean_literal = 130, - sym_address_literal = 131, - sym_annotation = 132, - sym_program_name_literal = 133, - sym_this_program_id = 134, - sym_program_id = 135, - sym_locator = 136, - sym_unsigned_type = 137, - sym_signed_type = 138, - sym_integer_type = 139, - sym_field_type = 140, - sym_group_type = 141, - sym_scalar_type = 142, - sym_boolean_type = 143, - sym_address_type = 144, - sym_unit_type = 145, - sym_record_type = 146, - sym_named_type = 147, - sym_tuple_type = 148, - sym_type = 149, - sym_group_coordinate = 150, - sym_affine_group_literal = 151, - sym_variable = 152, - sym_associated_constant = 153, - sym_free_function_call = 154, - sym_associated_function_call = 155, - sym_function_arguments = 156, - sym_unit_expression = 157, - sym_tuple_expression = 158, - sym_struct_expression = 159, - sym_struct_component_initializer = 160, - sym_self_caller = 161, - sym_block_height = 162, - sym__postfix_expression = 163, - sym_tuple_component_expression = 164, - sym_struct_component_expression = 165, - sym_method_call = 166, - sym__expression = 167, - sym_ternary_expression = 168, - sym_ternary_if = 169, - sym_ternary_else = 170, - sym_block = 171, - sym_return_statement = 172, - sym_expression_statement = 173, - sym_variable_declaration = 174, - sym_constant_declaration = 175, - sym_identifier_or_identifiers = 176, - sym_branch = 177, - sym_conditional_statement = 178, - sym_loop_statement = 179, - sym_assignment_operator = 180, - sym_assignment_statement = 181, - sym_assert_statement = 182, - sym_assert_call = 183, - sym_assert_equal_call = 184, - sym_assert_not_equal_call = 185, - sym_return_arrow = 186, - sym_function_declaration = 187, - sym_function_parameters = 188, - sym_function_parameter = 189, - sym_inline_declaration = 190, - sym_transition_declaration = 191, - sym_finalizer = 192, - sym_struct_declaration = 193, - sym_struct_component_declarations = 194, - sym_struct_component_declaration = 195, - sym_record_declaration = 196, - sym_mapping_declaration = 197, - sym_program_item = 198, - sym_program_declaration = 199, - sym_import_declaration = 200, - aux_sym_source_file_repeat1 = 201, - aux_sym_constant_identifier_repeat1 = 202, - aux_sym_tuple_index_repeat1 = 203, - aux_sym_tuple_type_repeat1 = 204, - aux_sym_function_arguments_repeat1 = 205, - aux_sym_struct_expression_repeat1 = 206, - aux_sym_block_repeat1 = 207, - aux_sym_identifier_or_identifiers_repeat1 = 208, - aux_sym_function_declaration_repeat1 = 209, - aux_sym_function_parameters_repeat1 = 210, - aux_sym_struct_component_declarations_repeat1 = 211, - aux_sym_program_declaration_repeat1 = 212, + anon_sym_sign = 65, + aux_sym_signature_literal_token1 = 66, + anon_sym_AT = 67, + anon_sym_BANG = 68, + anon_sym_AMP_AMP = 69, + anon_sym_PIPE_PIPE = 70, + anon_sym_EQ_EQ = 71, + anon_sym_BANG_EQ = 72, + anon_sym_LT = 73, + anon_sym_LT_EQ = 74, + anon_sym_GT = 75, + anon_sym_GT_EQ = 76, + anon_sym_AMP = 77, + anon_sym_PIPE = 78, + anon_sym_CARET = 79, + anon_sym_LT_LT = 80, + anon_sym_GT_GT = 81, + anon_sym_PLUS = 82, + anon_sym_DASH = 83, + anon_sym_PERCENT = 84, + anon_sym_STAR_STAR = 85, + anon_sym_EQ = 86, + anon_sym_PLUS_EQ = 87, + anon_sym_DASH_EQ = 88, + anon_sym_STAR_EQ = 89, + anon_sym_SLASH_EQ = 90, + anon_sym_PERCENT_EQ = 91, + anon_sym_STAR_STAR_EQ = 92, + anon_sym_LT_LT_EQ = 93, + anon_sym_GT_GT_EQ = 94, + anon_sym_AMP_EQ = 95, + anon_sym_PIPE_EQ = 96, + anon_sym_CARET_EQ = 97, + anon_sym_AMP_AMP_EQ = 98, + anon_sym_PIPE_PIPE_EQ = 99, + anon_sym_LPAREN = 100, + anon_sym_RPAREN = 101, + anon_sym_LBRACK = 102, + anon_sym_RBRACK = 103, + anon_sym_LBRACE = 104, + anon_sym_RBRACE = 105, + anon_sym_COMMA = 106, + anon_sym_DOT = 107, + anon_sym_DOT_DOT = 108, + anon_sym_SEMI = 109, + anon_sym_COLON = 110, + anon_sym_COLON_COLON = 111, + anon_sym_QMARK = 112, + anon_sym_DASH_GT = 113, + anon_sym_EQ_GT = 114, + sym_aleo_literal = 115, + sym_leo_literal = 116, + sym_signature_type = 117, + anon_sym_RPARENgroup = 118, + anon_sym_caller = 119, + anon_sym_height = 120, + sym_source_file = 121, + sym_comment = 122, + sym_decimal_digit = 123, + sym_constant_identifier = 124, + sym_variable_identifier = 125, + sym_identifier = 126, + sym_tuple_index = 127, + sym_unsigned_literal = 128, + sym_signed_literal = 129, + sym_field_literal = 130, + sym_product_group_literal = 131, + sym_scalar_literal = 132, + sym_boolean_literal = 133, + sym_address_literal = 134, + sym_signature_literal = 135, + sym_annotation = 136, + sym_program_name_literal = 137, + sym_this_program_id = 138, + sym_program_id = 139, + sym_locator = 140, + sym_unsigned_type = 141, + sym_signed_type = 142, + sym_integer_type = 143, + sym_field_type = 144, + sym_group_type = 145, + sym_scalar_type = 146, + sym_boolean_type = 147, + sym_address_type = 148, + sym_unit_type = 149, + sym_record_type = 150, + sym_named_type = 151, + sym_tuple_type = 152, + sym_array_type = 153, + sym_type = 154, + sym_group_coordinate = 155, + sym_affine_group_literal = 156, + sym_variable = 157, + sym_associated_constant = 158, + sym_free_function_call = 159, + sym_associated_function_call = 160, + sym_function_arguments = 161, + sym_unit_expression = 162, + sym_tuple_expression = 163, + sym_array_expression = 164, + sym_struct_expression = 165, + sym_struct_component_initializer = 166, + sym_self_caller = 167, + sym_block_height = 168, + sym__postfix_expression = 169, + sym_tuple_component_expression = 170, + sym_struct_component_expression = 171, + sym_method_call = 172, + sym__expression = 173, + sym_ternary_expression = 174, + sym_ternary_if = 175, + sym_ternary_else = 176, + sym_block = 177, + sym_return_statement = 178, + sym_expression_statement = 179, + sym_variable_declaration = 180, + sym_constant_declaration = 181, + sym_identifier_or_identifiers = 182, + sym_branch = 183, + sym_conditional_statement = 184, + sym_loop_statement = 185, + sym_assignment_operator = 186, + sym_assignment_statement = 187, + sym_assert_statement = 188, + sym_assert_call = 189, + sym_assert_equal_call = 190, + sym_assert_not_equal_call = 191, + sym_return_arrow = 192, + sym_function_declaration = 193, + sym_function_parameters = 194, + sym_function_parameter = 195, + sym_inline_declaration = 196, + sym_transition_declaration = 197, + sym_finalizer = 198, + sym_struct_declaration = 199, + sym_struct_component_declarations = 200, + sym_struct_component_declaration = 201, + sym_record_declaration = 202, + sym_mapping_declaration = 203, + sym_program_item = 204, + sym_program_declaration = 205, + sym_import_declaration = 206, + aux_sym_source_file_repeat1 = 207, + aux_sym_constant_identifier_repeat1 = 208, + aux_sym_tuple_index_repeat1 = 209, + aux_sym_tuple_type_repeat1 = 210, + aux_sym_function_arguments_repeat1 = 211, + aux_sym_struct_expression_repeat1 = 212, + aux_sym_block_repeat1 = 213, + aux_sym_identifier_or_identifiers_repeat1 = 214, + aux_sym_function_declaration_repeat1 = 215, + aux_sym_function_parameters_repeat1 = 216, + aux_sym_struct_component_declarations_repeat1 = 217, + aux_sym_program_declaration_repeat1 = 218, }; static const char * const ts_symbol_names[] = { @@ -305,6 +311,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_false] = "false", [anon_sym_aleo1] = "aleo1", [aux_sym_address_literal_token1] = "address_literal_token1", + [anon_sym_sign] = "sign", + [aux_sym_signature_literal_token1] = "signature_literal_token1", [anon_sym_AT] = "@", [anon_sym_BANG] = "!", [anon_sym_AMP_AMP] = "&&", @@ -355,6 +363,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ_GT] = "=>", [sym_aleo_literal] = "aleo_literal", [sym_leo_literal] = "leo_literal", + [sym_signature_type] = "signature_type", [anon_sym_RPARENgroup] = ")group", [anon_sym_caller] = "caller", [anon_sym_height] = "height", @@ -372,6 +381,7 @@ static const char * const ts_symbol_names[] = { [sym_scalar_literal] = "scalar_literal", [sym_boolean_literal] = "boolean_literal", [sym_address_literal] = "address_literal", + [sym_signature_literal] = "signature_literal", [sym_annotation] = "annotation", [sym_program_name_literal] = "program_name_literal", [sym_this_program_id] = "this_program_id", @@ -389,6 +399,7 @@ static const char * const ts_symbol_names[] = { [sym_record_type] = "record_type", [sym_named_type] = "named_type", [sym_tuple_type] = "tuple_type", + [sym_array_type] = "array_type", [sym_type] = "type", [sym_group_coordinate] = "group_coordinate", [sym_affine_group_literal] = "affine_group_literal", @@ -399,6 +410,7 @@ static const char * const ts_symbol_names[] = { [sym_function_arguments] = "function_arguments", [sym_unit_expression] = "unit_expression", [sym_tuple_expression] = "tuple_expression", + [sym_array_expression] = "array_expression", [sym_struct_expression] = "struct_expression", [sym_struct_component_initializer] = "struct_component_initializer", [sym_self_caller] = "self_caller", @@ -521,6 +533,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_false] = anon_sym_false, [anon_sym_aleo1] = anon_sym_aleo1, [aux_sym_address_literal_token1] = aux_sym_address_literal_token1, + [anon_sym_sign] = anon_sym_sign, + [aux_sym_signature_literal_token1] = aux_sym_signature_literal_token1, [anon_sym_AT] = anon_sym_AT, [anon_sym_BANG] = anon_sym_BANG, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, @@ -571,6 +585,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_EQ_GT] = anon_sym_EQ_GT, [sym_aleo_literal] = sym_aleo_literal, [sym_leo_literal] = sym_leo_literal, + [sym_signature_type] = sym_signature_type, [anon_sym_RPARENgroup] = anon_sym_RPARENgroup, [anon_sym_caller] = anon_sym_caller, [anon_sym_height] = anon_sym_height, @@ -588,6 +603,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_scalar_literal] = sym_scalar_literal, [sym_boolean_literal] = sym_boolean_literal, [sym_address_literal] = sym_address_literal, + [sym_signature_literal] = sym_signature_literal, [sym_annotation] = sym_annotation, [sym_program_name_literal] = sym_program_name_literal, [sym_this_program_id] = sym_this_program_id, @@ -605,6 +621,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_record_type] = sym_record_type, [sym_named_type] = sym_named_type, [sym_tuple_type] = sym_tuple_type, + [sym_array_type] = sym_array_type, [sym_type] = sym_type, [sym_group_coordinate] = sym_group_coordinate, [sym_affine_group_literal] = sym_affine_group_literal, @@ -615,6 +632,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_function_arguments] = sym_function_arguments, [sym_unit_expression] = sym_unit_expression, [sym_tuple_expression] = sym_tuple_expression, + [sym_array_expression] = sym_array_expression, [sym_struct_expression] = sym_struct_expression, [sym_struct_component_initializer] = sym_struct_component_initializer, [sym_self_caller] = sym_self_caller, @@ -932,6 +950,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [anon_sym_sign] = { + .visible = true, + .named = false, + }, + [aux_sym_signature_literal_token1] = { + .visible = false, + .named = false, + }, [anon_sym_AT] = { .visible = true, .named = false, @@ -1132,6 +1158,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_signature_type] = { + .visible = true, + .named = true, + }, [anon_sym_RPARENgroup] = { .visible = true, .named = false, @@ -1200,6 +1230,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_signature_literal] = { + .visible = true, + .named = true, + }, [sym_annotation] = { .visible = true, .named = true, @@ -1268,6 +1302,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_array_type] = { + .visible = true, + .named = true, + }, [sym_type] = { .visible = true, .named = true, @@ -1308,6 +1346,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_array_expression] = { + .visible = true, + .named = true, + }, [sym_struct_expression] = { .visible = true, .named = true, @@ -2256,23 +2298,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 2, + [5] = 4, [6] = 4, - [7] = 2, - [8] = 4, + [7] = 3, + [8] = 3, [9] = 9, [10] = 9, [11] = 11, [12] = 12, [13] = 13, - [14] = 12, + [14] = 14, [15] = 15, [16] = 13, - [17] = 15, + [17] = 14, [18] = 18, - [19] = 18, - [20] = 20, - [21] = 21, + [19] = 19, + [20] = 18, + [21] = 15, [22] = 22, [23] = 23, [24] = 24, @@ -2287,95 +2329,95 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [33] = 33, [34] = 34, [35] = 35, - [36] = 23, + [36] = 36, [37] = 37, [38] = 38, [39] = 39, - [40] = 40, - [41] = 41, + [40] = 22, + [41] = 23, [42] = 42, [43] = 43, [44] = 44, [45] = 45, - [46] = 46, - [47] = 47, - [48] = 48, - [49] = 48, - [50] = 50, - [51] = 33, - [52] = 33, - [53] = 32, + [46] = 26, + [47] = 27, + [48] = 28, + [49] = 29, + [50] = 24, + [51] = 30, + [52] = 52, + [53] = 30, [54] = 31, - [55] = 27, - [56] = 35, - [57] = 30, - [58] = 37, - [59] = 40, - [60] = 60, - [61] = 61, - [62] = 32, - [63] = 31, - [64] = 27, - [65] = 35, + [55] = 24, + [56] = 32, + [57] = 57, + [58] = 58, + [59] = 33, + [60] = 34, + [61] = 35, + [62] = 36, + [63] = 37, + [64] = 38, + [65] = 39, [66] = 66, - [67] = 67, - [68] = 30, - [69] = 37, - [70] = 26, - [71] = 40, - [72] = 44, - [73] = 50, - [74] = 42, - [75] = 23, - [76] = 22, - [77] = 34, - [78] = 29, - [79] = 25, - [80] = 41, - [81] = 60, - [82] = 61, - [83] = 44, - [84] = 48, - [85] = 50, - [86] = 47, - [87] = 42, - [88] = 50, - [89] = 48, - [90] = 22, - [91] = 34, - [92] = 29, - [93] = 26, - [94] = 25, - [95] = 41, - [96] = 47, - [97] = 47, + [67] = 26, + [68] = 27, + [69] = 28, + [70] = 29, + [71] = 30, + [72] = 31, + [73] = 32, + [74] = 33, + [75] = 31, + [76] = 76, + [77] = 25, + [78] = 34, + [79] = 35, + [80] = 36, + [81] = 37, + [82] = 38, + [83] = 39, + [84] = 22, + [85] = 23, + [86] = 42, + [87] = 43, + [88] = 44, + [89] = 42, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 25, + [94] = 43, + [95] = 95, + [96] = 44, + [97] = 97, [98] = 98, [99] = 44, - [100] = 61, - [101] = 60, - [102] = 60, - [103] = 40, - [104] = 26, - [105] = 105, - [106] = 37, - [107] = 30, - [108] = 35, - [109] = 109, - [110] = 61, - [111] = 27, - [112] = 31, - [113] = 32, - [114] = 41, - [115] = 33, - [116] = 25, - [117] = 117, - [118] = 29, - [119] = 42, - [120] = 34, - [121] = 22, - [122] = 23, - [123] = 123, - [124] = 124, + [100] = 43, + [101] = 42, + [102] = 23, + [103] = 22, + [104] = 66, + [105] = 66, + [106] = 106, + [107] = 26, + [108] = 108, + [109] = 24, + [110] = 32, + [111] = 39, + [112] = 98, + [113] = 25, + [114] = 66, + [115] = 27, + [116] = 38, + [117] = 37, + [118] = 36, + [119] = 35, + [120] = 28, + [121] = 33, + [122] = 122, + [123] = 34, + [124] = 29, [125] = 125, [126] = 126, [127] = 127, @@ -2396,24 +2438,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [142] = 142, [143] = 143, [144] = 144, - [145] = 141, + [145] = 145, [146] = 146, [147] = 147, [148] = 148, - [149] = 149, + [149] = 139, [150] = 150, [151] = 151, - [152] = 146, + [152] = 152, [153] = 153, - [154] = 126, - [155] = 149, + [154] = 154, + [155] = 155, [156] = 156, [157] = 157, [158] = 158, [159] = 159, [160] = 160, [161] = 161, - [162] = 162, + [162] = 142, [163] = 163, [164] = 164, [165] = 165, @@ -2422,7 +2464,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [168] = 168, [169] = 169, [170] = 170, - [171] = 171, + [171] = 165, [172] = 172, [173] = 173, [174] = 174, @@ -2444,22 +2486,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [190] = 190, [191] = 191, [192] = 192, - [193] = 193, - [194] = 194, - [195] = 195, + [193] = 131, + [194] = 138, + [195] = 129, [196] = 196, - [197] = 197, - [198] = 198, - [199] = 127, + [197] = 127, + [198] = 126, + [199] = 128, [200] = 200, - [201] = 201, + [201] = 125, [202] = 202, [203] = 203, [204] = 204, [205] = 205, [206] = 206, - [207] = 125, - [208] = 130, + [207] = 207, + [208] = 208, [209] = 209, [210] = 210, [211] = 211, @@ -2467,10 +2509,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [213] = 213, [214] = 214, [215] = 215, - [216] = 124, + [216] = 216, [217] = 217, - [218] = 129, - [219] = 123, + [218] = 218, + [219] = 219, [220] = 220, [221] = 221, [222] = 222, @@ -2494,168 +2536,168 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [240] = 240, [241] = 241, [242] = 242, - [243] = 128, + [243] = 243, [244] = 244, [245] = 245, [246] = 246, [247] = 247, [248] = 248, - [249] = 249, + [249] = 130, [250] = 250, - [251] = 131, - [252] = 134, - [253] = 132, - [254] = 133, - [255] = 138, - [256] = 136, - [257] = 123, - [258] = 127, - [259] = 144, - [260] = 124, - [261] = 125, - [262] = 126, - [263] = 148, - [264] = 162, - [265] = 186, - [266] = 201, - [267] = 158, - [268] = 205, - [269] = 179, - [270] = 204, - [271] = 176, - [272] = 224, - [273] = 212, - [274] = 206, - [275] = 191, - [276] = 159, - [277] = 198, - [278] = 196, - [279] = 157, - [280] = 193, - [281] = 210, - [282] = 161, - [283] = 190, - [284] = 188, - [285] = 173, - [286] = 128, - [287] = 194, - [288] = 185, - [289] = 184, - [290] = 203, - [291] = 171, - [292] = 156, - [293] = 130, - [294] = 129, - [295] = 237, - [296] = 195, - [297] = 192, - [298] = 181, - [299] = 222, - [300] = 223, - [301] = 211, - [302] = 209, - [303] = 217, - [304] = 220, - [305] = 213, - [306] = 174, - [307] = 200, - [308] = 197, - [309] = 163, - [310] = 167, - [311] = 168, - [312] = 169, - [313] = 170, - [314] = 178, - [315] = 187, - [316] = 189, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 133, - [321] = 321, - [322] = 322, - [323] = 322, - [324] = 321, - [325] = 325, - [326] = 326, - [327] = 174, - [328] = 328, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 143, + [257] = 148, + [258] = 163, + [259] = 190, + [260] = 168, + [261] = 155, + [262] = 202, + [263] = 196, + [264] = 226, + [265] = 234, + [266] = 247, + [267] = 244, + [268] = 129, + [269] = 231, + [270] = 245, + [271] = 246, + [272] = 251, + [273] = 125, + [274] = 250, + [275] = 243, + [276] = 242, + [277] = 253, + [278] = 203, + [279] = 241, + [280] = 252, + [281] = 223, + [282] = 126, + [283] = 229, + [284] = 228, + [285] = 224, + [286] = 248, + [287] = 216, + [288] = 221, + [289] = 254, + [290] = 127, + [291] = 210, + [292] = 128, + [293] = 217, + [294] = 218, + [295] = 219, + [296] = 220, + [297] = 211, + [298] = 209, + [299] = 130, + [300] = 255, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 239, + [305] = 222, + [306] = 235, + [307] = 215, + [308] = 204, + [309] = 233, + [310] = 131, + [311] = 232, + [312] = 230, + [313] = 227, + [314] = 240, + [315] = 236, + [316] = 225, + [317] = 238, + [318] = 237, + [319] = 205, + [320] = 206, + [321] = 207, + [322] = 208, + [323] = 212, + [324] = 213, + [325] = 214, + [326] = 138, + [327] = 327, + [328] = 327, [329] = 329, - [330] = 329, - [331] = 213, - [332] = 329, - [333] = 329, - [334] = 334, - [335] = 335, + [330] = 330, + [331] = 329, + [332] = 155, + [333] = 235, + [334] = 238, + [335] = 215, [336] = 336, - [337] = 337, + [337] = 204, [338] = 338, - [339] = 181, - [340] = 217, - [341] = 220, - [342] = 222, - [343] = 223, - [344] = 211, - [345] = 209, - [346] = 163, - [347] = 200, - [348] = 197, - [349] = 167, - [350] = 168, - [351] = 169, - [352] = 170, - [353] = 178, - [354] = 195, - [355] = 355, - [356] = 187, - [357] = 189, - [358] = 192, - [359] = 220, - [360] = 178, - [361] = 213, - [362] = 195, + [339] = 233, + [340] = 340, + [341] = 236, + [342] = 213, + [343] = 343, + [344] = 214, + [345] = 212, + [346] = 237, + [347] = 208, + [348] = 207, + [349] = 349, + [350] = 232, + [351] = 222, + [352] = 352, + [353] = 239, + [354] = 227, + [355] = 338, + [356] = 338, + [357] = 206, + [358] = 343, + [359] = 240, + [360] = 205, + [361] = 338, + [362] = 230, [363] = 363, - [364] = 364, + [364] = 225, [365] = 365, - [366] = 181, + [366] = 366, [367] = 367, - [368] = 217, - [369] = 192, - [370] = 174, - [371] = 189, + [368] = 368, + [369] = 369, + [370] = 206, + [371] = 240, [372] = 372, - [373] = 373, - [374] = 200, - [375] = 170, + [373] = 225, + [374] = 374, + [375] = 375, [376] = 376, - [377] = 187, - [378] = 197, - [379] = 222, - [380] = 223, - [381] = 211, - [382] = 169, - [383] = 209, - [384] = 163, - [385] = 167, - [386] = 168, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 387, - [392] = 392, - [393] = 393, - [394] = 394, - [395] = 394, - [396] = 396, + [377] = 215, + [378] = 205, + [379] = 379, + [380] = 239, + [381] = 381, + [382] = 207, + [383] = 208, + [384] = 212, + [385] = 213, + [386] = 214, + [387] = 238, + [388] = 237, + [389] = 222, + [390] = 236, + [391] = 227, + [392] = 235, + [393] = 204, + [394] = 233, + [395] = 230, + [396] = 232, [397] = 397, - [398] = 398, + [398] = 352, [399] = 399, [400] = 400, [401] = 401, [402] = 402, [403] = 403, - [404] = 404, + [404] = 403, [405] = 405, [406] = 406, [407] = 407, @@ -2668,8 +2710,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [414] = 414, [415] = 415, [416] = 416, - [417] = 149, - [418] = 146, + [417] = 417, + [418] = 418, [419] = 419, [420] = 420, [421] = 421, @@ -2678,11 +2720,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [424] = 424, [425] = 425, [426] = 426, - [427] = 427, + [427] = 142, [428] = 428, [429] = 429, [430] = 430, - [431] = 431, + [431] = 139, [432] = 432, [433] = 433, [434] = 434, @@ -2726,77 +2768,77 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [472] = 472, [473] = 473, [474] = 474, - [475] = 125, + [475] = 475, [476] = 476, [477] = 477, [478] = 478, [479] = 479, - [480] = 478, - [481] = 126, - [482] = 129, - [483] = 124, - [484] = 130, - [485] = 478, - [486] = 486, - [487] = 128, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 125, + [485] = 485, + [486] = 126, + [487] = 138, [488] = 488, [489] = 489, - [490] = 488, - [491] = 491, - [492] = 491, - [493] = 123, + [490] = 490, + [491] = 129, + [492] = 131, + [493] = 493, [494] = 494, - [495] = 126, - [496] = 125, - [497] = 130, - [498] = 124, - [499] = 129, - [500] = 127, - [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 494, - [507] = 507, + [495] = 489, + [496] = 489, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 497, + [501] = 499, + [502] = 130, + [503] = 138, + [504] = 131, + [505] = 126, + [506] = 127, + [507] = 128, [508] = 508, [509] = 509, - [510] = 510, + [510] = 125, [511] = 511, - [512] = 510, + [512] = 512, [513] = 513, [514] = 514, - [515] = 515, - [516] = 516, - [517] = 128, + [515] = 129, + [516] = 511, + [517] = 517, [518] = 518, [519] = 519, - [520] = 515, + [520] = 520, [521] = 521, [522] = 522, - [523] = 513, + [523] = 523, [524] = 524, - [525] = 511, + [525] = 525, [526] = 526, - [527] = 527, + [527] = 520, [528] = 528, [529] = 529, [530] = 530, - [531] = 531, + [531] = 130, [532] = 532, [533] = 533, [534] = 534, [535] = 535, - [536] = 510, - [537] = 537, - [538] = 538, + [536] = 536, + [537] = 518, + [538] = 525, [539] = 539, [540] = 540, [541] = 541, [542] = 542, - [543] = 543, - [544] = 544, - [545] = 544, + [543] = 529, + [544] = 525, + [545] = 545, [546] = 546, [547] = 547, [548] = 548, @@ -2814,22 +2856,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [560] = 560, [561] = 561, [562] = 562, - [563] = 563, + [563] = 561, [564] = 564, - [565] = 564, + [565] = 565, [566] = 566, - [567] = 561, + [567] = 567, [568] = 568, [569] = 569, - [570] = 558, - [571] = 571, + [570] = 570, + [571] = 569, [572] = 572, [573] = 573, [574] = 574, [575] = 575, [576] = 576, [577] = 577, - [578] = 568, + [578] = 578, [579] = 579, [580] = 580, [581] = 581, @@ -2839,10 +2881,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [585] = 585, [586] = 586, [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, + [588] = 580, + [589] = 576, + [590] = 579, + [591] = 572, [592] = 592, [593] = 593, [594] = 594, @@ -2889,7 +2931,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [635] = 635, [636] = 636, [637] = 637, - [638] = 629, + [638] = 638, [639] = 639, [640] = 640, [641] = 641, @@ -2899,19 +2941,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [645] = 645, [646] = 646, [647] = 647, - [648] = 648, - [649] = 649, - [650] = 636, - [651] = 637, + [648] = 640, + [649] = 639, + [650] = 650, + [651] = 651, [652] = 652, [653] = 653, [654] = 654, - [655] = 655, - [656] = 656, + [655] = 630, + [656] = 646, [657] = 657, [658] = 658, - [659] = 659, - [660] = 660, + [659] = 644, + [660] = 643, [661] = 661, [662] = 662, [663] = 663, @@ -2930,35 +2972,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [676] = 676, [677] = 677, [678] = 678, - [679] = 622, + [679] = 679, [680] = 680, [681] = 681, [682] = 682, [683] = 683, [684] = 684, - [685] = 631, + [685] = 685, [686] = 686, [687] = 687, [688] = 688, - [689] = 689, + [689] = 642, [690] = 690, - [691] = 633, - [692] = 634, + [691] = 691, + [692] = 692, [693] = 693, - [694] = 694, - [695] = 680, - [696] = 682, - [697] = 633, + [694] = 668, + [695] = 695, + [696] = 696, + [697] = 697, [698] = 698, - [699] = 634, + [699] = 699, [700] = 700, [701] = 701, [702] = 702, [703] = 703, - [704] = 653, + [704] = 704, [705] = 705, - [706] = 706, - [707] = 707, + [706] = 646, + [707] = 630, + [708] = 708, + [709] = 709, + [710] = 662, + [711] = 661, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 638, + [722] = 722, + [723] = 723, + [724] = 724, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2966,391 +3025,400 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(242); - if (lookahead == '!') ADVANCE(338); - if (lookahead == '%') ADVANCE(369); - if (lookahead == '&') ADVANCE(353); - if (lookahead == '(') ADVANCE(390); - if (lookahead == ')') ADVANCE(391); - if (lookahead == '*') ADVANCE(252); - if (lookahead == '+') ADVANCE(365); - if (lookahead == ',') ADVANCE(396); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(397); - if (lookahead == '/') ADVANCE(255); - if (lookahead == '0') ADVANCE(332); - if (lookahead == ':') ADVANCE(401); - if (lookahead == ';') ADVANCE(400); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(373); - if (lookahead == '>') ADVANCE(349); - if (lookahead == '?') ADVANCE(404); - if (lookahead == '@') ADVANCE(337); - if (lookahead == '[') ADVANCE(392); - if (lookahead == ']') ADVANCE(393); - if (lookahead == '^') ADVANCE(359); - if (lookahead == '_') ADVANCE(307); - if (lookahead == '{') ADVANCE(394); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '}') ADVANCE(395); + if (eof) ADVANCE(463); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '%') ADVANCE(592); + if (lookahead == '&') ADVANCE(576); + if (lookahead == '(') ADVANCE(613); + if (lookahead == ')') ADVANCE(614); + if (lookahead == '*') ADVANCE(473); + if (lookahead == '+') ADVANCE(588); + if (lookahead == ',') ADVANCE(619); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(620); + if (lookahead == '/') ADVANCE(476); + if (lookahead == '0') ADVANCE(553); + if (lookahead == ':') ADVANCE(624); + if (lookahead == ';') ADVANCE(623); + if (lookahead == '<') ADVANCE(568); + if (lookahead == '=') ADVANCE(596); + if (lookahead == '>') ADVANCE(572); + if (lookahead == '?') ADVANCE(627); + if (lookahead == '@') ADVANCE(560); + if (lookahead == '[') ADVANCE(615); + if (lookahead == ']') ADVANCE(616); + if (lookahead == '^') ADVANCE(582); + if (lookahead == '_') ADVANCE(528); + if (lookahead == '{') ADVANCE(617); + if (lookahead == '|') ADVANCE(579); + if (lookahead == '}') ADVANCE(618); if (('\\' <= lookahead && lookahead <= '`') || - lookahead == '~') ADVANCE(243); + lookahead == '~') ADVANCE(464); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('"' <= lookahead && lookahead <= '\'')) ADVANCE(243); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(243); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(243); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); - if ((8239 <= lookahead && lookahead <= 8293)) ADVANCE(245); - if ((128 <= lookahead && lookahead <= 8233)) ADVANCE(244); - if ((57344 <= lookahead && lookahead <= 65535)) ADVANCE(247); - if ((8298 <= lookahead && lookahead <= 55295)) ADVANCE(246); + if (('"' <= lookahead && lookahead <= '\'')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(464); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(464); + if ((8239 <= lookahead && lookahead <= 8293)) ADVANCE(466); + if ((128 <= lookahead && lookahead <= 8233)) ADVANCE(465); + if ((57344 <= lookahead && lookahead <= 65535)) ADVANCE(468); + if ((8298 <= lookahead && lookahead <= 55295)) ADVANCE(467); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(338); - if (lookahead == '(') ADVANCE(390); - if (lookahead == ')') ADVANCE(391); - if (lookahead == '+') ADVANCE(365); - if (lookahead == ',') ADVANCE(396); - if (lookahead == '-') ADVANCE(367); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '(') ADVANCE(613); + if (lookahead == ')') ADVANCE(614); + if (lookahead == '+') ADVANCE(588); + if (lookahead == ',') ADVANCE(619); + if (lookahead == '-') ADVANCE(590); if (lookahead == '/') ADVANCE(14); - if (lookahead == '=') ADVANCE(373); - if (lookahead == '_') ADVANCE(307); - if (lookahead == 'a') ADVANCE(317); - if (lookahead == 'b') ADVANCE(323); - if (lookahead == 'f') ADVANCE(312); - if (lookahead == 'g') ADVANCE(328); - if (lookahead == 'i') ADVANCE(309); - if (lookahead == 's') ADVANCE(315); - if (lookahead == 't') ADVANCE(329); - if (lookahead == 'u') ADVANCE(311); + if (lookahead == '=') ADVANCE(596); + if (lookahead == '[') ADVANCE(615); + if (lookahead == '_') ADVANCE(528); + if (lookahead == 'a') ADVANCE(538); + if (lookahead == 'b') ADVANCE(544); + if (lookahead == 'f') ADVANCE(533); + if (lookahead == 'g') ADVANCE(549); + if (lookahead == 'i') ADVANCE(530); + if (lookahead == 's') ADVANCE(535); + if (lookahead == 't') ADVANCE(550); + if (lookahead == 'u') ADVANCE(532); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(331); - if (('c' <= lookahead && lookahead <= 'z')) ADVANCE(308); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); + if (('c' <= lookahead && lookahead <= 'z')) ADVANCE(529); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(521); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(338); - if (lookahead == '(') ADVANCE(390); - if (lookahead == ')') ADVANCE(78); - if (lookahead == '+') ADVANCE(365); - if (lookahead == ',') ADVANCE(396); - if (lookahead == '-') ADVANCE(367); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '(') ADVANCE(613); + if (lookahead == ')') ADVANCE(83); + if (lookahead == '+') ADVANCE(588); + if (lookahead == ',') ADVANCE(619); + if (lookahead == '-') ADVANCE(590); if (lookahead == '/') ADVANCE(14); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '_') ADVANCE(307); - if (lookahead == 'a') ADVANCE(318); - if (lookahead == 'b') ADVANCE(323); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'f') ADVANCE(313); - if (lookahead == 'g') ADVANCE(328); - if (lookahead == 'i') ADVANCE(310); - if (lookahead == 'l') ADVANCE(319); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(315); - if (lookahead == 't') ADVANCE(329); - if (lookahead == 'u') ADVANCE(311); - if (lookahead == '{') ADVANCE(394); - if (lookahead == '}') ADVANCE(395); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '[') ADVANCE(615); + if (lookahead == '_') ADVANCE(528); + if (lookahead == 'a') ADVANCE(539); + if (lookahead == 'b') ADVANCE(544); + if (lookahead == 'c') ADVANCE(546); + if (lookahead == 'f') ADVANCE(534); + if (lookahead == 'g') ADVANCE(549); + if (lookahead == 'i') ADVANCE(531); + if (lookahead == 'l') ADVANCE(540); + if (lookahead == 'r') ADVANCE(541); + if (lookahead == 's') ADVANCE(535); + if (lookahead == 't') ADVANCE(550); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == '{') ADVANCE(617); + if (lookahead == '}') ADVANCE(618); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(331); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(308); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(529); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(521); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(338); - if (lookahead == '(') ADVANCE(390); - if (lookahead == '-') ADVANCE(367); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '(') ADVANCE(613); + if (lookahead == '-') ADVANCE(590); if (lookahead == '/') ADVANCE(14); - if (lookahead == ';') ADVANCE(400); - if (lookahead == 'a') ADVANCE(317); - if (lookahead == 'b') ADVANCE(323); - if (lookahead == 'f') ADVANCE(312); - if (lookahead == 'g') ADVANCE(328); - if (lookahead == 'i') ADVANCE(309); - if (lookahead == 's') ADVANCE(315); - if (lookahead == 't') ADVANCE(321); - if (lookahead == 'u') ADVANCE(311); + if (lookahead == ';') ADVANCE(623); + if (lookahead == '[') ADVANCE(615); + if (lookahead == 'a') ADVANCE(538); + if (lookahead == 'b') ADVANCE(544); + if (lookahead == 'f') ADVANCE(533); + if (lookahead == 'g') ADVANCE(549); + if (lookahead == 'i') ADVANCE(530); + if (lookahead == 's') ADVANCE(535); + if (lookahead == 't') ADVANCE(542); + if (lookahead == 'u') ADVANCE(532); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(331); - if (('c' <= lookahead && lookahead <= 'z')) ADVANCE(308); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); + if (('c' <= lookahead && lookahead <= 'z')) ADVANCE(529); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(521); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(338); - if (lookahead == '(') ADVANCE(390); - if (lookahead == '-') ADVANCE(367); + if (lookahead == '!') ADVANCE(561); + if (lookahead == '(') ADVANCE(613); + if (lookahead == '-') ADVANCE(590); if (lookahead == '/') ADVANCE(14); - if (lookahead == 'a') ADVANCE(318); - if (lookahead == 'b') ADVANCE(323); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(324); - if (lookahead == 'f') ADVANCE(313); - if (lookahead == 'g') ADVANCE(328); - if (lookahead == 'i') ADVANCE(310); - if (lookahead == 'l') ADVANCE(319); - if (lookahead == 'r') ADVANCE(320); - if (lookahead == 's') ADVANCE(315); - if (lookahead == 't') ADVANCE(329); - if (lookahead == 'u') ADVANCE(311); - if (lookahead == '{') ADVANCE(394); - if (lookahead == '}') ADVANCE(395); + if (lookahead == '[') ADVANCE(615); + if (lookahead == 'a') ADVANCE(539); + if (lookahead == 'b') ADVANCE(544); + if (lookahead == 'c') ADVANCE(546); + if (lookahead == 'e') ADVANCE(545); + if (lookahead == 'f') ADVANCE(534); + if (lookahead == 'g') ADVANCE(549); + if (lookahead == 'i') ADVANCE(531); + if (lookahead == 'l') ADVANCE(540); + if (lookahead == 'r') ADVANCE(541); + if (lookahead == 's') ADVANCE(535); + if (lookahead == 't') ADVANCE(550); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == '{') ADVANCE(617); + if (lookahead == '}') ADVANCE(618); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(331); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(308); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(529); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(521); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(369); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(390); - if (lookahead == ')') ADVANCE(391); - if (lookahead == '*') ADVANCE(254); - if (lookahead == '+') ADVANCE(365); - if (lookahead == ',') ADVANCE(396); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(398); - if (lookahead == '/') ADVANCE(255); - if (lookahead == ':') ADVANCE(402); - if (lookahead == ';') ADVANCE(400); - if (lookahead == '<') ADVANCE(347); - if (lookahead == '=') ADVANCE(375); - if (lookahead == '>') ADVANCE(351); - if (lookahead == '?') ADVANCE(404); - if (lookahead == '@') ADVANCE(337); - if (lookahead == '^') ADVANCE(359); - if (lookahead == 'c') ADVANCE(133); - if (lookahead == 'f') ADVANCE(86); - if (lookahead == 'i') ADVANCE(116); - if (lookahead == 'm') ADVANCE(38); - if (lookahead == 'r') ADVANCE(64); - if (lookahead == 's') ADVANCE(173); - if (lookahead == 't') ADVANCE(80); - if (lookahead == '{') ADVANCE(394); - if (lookahead == '|') ADVANCE(358); - if (lookahead == '}') ADVANCE(395); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '%') ADVANCE(592); + if (lookahead == '&') ADVANCE(578); + if (lookahead == '(') ADVANCE(613); + if (lookahead == ')') ADVANCE(614); + if (lookahead == '*') ADVANCE(475); + if (lookahead == '+') ADVANCE(588); + if (lookahead == ',') ADVANCE(619); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '/') ADVANCE(476); + if (lookahead == ':') ADVANCE(625); + if (lookahead == ';') ADVANCE(623); + if (lookahead == '<') ADVANCE(570); + if (lookahead == '=') ADVANCE(598); + if (lookahead == '>') ADVANCE(574); + if (lookahead == '?') ADVANCE(627); + if (lookahead == '@') ADVANCE(560); + if (lookahead == ']') ADVANCE(616); + if (lookahead == '^') ADVANCE(582); + if (lookahead == 'c') ADVANCE(140); + if (lookahead == 'f') ADVANCE(91); + if (lookahead == 'i') ADVANCE(122); + if (lookahead == 'm') ADVANCE(39); + if (lookahead == 'r') ADVANCE(67); + if (lookahead == 's') ADVANCE(181); + if (lookahead == 't') ADVANCE(85); + if (lookahead == '{') ADVANCE(617); + if (lookahead == '|') ADVANCE(581); + if (lookahead == '}') ADVANCE(618); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(519); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(369); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(390); - if (lookahead == ')') ADVANCE(391); - if (lookahead == '*') ADVANCE(254); - if (lookahead == '+') ADVANCE(365); - if (lookahead == ',') ADVANCE(396); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(398); - if (lookahead == '/') ADVANCE(255); - if (lookahead == ':') ADVANCE(402); - if (lookahead == ';') ADVANCE(400); - if (lookahead == '<') ADVANCE(347); - if (lookahead == '=') ADVANCE(375); - if (lookahead == '>') ADVANCE(351); - if (lookahead == '?') ADVANCE(404); - if (lookahead == '^') ADVANCE(359); - if (lookahead == '_') ADVANCE(307); - if (lookahead == '{') ADVANCE(394); - if (lookahead == '|') ADVANCE(358); - if (lookahead == '}') ADVANCE(395); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '%') ADVANCE(592); + if (lookahead == '&') ADVANCE(578); + if (lookahead == '(') ADVANCE(613); + if (lookahead == ')') ADVANCE(614); + if (lookahead == '*') ADVANCE(475); + if (lookahead == '+') ADVANCE(588); + if (lookahead == ',') ADVANCE(619); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '/') ADVANCE(476); + if (lookahead == ':') ADVANCE(625); + if (lookahead == ';') ADVANCE(623); + if (lookahead == '<') ADVANCE(570); + if (lookahead == '=') ADVANCE(598); + if (lookahead == '>') ADVANCE(574); + if (lookahead == '?') ADVANCE(627); + if (lookahead == ']') ADVANCE(616); + if (lookahead == '^') ADVANCE(582); + if (lookahead == '_') ADVANCE(528); + if (lookahead == '{') ADVANCE(617); + if (lookahead == '|') ADVANCE(581); + if (lookahead == '}') ADVANCE(618); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(519); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(301); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(522); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(369); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(390); - if (lookahead == ')') ADVANCE(391); - if (lookahead == '*') ADVANCE(254); - if (lookahead == '+') ADVANCE(365); - if (lookahead == ',') ADVANCE(396); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(398); - if (lookahead == '/') ADVANCE(255); - if (lookahead == ':') ADVANCE(402); - if (lookahead == ';') ADVANCE(400); - if (lookahead == '<') ADVANCE(347); - if (lookahead == '=') ADVANCE(32); - if (lookahead == '>') ADVANCE(351); - if (lookahead == '?') ADVANCE(404); - if (lookahead == '^') ADVANCE(359); - if (lookahead == 'a') ADVANCE(316); - if (lookahead == 'b') ADVANCE(326); - if (lookahead == 'c') ADVANCE(327); - if (lookahead == 'f') ADVANCE(322); - if (lookahead == 'g') ADVANCE(328); - if (lookahead == 'i') ADVANCE(309); - if (lookahead == 'p') ADVANCE(330); - if (lookahead == 's') ADVANCE(314); - if (lookahead == 'u') ADVANCE(311); - if (lookahead == '{') ADVANCE(394); - if (lookahead == '|') ADVANCE(358); - if (lookahead == '}') ADVANCE(395); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '%') ADVANCE(592); + if (lookahead == '&') ADVANCE(578); + if (lookahead == '(') ADVANCE(613); + if (lookahead == ')') ADVANCE(614); + if (lookahead == '*') ADVANCE(475); + if (lookahead == '+') ADVANCE(588); + if (lookahead == ',') ADVANCE(619); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '/') ADVANCE(476); + if (lookahead == ':') ADVANCE(625); + if (lookahead == ';') ADVANCE(623); + if (lookahead == '<') ADVANCE(570); + if (lookahead == '=') ADVANCE(33); + if (lookahead == '>') ADVANCE(574); + if (lookahead == '?') ADVANCE(627); + if (lookahead == '[') ADVANCE(615); + if (lookahead == ']') ADVANCE(616); + if (lookahead == '^') ADVANCE(582); + if (lookahead == 'a') ADVANCE(537); + if (lookahead == 'b') ADVANCE(547); + if (lookahead == 'c') ADVANCE(548); + if (lookahead == 'f') ADVANCE(543); + if (lookahead == 'g') ADVANCE(549); + if (lookahead == 'i') ADVANCE(530); + if (lookahead == 'p') ADVANCE(551); + if (lookahead == 's') ADVANCE(536); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == '{') ADVANCE(617); + if (lookahead == '|') ADVANCE(581); + if (lookahead == '}') ADVANCE(618); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(308); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(300); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(529); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(521); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(369); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(390); - if (lookahead == '*') ADVANCE(254); - if (lookahead == '+') ADVANCE(365); - if (lookahead == '-') ADVANCE(367); - if (lookahead == '.') ADVANCE(397); - if (lookahead == '/') ADVANCE(255); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(400); - if (lookahead == '<') ADVANCE(347); - if (lookahead == '=') ADVANCE(32); - if (lookahead == '>') ADVANCE(351); - if (lookahead == '?') ADVANCE(404); - if (lookahead == '^') ADVANCE(359); - if (lookahead == '_') ADVANCE(307); - if (lookahead == 't') ADVANCE(302); - if (lookahead == '{') ADVANCE(394); - if (lookahead == '|') ADVANCE(358); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '%') ADVANCE(592); + if (lookahead == '&') ADVANCE(578); + if (lookahead == '(') ADVANCE(613); + if (lookahead == '*') ADVANCE(475); + if (lookahead == '+') ADVANCE(588); + if (lookahead == '-') ADVANCE(590); + if (lookahead == '.') ADVANCE(620); + if (lookahead == '/') ADVANCE(476); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(623); + if (lookahead == '<') ADVANCE(570); + if (lookahead == '=') ADVANCE(33); + if (lookahead == '>') ADVANCE(574); + if (lookahead == '?') ADVANCE(627); + if (lookahead == '^') ADVANCE(582); + if (lookahead == '_') ADVANCE(528); + if (lookahead == 't') ADVANCE(523); + if (lookahead == '{') ADVANCE(617); + if (lookahead == '|') ADVANCE(581); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(519); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(301); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(522); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(370); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(390); - if (lookahead == '*') ADVANCE(253); - if (lookahead == '+') ADVANCE(366); - if (lookahead == '-') ADVANCE(368); - if (lookahead == '.') ADVANCE(397); - if (lookahead == '/') ADVANCE(256); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(400); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(374); - if (lookahead == '>') ADVANCE(350); - if (lookahead == '?') ADVANCE(404); - if (lookahead == '^') ADVANCE(360); - if (lookahead == '_') ADVANCE(307); - if (lookahead == '{') ADVANCE(394); - if (lookahead == '|') ADVANCE(357); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '%') ADVANCE(593); + if (lookahead == '&') ADVANCE(577); + if (lookahead == '(') ADVANCE(613); + if (lookahead == '*') ADVANCE(474); + if (lookahead == '+') ADVANCE(589); + if (lookahead == '-') ADVANCE(591); + if (lookahead == '.') ADVANCE(620); + if (lookahead == '/') ADVANCE(477); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(623); + if (lookahead == '<') ADVANCE(569); + if (lookahead == '=') ADVANCE(597); + if (lookahead == '>') ADVANCE(573); + if (lookahead == '?') ADVANCE(627); + if (lookahead == '^') ADVANCE(583); + if (lookahead == '_') ADVANCE(528); + if (lookahead == '{') ADVANCE(617); + if (lookahead == '|') ADVANCE(580); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(519); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(301); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(522); END_STATE(); case 10: - if (lookahead == '(') ADVANCE(390); - if (lookahead == ')') ADVANCE(391); - if (lookahead == ',') ADVANCE(396); - if (lookahead == '.') ADVANCE(397); + if (lookahead == '(') ADVANCE(613); + if (lookahead == ')') ADVANCE(614); + if (lookahead == ',') ADVANCE(619); + if (lookahead == '.') ADVANCE(620); if (lookahead == '/') ADVANCE(14); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(400); - if (lookahead == '=') ADVANCE(376); - if (lookahead == '_') ADVANCE(307); - if (lookahead == 'i') ADVANCE(303); - if (lookahead == '{') ADVANCE(394); - if (lookahead == '}') ADVANCE(395); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(623); + if (lookahead == '=') ADVANCE(599); + if (lookahead == '_') ADVANCE(528); + if (lookahead == 'i') ADVANCE(524); + if (lookahead == '{') ADVANCE(617); + if (lookahead == '}') ADVANCE(618); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(519); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(301); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(522); END_STATE(); case 11: - if (lookahead == '(') ADVANCE(390); - if (lookahead == ')') ADVANCE(391); - if (lookahead == '-') ADVANCE(34); + if (lookahead == '(') ADVANCE(613); + if (lookahead == ')') ADVANCE(614); + if (lookahead == '-') ADVANCE(35); if (lookahead == '/') ADVANCE(14); - if (lookahead == 'a') ADVANCE(316); - if (lookahead == 'b') ADVANCE(326); - if (lookahead == 'f') ADVANCE(322); - if (lookahead == 'g') ADVANCE(328); - if (lookahead == 'i') ADVANCE(309); - if (lookahead == 's') ADVANCE(314); - if (lookahead == 'u') ADVANCE(311); - if (lookahead == '{') ADVANCE(394); + if (lookahead == '[') ADVANCE(615); + if (lookahead == 'a') ADVANCE(537); + if (lookahead == 'b') ADVANCE(547); + if (lookahead == 'f') ADVANCE(543); + if (lookahead == 'g') ADVANCE(549); + if (lookahead == 'i') ADVANCE(530); + if (lookahead == 's') ADVANCE(536); + if (lookahead == 'u') ADVANCE(532); + if (lookahead == '{') ADVANCE(617); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (('c' <= lookahead && lookahead <= 'z')) ADVANCE(308); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(300); + if (('c' <= lookahead && lookahead <= 'z')) ADVANCE(529); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(521); END_STATE(); case 12: - if (lookahead == '(') ADVANCE(390); - if (lookahead == ')') ADVANCE(391); + if (lookahead == '(') ADVANCE(613); + if (lookahead == ')') ADVANCE(614); if (lookahead == '/') ADVANCE(14); - if (lookahead == '0') ADVANCE(332); - if (lookahead == '}') ADVANCE(395); + if (lookahead == '0') ADVANCE(553); + if (lookahead == '}') ADVANCE(618); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(299); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(300); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(308); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(520); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(521); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 13: - if (lookahead == ')') ADVANCE(391); + if (lookahead == ')') ADVANCE(614); if (lookahead == '/') ADVANCE(14); - if (lookahead == 'c') ADVANCE(327); - if (lookahead == 'p') ADVANCE(330); - if (lookahead == '}') ADVANCE(395); + if (lookahead == 'c') ADVANCE(548); + if (lookahead == 'p') ADVANCE(551); + if (lookahead == '}') ADVANCE(618); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(308); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(300); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(521); END_STATE(); case 14: if (lookahead == '*') ADVANCE(16); - if (lookahead == '/') ADVANCE(249); + if (lookahead == '/') ADVANCE(470); END_STATE(); case 15: if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(248); + if (lookahead == '/') ADVANCE(469); if (lookahead != 0) ADVANCE(16); END_STATE(); case 16: @@ -3359,18 +3427,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 17: if (lookahead == '/') ADVANCE(14); - if (lookahead == '@') ADVANCE(337); - if (lookahead == '_') ADVANCE(307); - if (lookahead == 'f') ADVANCE(306); - if (lookahead == 'i') ADVANCE(304); - if (lookahead == 't') ADVANCE(305); + if (lookahead == '@') ADVANCE(560); + if (lookahead == '_') ADVANCE(528); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(525); + if (lookahead == 't') ADVANCE(526); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(519); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(301); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(522); END_STATE(); case 18: if (lookahead == '/') ADVANCE(14); @@ -3379,1857 +3447,2750 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(18) if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(305); END_STATE(); case 19: - if (lookahead == '1') ADVANCE(22); - if (lookahead == '3') ADVANCE(23); - if (lookahead == '6') ADVANCE(26); - if (lookahead == '8') ADVANCE(272); - if (lookahead == 'f') ADVANCE(277); - if (lookahead == 'm') ADVANCE(136); - if (lookahead == 'n') ADVANCE(279); + if (lookahead == '/') ADVANCE(14); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(19) + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(460); END_STATE(); case 20: - if (lookahead == '1') ADVANCE(335); - END_STATE(); - case 21: - if (lookahead == '1') ADVANCE(25); + if (lookahead == '1') ADVANCE(23); if (lookahead == '3') ADVANCE(24); if (lookahead == '6') ADVANCE(27); - if (lookahead == '8') ADVANCE(293); + if (lookahead == '8') ADVANCE(493); + if (lookahead == 'f') ADVANCE(498); + if (lookahead == 'm') ADVANCE(143); + if (lookahead == 'n') ADVANCE(500); + END_STATE(); + case 21: + if (lookahead == '1') ADVANCE(556); END_STATE(); case 22: - if (lookahead == '2') ADVANCE(28); - if (lookahead == '6') ADVANCE(273); + if (lookahead == '1') ADVANCE(26); + if (lookahead == '3') ADVANCE(25); + if (lookahead == '6') ADVANCE(28); + if (lookahead == '8') ADVANCE(514); END_STATE(); case 23: - if (lookahead == '2') ADVANCE(274); + if (lookahead == '2') ADVANCE(29); + if (lookahead == '6') ADVANCE(494); END_STATE(); case 24: - if (lookahead == '2') ADVANCE(295); + if (lookahead == '2') ADVANCE(495); END_STATE(); case 25: - if (lookahead == '2') ADVANCE(29); - if (lookahead == '6') ADVANCE(294); + if (lookahead == '2') ADVANCE(516); END_STATE(); case 26: - if (lookahead == '4') ADVANCE(275); + if (lookahead == '2') ADVANCE(30); + if (lookahead == '6') ADVANCE(515); END_STATE(); case 27: - if (lookahead == '4') ADVANCE(296); + if (lookahead == '4') ADVANCE(496); END_STATE(); case 28: - if (lookahead == '8') ADVANCE(276); + if (lookahead == '4') ADVANCE(517); END_STATE(); case 29: - if (lookahead == '8') ADVANCE(297); + if (lookahead == '8') ADVANCE(497); END_STATE(); case 30: - if (lookahead == ':') ADVANCE(403); + if (lookahead == '8') ADVANCE(518); END_STATE(); case 31: - if (lookahead == '=') ADVANCE(344); + if (lookahead == ':') ADVANCE(626); END_STATE(); case 32: - if (lookahead == '=') ADVANCE(343); + if (lookahead == '=') ADVANCE(567); END_STATE(); case 33: - if (lookahead == '>') ADVANCE(406); + if (lookahead == '=') ADVANCE(566); END_STATE(); case 34: - if (lookahead == '>') ADVANCE(405); + if (lookahead == '>') ADVANCE(629); END_STATE(); case 35: - if (lookahead == 'a') ADVANCE(97); + if (lookahead == '>') ADVANCE(628); END_STATE(); case 36: - if (lookahead == 'a') ADVANCE(105); + if (lookahead == 'a') ADVANCE(102); END_STATE(); case 37: - if (lookahead == 'a') ADVANCE(96); + if (lookahead == 'a') ADVANCE(110); END_STATE(); case 38: - if (lookahead == 'a') ADVANCE(137); + if (lookahead == 'a') ADVANCE(101); END_STATE(); case 39: - if (lookahead == 'a') ADVANCE(115); + if (lookahead == 'a') ADVANCE(144); END_STATE(); case 40: - if (lookahead == 'a') ADVANCE(98); + if (lookahead == 'a') ADVANCE(103); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(144); + if (lookahead == 'a') ADVANCE(121); END_STATE(); case 42: - if (lookahead == 'a') ADVANCE(174); + if (lookahead == 'a') ADVANCE(151); END_STATE(); case 43: - if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'a') ADVANCE(182); END_STATE(); case 44: - if (lookahead == 'b') ADVANCE(99); + if (lookahead == 'a') ADVANCE(183); END_STATE(); case 45: - if (lookahead == 'c') ADVANCE(92); + if (lookahead == 'a') ADVANCE(119); END_STATE(); case 46: - if (lookahead == 'c') ADVANCE(285); + if (lookahead == 'b') ADVANCE(104); END_STATE(); case 47: - if (lookahead == 'c') ADVANCE(127); + if (lookahead == 'c') ADVANCE(97); END_STATE(); case 48: - if (lookahead == 'c') ADVANCE(172); + if (lookahead == 'c') ADVANCE(506); END_STATE(); case 49: - if (lookahead == 'c') ADVANCE(169); + if (lookahead == 'c') ADVANCE(134); END_STATE(); case 50: - if (lookahead == 'c') ADVANCE(37); + if (lookahead == 'c') ADVANCE(180); END_STATE(); case 51: - if (lookahead == 'd') ADVANCE(267); + if (lookahead == 'c') ADVANCE(177); END_STATE(); case 52: - if (lookahead == 'd') ADVANCE(286); + if (lookahead == 'c') ADVANCE(38); END_STATE(); case 53: - if (lookahead == 'd') ADVANCE(152); + if (lookahead == 'd') ADVANCE(488); END_STATE(); case 54: - if (lookahead == 'e') ADVANCE(139); - if (lookahead == 'n') ADVANCE(66); + if (lookahead == 'd') ADVANCE(507); END_STATE(); case 55: - if (lookahead == 'e') ADVANCE(268); + if (lookahead == 'd') ADVANCE(159); END_STATE(); case 56: - if (lookahead == 'e') ADVANCE(333); + if (lookahead == 'e') ADVANCE(146); + if (lookahead == 'n') ADVANCE(69); END_STATE(); case 57: - if (lookahead == 'e') ADVANCE(334); + if (lookahead == 'e') ADVANCE(489); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(263); + if (lookahead == 'e') ADVANCE(554); END_STATE(); case 59: - if (lookahead == 'e') ADVANCE(283); + if (lookahead == 'e') ADVANCE(555); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(280); + if (lookahead == 'e') ADVANCE(484); END_STATE(); case 61: - if (lookahead == 'e') ADVANCE(266); + if (lookahead == 'e') ADVANCE(632); END_STATE(); case 62: - if (lookahead == 'e') ADVANCE(82); + if (lookahead == 'e') ADVANCE(504); END_STATE(); case 63: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'e') ADVANCE(487); END_STATE(); case 64: - if (lookahead == 'e') ADVANCE(47); + if (lookahead == 'e') ADVANCE(501); END_STATE(); case 65: - if (lookahead == 'e') ADVANCE(121); + if (lookahead == 'e') ADVANCE(87); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(140); + if (lookahead == 'e') ADVANCE(149); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(156); + if (lookahead == 'e') ADVANCE(49); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'e') ADVANCE(128); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(93); - if (lookahead == 'n') ADVANCE(40); + if (lookahead == 'e') ADVANCE(147); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(107); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(122); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(143); + if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'n') ADVANCE(40); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(123); + if (lookahead == 'e') ADVANCE(129); END_STATE(); case 74: - if (lookahead == 'f') ADVANCE(289); + if (lookahead == 'e') ADVANCE(113); END_STATE(); case 75: - if (lookahead == 'g') ADVANCE(79); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 76: - if (lookahead == 'g') ADVANCE(282); + if (lookahead == 'e') ADVANCE(130); END_STATE(); case 77: - if (lookahead == 'g') ADVANCE(148); + if (lookahead == 'f') ADVANCE(510); END_STATE(); case 78: - if (lookahead == 'g') ADVANCE(153); + if (lookahead == 'g') ADVANCE(84); END_STATE(); case 79: - if (lookahead == 'h') ADVANCE(164); + if (lookahead == 'g') ADVANCE(503); END_STATE(); case 80: - if (lookahead == 'h') ADVANCE(70); - if (lookahead == 'r') ADVANCE(43); + if (lookahead == 'g') ADVANCE(111); END_STATE(); case 81: - if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'g') ADVANCE(154); END_STATE(); case 82: - if (lookahead == 'i') ADVANCE(75); + if (lookahead == 'g') ADVANCE(124); END_STATE(); case 83: - if (lookahead == 'i') ADVANCE(182); + if (lookahead == 'g') ADVANCE(161); END_STATE(); case 84: - if (lookahead == 'i') ADVANCE(181); + if (lookahead == 'h') ADVANCE(172); END_STATE(); case 85: - if (lookahead == 'i') ADVANCE(46); + if (lookahead == 'h') ADVANCE(74); + if (lookahead == 'r') ADVANCE(45); END_STATE(); case 86: - if (lookahead == 'i') ADVANCE(119); - if (lookahead == 'u') ADVANCE(112); + if (lookahead == 'i') ADVANCE(72); END_STATE(); case 87: - if (lookahead == 'i') ADVANCE(117); + if (lookahead == 'i') ADVANCE(78); END_STATE(); case 88: - if (lookahead == 'i') ADVANCE(111); + if (lookahead == 'i') ADVANCE(192); END_STATE(); case 89: - if (lookahead == 'i') ADVANCE(129); + if (lookahead == 'i') ADVANCE(191); END_STATE(); case 90: - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'i') ADVANCE(48); END_STATE(); case 91: - if (lookahead == 'i') ADVANCE(175); + if (lookahead == 'i') ADVANCE(126); + if (lookahead == 'u') ADVANCE(117); END_STATE(); case 92: - if (lookahead == 'k') ADVANCE(261); + if (lookahead == 'i') ADVANCE(123); END_STATE(); case 93: - if (lookahead == 'l') ADVANCE(51); + if (lookahead == 'i') ADVANCE(120); END_STATE(); case 94: - if (lookahead == 'l') ADVANCE(74); + if (lookahead == 'i') ADVANCE(136); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(262); + if (lookahead == 'i') ADVANCE(137); END_STATE(); case 96: - if (lookahead == 'l') ADVANCE(41); + if (lookahead == 'i') ADVANCE(184); END_STATE(); case 97: - if (lookahead == 'l') ADVANCE(100); + if (lookahead == 'k') ADVANCE(482); END_STATE(); case 98: - if (lookahead == 'l') ADVANCE(83); + if (lookahead == 'l') ADVANCE(53); END_STATE(); case 99: - if (lookahead == 'l') ADVANCE(85); + if (lookahead == 'l') ADVANCE(77); END_STATE(); case 100: - if (lookahead == 'l') ADVANCE(72); + if (lookahead == 'l') ADVANCE(483); END_STATE(); case 101: - if (lookahead == 'l') ADVANCE(87); + if (lookahead == 'l') ADVANCE(42); END_STATE(); case 102: - if (lookahead == 'l') ADVANCE(58); + if (lookahead == 'l') ADVANCE(105); END_STATE(); case 103: - if (lookahead == 'l') ADVANCE(161); + if (lookahead == 'l') ADVANCE(88); END_STATE(); case 104: - if (lookahead == 'l') ADVANCE(71); - if (lookahead == 's') ADVANCE(155); + if (lookahead == 'l') ADVANCE(90); END_STATE(); case 105: - if (lookahead == 'm') ADVANCE(284); + if (lookahead == 'l') ADVANCE(75); END_STATE(); case 106: - if (lookahead == 'n') ADVANCE(287); + if (lookahead == 'l') ADVANCE(92); END_STATE(); case 107: - if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'l') ADVANCE(60); END_STATE(); case 108: - if (lookahead == 'n') ADVANCE(270); + if (lookahead == 'l') ADVANCE(169); END_STATE(); case 109: - if (lookahead == 'n') ADVANCE(292); + if (lookahead == 'l') ADVANCE(73); + if (lookahead == 's') ADVANCE(163); END_STATE(); case 110: - if (lookahead == 'n') ADVANCE(159); + if (lookahead == 'm') ADVANCE(505); END_STATE(); case 111: - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 'n') ADVANCE(558); END_STATE(); case 112: - if (lookahead == 'n') ADVANCE(48); + if (lookahead == 'n') ADVANCE(508); END_STATE(); case 113: - if (lookahead == 'n') ADVANCE(157); + if (lookahead == 'n') ADVANCE(512); END_STATE(); case 114: - if (lookahead == 'n') ADVANCE(158); + if (lookahead == 'n') ADVANCE(491); END_STATE(); case 115: - if (lookahead == 'n') ADVANCE(167); + if (lookahead == 'n') ADVANCE(513); END_STATE(); case 116: - if (lookahead == 'n') ADVANCE(101); + if (lookahead == 'n') ADVANCE(167); END_STATE(); case 117: - if (lookahead == 'n') ADVANCE(60); + if (lookahead == 'n') ADVANCE(50); END_STATE(); case 118: - if (lookahead == 'n') ADVANCE(160); + if (lookahead == 'n') ADVANCE(165); END_STATE(); case 119: - if (lookahead == 'n') ADVANCE(40); + if (lookahead == 'n') ADVANCE(166); END_STATE(); case 120: - if (lookahead == 'o') ADVANCE(176); + if (lookahead == 'n') ADVANCE(79); END_STATE(); case 121: - if (lookahead == 'o') ADVANCE(408); + if (lookahead == 'n') ADVANCE(175); END_STATE(); case 122: - if (lookahead == 'o') ADVANCE(407); + if (lookahead == 'n') ADVANCE(106); END_STATE(); case 123: - if (lookahead == 'o') ADVANCE(20); + if (lookahead == 'n') ADVANCE(64); END_STATE(); case 124: - if (lookahead == 'o') ADVANCE(77); + if (lookahead == 'n') ADVANCE(44); END_STATE(); case 125: - if (lookahead == 'o') ADVANCE(150); + if (lookahead == 'n') ADVANCE(168); END_STATE(); case 126: - if (lookahead == 'o') ADVANCE(45); + if (lookahead == 'n') ADVANCE(40); END_STATE(); case 127: - if (lookahead == 'o') ADVANCE(146); + if (lookahead == 'o') ADVANCE(185); END_STATE(); case 128: - if (lookahead == 'o') ADVANCE(95); + if (lookahead == 'o') ADVANCE(631); END_STATE(); case 129: - if (lookahead == 'o') ADVANCE(108); + if (lookahead == 'o') ADVANCE(630); END_STATE(); case 130: - if (lookahead == 'o') ADVANCE(109); + if (lookahead == 'o') ADVANCE(21); END_STATE(); case 131: - if (lookahead == 'o') ADVANCE(177); + if (lookahead == 'o') ADVANCE(81); END_STATE(); case 132: - if (lookahead == 'o') ADVANCE(102); + if (lookahead == 'o') ADVANCE(156); END_STATE(); case 133: - if (lookahead == 'o') ADVANCE(118); + if (lookahead == 'o') ADVANCE(47); END_STATE(); case 134: - if (lookahead == 'p') ADVANCE(271); + if (lookahead == 'o') ADVANCE(153); END_STATE(); case 135: - if (lookahead == 'p') ADVANCE(409); + if (lookahead == 'o') ADVANCE(100); END_STATE(); case 136: - if (lookahead == 'p') ADVANCE(125); + if (lookahead == 'o') ADVANCE(114); END_STATE(); case 137: - if (lookahead == 'p') ADVANCE(138); + if (lookahead == 'o') ADVANCE(115); END_STATE(); case 138: - if (lookahead == 'p') ADVANCE(88); + if (lookahead == 'o') ADVANCE(186); END_STATE(); case 139: - if (lookahead == 'q') ADVANCE(259); + if (lookahead == 'o') ADVANCE(107); END_STATE(); case 140: - if (lookahead == 'q') ADVANCE(260); + if (lookahead == 'o') ADVANCE(125); END_STATE(); case 141: - if (lookahead == 'r') ADVANCE(120); + if (lookahead == 'p') ADVANCE(492); END_STATE(); case 142: - if (lookahead == 'r') ADVANCE(163); + if (lookahead == 'p') ADVANCE(633); END_STATE(); case 143: - if (lookahead == 'r') ADVANCE(410); + if (lookahead == 'p') ADVANCE(132); END_STATE(); case 144: - if (lookahead == 'r') ADVANCE(288); + if (lookahead == 'p') ADVANCE(145); END_STATE(); case 145: - if (lookahead == 'r') ADVANCE(269); + if (lookahead == 'p') ADVANCE(93); END_STATE(); case 146: - if (lookahead == 'r') ADVANCE(52); + if (lookahead == 'q') ADVANCE(480); END_STATE(); case 147: - if (lookahead == 'r') ADVANCE(106); + if (lookahead == 'q') ADVANCE(481); END_STATE(); case 148: - if (lookahead == 'r') ADVANCE(36); + if (lookahead == 'r') ADVANCE(127); END_STATE(); case 149: - if (lookahead == 'r') ADVANCE(124); + if (lookahead == 'r') ADVANCE(171); END_STATE(); case 150: - if (lookahead == 'r') ADVANCE(165); + if (lookahead == 'r') ADVANCE(634); END_STATE(); case 151: - if (lookahead == 'r') ADVANCE(180); + if (lookahead == 'r') ADVANCE(509); END_STATE(); case 152: - if (lookahead == 'r') ADVANCE(67); + if (lookahead == 'r') ADVANCE(490); END_STATE(); case 153: - if (lookahead == 'r') ADVANCE(131); + if (lookahead == 'r') ADVANCE(54); END_STATE(); case 154: - if (lookahead == 's') ADVANCE(257); + if (lookahead == 'r') ADVANCE(37); END_STATE(); case 155: - if (lookahead == 's') ADVANCE(63); + if (lookahead == 'r') ADVANCE(131); END_STATE(); case 156: - if (lookahead == 's') ADVANCE(154); + if (lookahead == 'r') ADVANCE(173); END_STATE(); case 157: - if (lookahead == 's') ADVANCE(171); + if (lookahead == 'r') ADVANCE(112); END_STATE(); case 158: - if (lookahead == 's') ADVANCE(91); + if (lookahead == 'r') ADVANCE(189); END_STATE(); case 159: - if (lookahead == 's') ADVANCE(132); + if (lookahead == 'r') ADVANCE(70); END_STATE(); case 160: - if (lookahead == 's') ADVANCE(168); + if (lookahead == 'r') ADVANCE(61); END_STATE(); case 161: - if (lookahead == 's') ADVANCE(57); + if (lookahead == 'r') ADVANCE(138); END_STATE(); case 162: - if (lookahead == 's') ADVANCE(61); + if (lookahead == 's') ADVANCE(478); END_STATE(); case 163: - if (lookahead == 't') ADVANCE(258); + if (lookahead == 's') ADVANCE(66); END_STATE(); case 164: - if (lookahead == 't') ADVANCE(411); + if (lookahead == 's') ADVANCE(162); END_STATE(); case 165: - if (lookahead == 't') ADVANCE(278); + if (lookahead == 's') ADVANCE(179); END_STATE(); case 166: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 's') ADVANCE(96); END_STATE(); case 167: - if (lookahead == 't') ADVANCE(265); + if (lookahead == 's') ADVANCE(139); END_STATE(); case 168: - if (lookahead == 't') ADVANCE(264); + if (lookahead == 's') ADVANCE(176); END_STATE(); case 169: - if (lookahead == 't') ADVANCE(290); + if (lookahead == 's') ADVANCE(59); END_STATE(); case 170: - if (lookahead == 't') ADVANCE(179); + if (lookahead == 's') ADVANCE(63); END_STATE(); case 171: - if (lookahead == 't') ADVANCE(39); + if (lookahead == 't') ADVANCE(479); END_STATE(); case 172: - if (lookahead == 't') ADVANCE(89); + if (lookahead == 't') ADVANCE(635); END_STATE(); case 173: - if (lookahead == 't') ADVANCE(151); + if (lookahead == 't') ADVANCE(499); END_STATE(); case 174: - if (lookahead == 't') ADVANCE(59); + if (lookahead == 't') ADVANCE(502); END_STATE(); case 175: - if (lookahead == 't') ADVANCE(90); + if (lookahead == 't') ADVANCE(486); END_STATE(); case 176: - if (lookahead == 'u') ADVANCE(134); + if (lookahead == 't') ADVANCE(485); END_STATE(); case 177: - if (lookahead == 'u') ADVANCE(135); + if (lookahead == 't') ADVANCE(511); END_STATE(); case 178: - if (lookahead == 'u') ADVANCE(56); + if (lookahead == 't') ADVANCE(188); END_STATE(); case 179: - if (lookahead == 'u') ADVANCE(147); + if (lookahead == 't') ADVANCE(41); END_STATE(); case 180: - if (lookahead == 'u') ADVANCE(49); + if (lookahead == 't') ADVANCE(94); END_STATE(); case 181: - if (lookahead == 'v') ADVANCE(42); + if (lookahead == 't') ADVANCE(158); END_STATE(); case 182: - if (lookahead == 'z') ADVANCE(55); + if (lookahead == 't') ADVANCE(62); END_STATE(); case 183: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); + if (lookahead == 't') ADVANCE(190); END_STATE(); case 184: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 't') ADVANCE(95); END_STATE(); case 185: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + if (lookahead == 'u') ADVANCE(141); END_STATE(); case 186: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + if (lookahead == 'u') ADVANCE(142); END_STATE(); case 187: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(186); + if (lookahead == 'u') ADVANCE(58); END_STATE(); case 188: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(187); + if (lookahead == 'u') ADVANCE(157); END_STATE(); case 189: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); + if (lookahead == 'u') ADVANCE(51); END_STATE(); case 190: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); + if (lookahead == 'u') ADVANCE(160); END_STATE(); case 191: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + if (lookahead == 'v') ADVANCE(43); END_STATE(); case 192: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(191); + if (lookahead == 'z') ADVANCE(57); END_STATE(); case 193: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(557); END_STATE(); case 194: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(193); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(559); END_STATE(); case 195: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(193); END_STATE(); case 196: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 197: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(196); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 198: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(196); END_STATE(); case 199: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(197); END_STATE(); case 200: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(199); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); END_STATE(); case 201: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(200); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(199); END_STATE(); case 202: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(201); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(200); END_STATE(); case 203: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(201); END_STATE(); case 204: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(203); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); END_STATE(); case 205: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(204); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(203); END_STATE(); case 206: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(205); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(204); END_STATE(); case 207: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(205); END_STATE(); case 208: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); END_STATE(); case 209: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); END_STATE(); case 210: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); END_STATE(); case 211: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); END_STATE(); case 212: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 213: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(212); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); END_STATE(); case 214: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(213); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(212); END_STATE(); case 215: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(214); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(213); END_STATE(); case 216: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(214); END_STATE(); case 217: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 218: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 219: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(218); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); END_STATE(); case 220: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(219); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(218); END_STATE(); case 221: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(220); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(219); END_STATE(); case 222: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(220); END_STATE(); case 223: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); END_STATE(); case 224: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(223); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); END_STATE(); case 225: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(223); END_STATE(); case 226: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); END_STATE(); case 227: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(226); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); END_STATE(); case 228: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(226); END_STATE(); case 229: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(228); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 230: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(229); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(228); END_STATE(); case 231: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(230); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(229); END_STATE(); case 232: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(231); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(230); END_STATE(); case 233: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(232); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(231); END_STATE(); case 234: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(233); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(232); END_STATE(); case 235: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(234); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(233); END_STATE(); case 236: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(234); END_STATE(); case 237: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(235); END_STATE(); case 238: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(237); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 239: if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(237); END_STATE(); case 240: - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(249); - if (lookahead == '\r') ADVANCE(251); - if (lookahead == '\\') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); END_STATE(); case 241: - if (eof) ADVANCE(242); - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(370); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(390); - if (lookahead == ')') ADVANCE(391); - if (lookahead == '*') ADVANCE(253); - if (lookahead == '+') ADVANCE(366); - if (lookahead == ',') ADVANCE(396); - if (lookahead == '-') ADVANCE(368); - if (lookahead == '.') ADVANCE(397); - if (lookahead == '/') ADVANCE(256); - if (lookahead == ':') ADVANCE(402); - if (lookahead == ';') ADVANCE(400); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(374); - if (lookahead == '>') ADVANCE(350); - if (lookahead == '?') ADVANCE(404); - if (lookahead == '^') ADVANCE(360); - if (lookahead == 'a') ADVANCE(104); - if (lookahead == 'c') ADVANCE(35); - if (lookahead == 'f') ADVANCE(81); - if (lookahead == 'g') ADVANCE(141); - if (lookahead == 'h') ADVANCE(62); - if (lookahead == 'i') ADVANCE(19); - if (lookahead == 'l') ADVANCE(65); - if (lookahead == 'p') ADVANCE(149); - if (lookahead == 'r') ADVANCE(64); - if (lookahead == 's') ADVANCE(50); - if (lookahead == 'u') ADVANCE(21); - if (lookahead == '{') ADVANCE(394); - if (lookahead == '|') ADVANCE(357); - if (lookahead == '}') ADVANCE(395); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(241) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); END_STATE(); case 242: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 243: - ACCEPT_TOKEN(sym_visible_ascii); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(241); END_STATE(); case 244: - ACCEPT_TOKEN(aux_sym_safe_nonascii_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(242); END_STATE(); case 245: - ACCEPT_TOKEN(aux_sym_safe_nonascii_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(243); END_STATE(); case 246: - ACCEPT_TOKEN(aux_sym_safe_nonascii_token3); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(244); END_STATE(); case 247: - ACCEPT_TOKEN(aux_sym_safe_nonascii_token4); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(245); END_STATE(); case 248: - ACCEPT_TOKEN(aux_sym_comment_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); END_STATE(); case 249: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\\') ADVANCE(240); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(249); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); END_STATE(); case 250: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(249); - if (lookahead == '\r') ADVANCE(251); - if (lookahead == '\\') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); case 251: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(249); - if (lookahead == '\\') ADVANCE(240); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_STAR); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(372); - if (lookahead == '=') ADVANCE(379); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(371); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(252); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(16); - if (lookahead == '/') ADVANCE(249); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); END_STATE(); case 256: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(16); - if (lookahead == '/') ADVANCE(249); - if (lookahead == '=') ADVANCE(380); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(254); END_STATE(); case 257: - ACCEPT_TOKEN(anon_sym_address); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(255); END_STATE(); case 258: - ACCEPT_TOKEN(anon_sym_assert); - if (lookahead == '_') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(256); END_STATE(); case 259: - ACCEPT_TOKEN(anon_sym_assert_eq); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(257); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_assert_neq); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(258); END_STATE(); case 261: - ACCEPT_TOKEN(anon_sym_block); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(259); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_bool); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_console); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(261); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_const); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(262); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_constant); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_else); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(264); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_field); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(265); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_finalize); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(266); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_for); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); END_STATE(); case 270: - ACCEPT_TOKEN(anon_sym_function); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(268); END_STATE(); case 271: - ACCEPT_TOKEN(anon_sym_group); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_i8); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_i16); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_i32); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(272); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_i64); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(273); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_i128); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(274); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_if); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_import); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(276); END_STATE(); case 279: - ACCEPT_TOKEN(anon_sym_in); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(277); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_inline); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_let); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(279); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym_mapping); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); END_STATE(); case 283: - ACCEPT_TOKEN(anon_sym_private); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(281); END_STATE(); case 284: - ACCEPT_TOKEN(anon_sym_program); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(282); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_public); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); END_STATE(); case 286: - ACCEPT_TOKEN(anon_sym_record); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(284); END_STATE(); case 287: - ACCEPT_TOKEN(anon_sym_return); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(285); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym_scalar); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(286); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_self); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_struct); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(288); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_then); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_transition); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(290); END_STATE(); case 293: - ACCEPT_TOKEN(anon_sym_u8); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(291); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_u16); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(292); END_STATE(); case 295: - ACCEPT_TOKEN(anon_sym_u32); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(293); END_STATE(); case 296: - ACCEPT_TOKEN(anon_sym_u64); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(294); END_STATE(); case 297: - ACCEPT_TOKEN(anon_sym_u128); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(295); END_STATE(); case 298: - ACCEPT_TOKEN(aux_sym_decimal_digit_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(296); END_STATE(); case 299: - ACCEPT_TOKEN(sym_nonzero_decimal_digit); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(297); END_STATE(); case 300: - ACCEPT_TOKEN(aux_sym_constant_identifier_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(298); END_STATE(); case 301: - ACCEPT_TOKEN(aux_sym_constant_identifier_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(299); END_STATE(); case 302: - ACCEPT_TOKEN(aux_sym_constant_identifier_token2); - if (lookahead == 'h') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(300); END_STATE(); case 303: - ACCEPT_TOKEN(aux_sym_constant_identifier_token2); - if (lookahead == 'n') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(301); END_STATE(); case 304: - ACCEPT_TOKEN(aux_sym_constant_identifier_token2); - if (lookahead == 'n') ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); case 305: - ACCEPT_TOKEN(aux_sym_constant_identifier_token2); - if (lookahead == 'r') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 306: - ACCEPT_TOKEN(aux_sym_constant_identifier_token2); - if (lookahead == 'u') ADVANCE(112); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(304); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym__); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); END_STATE(); case 308: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(307); END_STATE(); case 309: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == '1') ADVANCE(22); - if (lookahead == '3') ADVANCE(23); - if (lookahead == '6') ADVANCE(26); - if (lookahead == '8') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(308); END_STATE(); case 310: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == '1') ADVANCE(22); - if (lookahead == '3') ADVANCE(23); - if (lookahead == '6') ADVANCE(26); - if (lookahead == '8') ADVANCE(272); - if (lookahead == 'f') ADVANCE(277); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(309); END_STATE(); case 311: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == '1') ADVANCE(25); - if (lookahead == '3') ADVANCE(24); - if (lookahead == '6') ADVANCE(27); - if (lookahead == '8') ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(310); END_STATE(); case 312: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == 'i') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(311); END_STATE(); case 313: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == 'i') ADVANCE(68); - if (lookahead == 'o') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(312); END_STATE(); case 314: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'c') ADVANCE(37); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(313); END_STATE(); case 315: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'c') ADVANCE(37); - if (lookahead == 'e') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(314); END_STATE(); case 316: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'd') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(315); END_STATE(); case 317: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'd') ADVANCE(53); - if (lookahead == 'l') ADVANCE(73); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(316); END_STATE(); case 318: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'd') ADVANCE(53); - if (lookahead == 'l') ADVANCE(73); - if (lookahead == 's') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(317); END_STATE(); case 319: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'e') ADVANCE(166); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(318); END_STATE(); case 320: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'e') ADVANCE(170); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(319); END_STATE(); case 321: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'h') ADVANCE(70); - if (lookahead == 'r') ADVANCE(178); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(320); END_STATE(); case 322: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'i') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(321); END_STATE(); case 323: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'l') ADVANCE(126); - if (lookahead == 'o') ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 324: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'l') ADVANCE(162); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(323); END_STATE(); case 325: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'o') ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(324); END_STATE(); case 326: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'o') ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); END_STATE(); case 327: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'o') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(326); END_STATE(); case 328: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'r') ADVANCE(120); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(327); END_STATE(); case 329: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'r') ADVANCE(178); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); END_STATE(); case 330: - ACCEPT_TOKEN(aux_sym_variable_identifier_token1); - if (lookahead == 'r') ADVANCE(84); - if (lookahead == 'u') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); case 331: - ACCEPT_TOKEN(sym__numeral); - if (lookahead == '_') ADVANCE(331); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(331); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(330); END_STATE(); case 332: - ACCEPT_TOKEN(anon_sym_0); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(331); END_STATE(); case 333: - ACCEPT_TOKEN(anon_sym_true); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(332); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym_false); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(333); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_aleo1); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(334); END_STATE(); case 336: - ACCEPT_TOKEN(aux_sym_address_literal_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(335); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_AT); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_BANG); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(337); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(388); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(339); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(340); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(389); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(341); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(342); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(343); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_LT); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(344); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(362); - if (lookahead == '=') ADVANCE(348); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(345); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(361); - if (lookahead == '=') ADVANCE(348); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(346); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_LT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_GT); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(348); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(352); - if (lookahead == '>') ADVANCE(364); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(349); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(352); - if (lookahead == '>') ADVANCE(363); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(350); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym_GT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(351); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_AMP); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(352); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '=') ADVANCE(385); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(353); END_STATE(); case 355: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(339); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(354); END_STATE(); case 356: - ACCEPT_TOKEN(anon_sym_PIPE); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(355); END_STATE(); case 357: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(386); - if (lookahead == '|') ADVANCE(342); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(356); END_STATE(); case 358: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(341); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(357); END_STATE(); case 359: - ACCEPT_TOKEN(anon_sym_CARET); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(358); END_STATE(); case 360: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(387); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(359); END_STATE(); case 361: - ACCEPT_TOKEN(anon_sym_LT_LT); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(383); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(361); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym_GT_GT); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(362); END_STATE(); case 364: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(384); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(363); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym_PLUS); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(364); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(377); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(365); END_STATE(); case 367: - ACCEPT_TOKEN(anon_sym_DASH); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(366); END_STATE(); case 368: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(378); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(367); END_STATE(); case 369: - ACCEPT_TOKEN(anon_sym_PERCENT); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(368); END_STATE(); case 370: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(381); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(369); END_STATE(); case 371: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); case 372: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(382); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(371); END_STATE(); case 373: - ACCEPT_TOKEN(anon_sym_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(372); END_STATE(); case 374: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(343); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(373); END_STATE(); case 375: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(343); - if (lookahead == '>') ADVANCE(406); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(374); END_STATE(); case 376: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(406); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(375); END_STATE(); case 377: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(376); END_STATE(); case 378: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(377); END_STATE(); case 379: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(378); END_STATE(); case 380: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(379); END_STATE(); case 381: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); END_STATE(); case 382: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); END_STATE(); case 383: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(382); END_STATE(); case 384: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(383); END_STATE(); case 385: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(384); END_STATE(); case 386: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(385); END_STATE(); case 387: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(386); END_STATE(); case 388: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(387); END_STATE(); case 389: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); case 390: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(389); END_STATE(); case 391: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(390); END_STATE(); case 392: - ACCEPT_TOKEN(anon_sym_LBRACK); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(391); END_STATE(); case 393: - ACCEPT_TOKEN(anon_sym_RBRACK); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(392); END_STATE(); case 394: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(393); END_STATE(); case 395: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(394); END_STATE(); case 396: - ACCEPT_TOKEN(anon_sym_COMMA); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(395); END_STATE(); case 397: - ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(396); END_STATE(); case 398: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); END_STATE(); case 399: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(398); END_STATE(); case 400: - ACCEPT_TOKEN(anon_sym_SEMI); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); END_STATE(); case 401: - ACCEPT_TOKEN(anon_sym_COLON); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(400); END_STATE(); case 402: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(403); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 403: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(402); END_STATE(); case 404: - ACCEPT_TOKEN(anon_sym_QMARK); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 405: - ACCEPT_TOKEN(anon_sym_DASH_GT); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); END_STATE(); case 406: - ACCEPT_TOKEN(anon_sym_EQ_GT); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 407: - ACCEPT_TOKEN(sym_aleo_literal); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(406); END_STATE(); case 408: - ACCEPT_TOKEN(sym_leo_literal); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); END_STATE(); case 409: - ACCEPT_TOKEN(anon_sym_RPARENgroup); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym_caller); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); END_STATE(); case 411: - ACCEPT_TOKEN(anon_sym_height); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 241}, - [2] = {.lex_state = 2}, - [3] = {.lex_state = 2}, - [4] = {.lex_state = 2}, - [5] = {.lex_state = 2}, - [6] = {.lex_state = 2}, - [7] = {.lex_state = 2}, - [8] = {.lex_state = 2}, - [9] = {.lex_state = 1}, - [10] = {.lex_state = 1}, - [11] = {.lex_state = 3}, - [12] = {.lex_state = 1}, - [13] = {.lex_state = 1}, - [14] = {.lex_state = 1}, - [15] = {.lex_state = 1}, - [16] = {.lex_state = 1}, - [17] = {.lex_state = 1}, - [18] = {.lex_state = 1}, - [19] = {.lex_state = 1}, - [20] = {.lex_state = 1}, - [21] = {.lex_state = 1}, - [22] = {.lex_state = 1}, - [23] = {.lex_state = 1}, - [24] = {.lex_state = 1}, - [25] = {.lex_state = 1}, - [26] = {.lex_state = 1}, - [27] = {.lex_state = 1}, - [28] = {.lex_state = 1}, - [29] = {.lex_state = 1}, - [30] = {.lex_state = 1}, - [31] = {.lex_state = 1}, - [32] = {.lex_state = 1}, - [33] = {.lex_state = 1}, - [34] = {.lex_state = 1}, - [35] = {.lex_state = 1}, - [36] = {.lex_state = 1}, - [37] = {.lex_state = 1}, - [38] = {.lex_state = 1}, - [39] = {.lex_state = 1}, - [40] = {.lex_state = 1}, - [41] = {.lex_state = 1}, - [42] = {.lex_state = 1}, - [43] = {.lex_state = 1}, - [44] = {.lex_state = 1}, - [45] = {.lex_state = 1}, - [46] = {.lex_state = 1}, - [47] = {.lex_state = 1}, - [48] = {.lex_state = 1}, - [49] = {.lex_state = 1}, - [50] = {.lex_state = 1}, - [51] = {.lex_state = 1}, - [52] = {.lex_state = 1}, - [53] = {.lex_state = 1}, - [54] = {.lex_state = 1}, - [55] = {.lex_state = 1}, - [56] = {.lex_state = 1}, - [57] = {.lex_state = 1}, - [58] = {.lex_state = 1}, - [59] = {.lex_state = 1}, - [60] = {.lex_state = 1}, - [61] = {.lex_state = 1}, - [62] = {.lex_state = 1}, - [63] = {.lex_state = 1}, - [64] = {.lex_state = 1}, - [65] = {.lex_state = 1}, - [66] = {.lex_state = 1}, - [67] = {.lex_state = 1}, - [68] = {.lex_state = 1}, - [69] = {.lex_state = 1}, - [70] = {.lex_state = 1}, - [71] = {.lex_state = 1}, - [72] = {.lex_state = 1}, - [73] = {.lex_state = 1}, - [74] = {.lex_state = 1}, - [75] = {.lex_state = 1}, - [76] = {.lex_state = 1}, - [77] = {.lex_state = 1}, - [78] = {.lex_state = 1}, - [79] = {.lex_state = 1}, - [80] = {.lex_state = 1}, - [81] = {.lex_state = 1}, - [82] = {.lex_state = 1}, - [83] = {.lex_state = 1}, - [84] = {.lex_state = 1}, - [85] = {.lex_state = 1}, - [86] = {.lex_state = 1}, - [87] = {.lex_state = 1}, - [88] = {.lex_state = 1}, - [89] = {.lex_state = 1}, - [90] = {.lex_state = 1}, - [91] = {.lex_state = 1}, - [92] = {.lex_state = 1}, - [93] = {.lex_state = 1}, - [94] = {.lex_state = 1}, - [95] = {.lex_state = 1}, - [96] = {.lex_state = 1}, - [97] = {.lex_state = 1}, - [98] = {.lex_state = 1}, - [99] = {.lex_state = 1}, - [100] = {.lex_state = 1}, - [101] = {.lex_state = 1}, - [102] = {.lex_state = 1}, - [103] = {.lex_state = 1}, - [104] = {.lex_state = 1}, - [105] = {.lex_state = 1}, - [106] = {.lex_state = 1}, - [107] = {.lex_state = 1}, - [108] = {.lex_state = 1}, - [109] = {.lex_state = 1}, - [110] = {.lex_state = 1}, - [111] = {.lex_state = 1}, - [112] = {.lex_state = 1}, - [113] = {.lex_state = 1}, - [114] = {.lex_state = 1}, - [115] = {.lex_state = 1}, - [116] = {.lex_state = 1}, - [117] = {.lex_state = 1}, - [118] = {.lex_state = 1}, - [119] = {.lex_state = 1}, - [120] = {.lex_state = 1}, - [121] = {.lex_state = 1}, - [122] = {.lex_state = 1}, - [123] = {.lex_state = 9}, - [124] = {.lex_state = 9}, - [125] = {.lex_state = 9}, - [126] = {.lex_state = 9}, - [127] = {.lex_state = 9}, - [128] = {.lex_state = 9}, - [129] = {.lex_state = 9}, - [130] = {.lex_state = 9}, - [131] = {.lex_state = 241}, - [132] = {.lex_state = 241}, - [133] = {.lex_state = 241}, - [134] = {.lex_state = 241}, - [135] = {.lex_state = 7}, - [136] = {.lex_state = 241}, - [137] = {.lex_state = 7}, - [138] = {.lex_state = 241}, - [139] = {.lex_state = 7}, - [140] = {.lex_state = 7}, - [141] = {.lex_state = 241}, - [142] = {.lex_state = 7}, - [143] = {.lex_state = 7}, - [144] = {.lex_state = 241}, - [145] = {.lex_state = 5}, - [146] = {.lex_state = 4}, - [147] = {.lex_state = 4}, - [148] = {.lex_state = 241}, - [149] = {.lex_state = 4}, - [150] = {.lex_state = 241}, - [151] = {.lex_state = 4}, - [152] = {.lex_state = 2}, - [153] = {.lex_state = 2}, - [154] = {.lex_state = 6}, - [155] = {.lex_state = 2}, - [156] = {.lex_state = 241}, - [157] = {.lex_state = 241}, - [158] = {.lex_state = 241}, - [159] = {.lex_state = 241}, - [160] = {.lex_state = 2}, - [161] = {.lex_state = 241}, - [162] = {.lex_state = 241}, - [163] = {.lex_state = 241}, - [164] = {.lex_state = 2}, - [165] = {.lex_state = 2}, - [166] = {.lex_state = 2}, - [167] = {.lex_state = 241}, - [168] = {.lex_state = 241}, - [169] = {.lex_state = 241}, - [170] = {.lex_state = 241}, - [171] = {.lex_state = 241}, - [172] = {.lex_state = 2}, - [173] = {.lex_state = 241}, - [174] = {.lex_state = 241}, - [175] = {.lex_state = 2}, - [176] = {.lex_state = 241}, - [177] = {.lex_state = 2}, - [178] = {.lex_state = 241}, - [179] = {.lex_state = 241}, - [180] = {.lex_state = 2}, - [181] = {.lex_state = 241}, - [182] = {.lex_state = 2}, - [183] = {.lex_state = 2}, - [184] = {.lex_state = 241}, - [185] = {.lex_state = 241}, - [186] = {.lex_state = 241}, - [187] = {.lex_state = 241}, - [188] = {.lex_state = 241}, - [189] = {.lex_state = 241}, - [190] = {.lex_state = 241}, - [191] = {.lex_state = 241}, - [192] = {.lex_state = 241}, - [193] = {.lex_state = 241}, - [194] = {.lex_state = 241}, - [195] = {.lex_state = 241}, - [196] = {.lex_state = 241}, - [197] = {.lex_state = 241}, - [198] = {.lex_state = 241}, - [199] = {.lex_state = 6}, - [200] = {.lex_state = 241}, - [201] = {.lex_state = 241}, - [202] = {.lex_state = 11}, - [203] = {.lex_state = 241}, - [204] = {.lex_state = 241}, - [205] = {.lex_state = 241}, - [206] = {.lex_state = 241}, - [207] = {.lex_state = 6}, - [208] = {.lex_state = 6}, - [209] = {.lex_state = 241}, - [210] = {.lex_state = 241}, - [211] = {.lex_state = 241}, - [212] = {.lex_state = 241}, - [213] = {.lex_state = 241}, - [214] = {.lex_state = 2}, - [215] = {.lex_state = 2}, - [216] = {.lex_state = 6}, - [217] = {.lex_state = 241}, - [218] = {.lex_state = 6}, - [219] = {.lex_state = 6}, - [220] = {.lex_state = 241}, - [221] = {.lex_state = 11}, - [222] = {.lex_state = 241}, - [223] = {.lex_state = 241}, - [224] = {.lex_state = 241}, - [225] = {.lex_state = 11}, - [226] = {.lex_state = 11}, - [227] = {.lex_state = 11}, - [228] = {.lex_state = 11}, - [229] = {.lex_state = 11}, - [230] = {.lex_state = 11}, - [231] = {.lex_state = 11}, - [232] = {.lex_state = 11}, - [233] = {.lex_state = 11}, - [234] = {.lex_state = 11}, - [235] = {.lex_state = 11}, - [236] = {.lex_state = 11}, - [237] = {.lex_state = 241}, - [238] = {.lex_state = 11}, - [239] = {.lex_state = 11}, - [240] = {.lex_state = 11}, - [241] = {.lex_state = 11}, - [242] = {.lex_state = 11}, - [243] = {.lex_state = 6}, - [244] = {.lex_state = 11}, - [245] = {.lex_state = 11}, - [246] = {.lex_state = 11}, - [247] = {.lex_state = 11}, - [248] = {.lex_state = 11}, - [249] = {.lex_state = 11}, - [250] = {.lex_state = 11}, - [251] = {.lex_state = 5}, - [252] = {.lex_state = 5}, - [253] = {.lex_state = 5}, - [254] = {.lex_state = 5}, - [255] = {.lex_state = 5}, - [256] = {.lex_state = 5}, - [257] = {.lex_state = 8}, - [258] = {.lex_state = 8}, - [259] = {.lex_state = 5}, - [260] = {.lex_state = 8}, - [261] = {.lex_state = 8}, - [262] = {.lex_state = 8}, - [263] = {.lex_state = 5}, - [264] = {.lex_state = 5}, - [265] = {.lex_state = 5}, - [266] = {.lex_state = 5}, - [267] = {.lex_state = 5}, - [268] = {.lex_state = 5}, - [269] = {.lex_state = 5}, - [270] = {.lex_state = 5}, - [271] = {.lex_state = 5}, - [272] = {.lex_state = 5}, - [273] = {.lex_state = 5}, - [274] = {.lex_state = 5}, - [275] = {.lex_state = 5}, - [276] = {.lex_state = 5}, - [277] = {.lex_state = 5}, - [278] = {.lex_state = 5}, - [279] = {.lex_state = 5}, - [280] = {.lex_state = 5}, - [281] = {.lex_state = 5}, - [282] = {.lex_state = 5}, - [283] = {.lex_state = 5}, - [284] = {.lex_state = 5}, - [285] = {.lex_state = 5}, - [286] = {.lex_state = 8}, - [287] = {.lex_state = 5}, - [288] = {.lex_state = 5}, - [289] = {.lex_state = 5}, - [290] = {.lex_state = 5}, - [291] = {.lex_state = 5}, - [292] = {.lex_state = 5}, - [293] = {.lex_state = 8}, - [294] = {.lex_state = 8}, - [295] = {.lex_state = 5}, - [296] = {.lex_state = 7}, - [297] = {.lex_state = 7}, - [298] = {.lex_state = 7}, - [299] = {.lex_state = 7}, - [300] = {.lex_state = 7}, - [301] = {.lex_state = 7}, - [302] = {.lex_state = 7}, - [303] = {.lex_state = 7}, - [304] = {.lex_state = 7}, - [305] = {.lex_state = 7}, - [306] = {.lex_state = 7}, - [307] = {.lex_state = 7}, - [308] = {.lex_state = 7}, - [309] = {.lex_state = 7}, - [310] = {.lex_state = 7}, - [311] = {.lex_state = 7}, - [312] = {.lex_state = 7}, - [313] = {.lex_state = 7}, - [314] = {.lex_state = 7}, - [315] = {.lex_state = 7}, - [316] = {.lex_state = 7}, - [317] = {.lex_state = 1}, - [318] = {.lex_state = 1}, - [319] = {.lex_state = 1}, - [320] = {.lex_state = 7}, - [321] = {.lex_state = 7}, - [322] = {.lex_state = 7}, - [323] = {.lex_state = 7}, - [324] = {.lex_state = 7}, - [325] = {.lex_state = 7}, - [326] = {.lex_state = 7}, - [327] = {.lex_state = 5}, - [328] = {.lex_state = 7}, - [329] = {.lex_state = 7}, - [330] = {.lex_state = 7}, - [331] = {.lex_state = 5}, - [332] = {.lex_state = 7}, - [333] = {.lex_state = 7}, - [334] = {.lex_state = 7}, - [335] = {.lex_state = 7}, - [336] = {.lex_state = 7}, - [337] = {.lex_state = 7}, - [338] = {.lex_state = 7}, - [339] = {.lex_state = 5}, - [340] = {.lex_state = 5}, - [341] = {.lex_state = 5}, - [342] = {.lex_state = 5}, - [343] = {.lex_state = 5}, - [344] = {.lex_state = 5}, - [345] = {.lex_state = 5}, - [346] = {.lex_state = 5}, - [347] = {.lex_state = 5}, - [348] = {.lex_state = 5}, - [349] = {.lex_state = 5}, - [350] = {.lex_state = 5}, - [351] = {.lex_state = 5}, - [352] = {.lex_state = 5}, - [353] = {.lex_state = 5}, - [354] = {.lex_state = 5}, - [355] = {.lex_state = 5}, - [356] = {.lex_state = 5}, - [357] = {.lex_state = 5}, - [358] = {.lex_state = 5}, - [359] = {.lex_state = 7}, - [360] = {.lex_state = 7}, - [361] = {.lex_state = 7}, - [362] = {.lex_state = 7}, - [363] = {.lex_state = 7}, - [364] = {.lex_state = 7}, - [365] = {.lex_state = 7}, - [366] = {.lex_state = 7}, - [367] = {.lex_state = 7}, - [368] = {.lex_state = 7}, - [369] = {.lex_state = 7}, - [370] = {.lex_state = 7}, - [371] = {.lex_state = 7}, - [372] = {.lex_state = 7}, - [373] = {.lex_state = 7}, - [374] = {.lex_state = 7}, - [375] = {.lex_state = 7}, - [376] = {.lex_state = 7}, - [377] = {.lex_state = 7}, - [378] = {.lex_state = 7}, - [379] = {.lex_state = 7}, - [380] = {.lex_state = 7}, - [381] = {.lex_state = 7}, - [382] = {.lex_state = 7}, - [383] = {.lex_state = 7}, - [384] = {.lex_state = 7}, - [385] = {.lex_state = 7}, - [386] = {.lex_state = 7}, - [387] = {.lex_state = 7}, - [388] = {.lex_state = 5}, - [389] = {.lex_state = 5}, - [390] = {.lex_state = 5}, - [391] = {.lex_state = 11}, - [392] = {.lex_state = 241}, - [393] = {.lex_state = 241}, - [394] = {.lex_state = 241}, - [395] = {.lex_state = 241}, - [396] = {.lex_state = 13}, - [397] = {.lex_state = 13}, - [398] = {.lex_state = 5}, - [399] = {.lex_state = 5}, - [400] = {.lex_state = 10}, - [401] = {.lex_state = 5}, - [402] = {.lex_state = 5}, - [403] = {.lex_state = 5}, - [404] = {.lex_state = 5}, - [405] = {.lex_state = 13}, - [406] = {.lex_state = 5}, - [407] = {.lex_state = 13}, - [408] = {.lex_state = 13}, - [409] = {.lex_state = 13}, - [410] = {.lex_state = 5}, - [411] = {.lex_state = 5}, - [412] = {.lex_state = 5}, - [413] = {.lex_state = 5}, - [414] = {.lex_state = 5}, - [415] = {.lex_state = 13}, - [416] = {.lex_state = 13}, - [417] = {.lex_state = 5}, - [418] = {.lex_state = 5}, - [419] = {.lex_state = 13}, - [420] = {.lex_state = 13}, - [421] = {.lex_state = 13}, - [422] = {.lex_state = 13}, - [423] = {.lex_state = 13}, - [424] = {.lex_state = 5}, - [425] = {.lex_state = 5}, - [426] = {.lex_state = 5}, - [427] = {.lex_state = 5}, - [428] = {.lex_state = 13}, - [429] = {.lex_state = 5}, - [430] = {.lex_state = 5}, - [431] = {.lex_state = 5}, - [432] = {.lex_state = 5}, - [433] = {.lex_state = 5}, - [434] = {.lex_state = 5}, - [435] = {.lex_state = 13}, - [436] = {.lex_state = 5}, - [437] = {.lex_state = 5}, - [438] = {.lex_state = 5}, - [439] = {.lex_state = 5}, - [440] = {.lex_state = 10}, - [441] = {.lex_state = 10}, - [442] = {.lex_state = 10}, - [443] = {.lex_state = 10}, - [444] = {.lex_state = 10}, - [445] = {.lex_state = 10}, - [446] = {.lex_state = 5}, + case 412: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(411); + END_STATE(); + case 413: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); + END_STATE(); + case 414: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + END_STATE(); + case 415: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); + END_STATE(); + case 416: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); + END_STATE(); + case 417: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + END_STATE(); + case 418: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); + END_STATE(); + case 419: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); + END_STATE(); + case 420: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419); + END_STATE(); + case 421: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(420); + END_STATE(); + case 422: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(421); + END_STATE(); + case 423: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(422); + END_STATE(); + case 424: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(423); + END_STATE(); + case 425: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(424); + END_STATE(); + case 426: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + END_STATE(); + case 427: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); + END_STATE(); + case 428: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 429: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(428); + END_STATE(); + case 430: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(429); + END_STATE(); + case 431: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(430); + END_STATE(); + case 432: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + END_STATE(); + case 433: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(432); + END_STATE(); + case 434: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(433); + END_STATE(); + case 435: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(434); + END_STATE(); + case 436: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(435); + END_STATE(); + case 437: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(436); + END_STATE(); + case 438: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(437); + END_STATE(); + case 439: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(438); + END_STATE(); + case 440: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(439); + END_STATE(); + case 441: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(440); + END_STATE(); + case 442: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + END_STATE(); + case 443: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(442); + END_STATE(); + case 444: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(443); + END_STATE(); + case 445: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(444); + END_STATE(); + case 446: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); + END_STATE(); + case 447: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(446); + END_STATE(); + case 448: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(447); + END_STATE(); + case 449: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(448); + END_STATE(); + case 450: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(449); + END_STATE(); + case 451: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(450); + END_STATE(); + case 452: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); + END_STATE(); + case 453: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(452); + END_STATE(); + case 454: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(453); + END_STATE(); + case 455: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(454); + END_STATE(); + case 456: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(455); + END_STATE(); + case 457: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); + END_STATE(); + case 458: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(457); + END_STATE(); + case 459: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(458); + END_STATE(); + case 460: + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + END_STATE(); + case 461: + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(470); + if (lookahead == '\r') ADVANCE(472); + if (lookahead == '\\') ADVANCE(471); + END_STATE(); + case 462: + if (eof) ADVANCE(463); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '%') ADVANCE(593); + if (lookahead == '&') ADVANCE(577); + if (lookahead == '(') ADVANCE(613); + if (lookahead == ')') ADVANCE(614); + if (lookahead == '*') ADVANCE(474); + if (lookahead == '+') ADVANCE(589); + if (lookahead == ',') ADVANCE(619); + if (lookahead == '-') ADVANCE(591); + if (lookahead == '.') ADVANCE(620); + if (lookahead == '/') ADVANCE(477); + if (lookahead == ':') ADVANCE(625); + if (lookahead == ';') ADVANCE(623); + if (lookahead == '<') ADVANCE(569); + if (lookahead == '=') ADVANCE(597); + if (lookahead == '>') ADVANCE(573); + if (lookahead == '?') ADVANCE(627); + if (lookahead == ']') ADVANCE(616); + if (lookahead == '^') ADVANCE(583); + if (lookahead == 'a') ADVANCE(109); + if (lookahead == 'c') ADVANCE(36); + if (lookahead == 'f') ADVANCE(86); + if (lookahead == 'g') ADVANCE(148); + if (lookahead == 'h') ADVANCE(65); + if (lookahead == 'i') ADVANCE(20); + if (lookahead == 'l') ADVANCE(68); + if (lookahead == 'p') ADVANCE(155); + if (lookahead == 'r') ADVANCE(67); + if (lookahead == 's') ADVANCE(52); + if (lookahead == 'u') ADVANCE(22); + if (lookahead == '{') ADVANCE(617); + if (lookahead == '|') ADVANCE(580); + if (lookahead == '}') ADVANCE(618); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(462) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(519); + END_STATE(); + case 463: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 464: + ACCEPT_TOKEN(sym_visible_ascii); + END_STATE(); + case 465: + ACCEPT_TOKEN(aux_sym_safe_nonascii_token1); + END_STATE(); + case 466: + ACCEPT_TOKEN(aux_sym_safe_nonascii_token2); + END_STATE(); + case 467: + ACCEPT_TOKEN(aux_sym_safe_nonascii_token3); + END_STATE(); + case 468: + ACCEPT_TOKEN(aux_sym_safe_nonascii_token4); + END_STATE(); + case 469: + ACCEPT_TOKEN(aux_sym_comment_token1); + END_STATE(); + case 470: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\\') ADVANCE(461); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(470); + END_STATE(); + case 471: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(470); + if (lookahead == '\r') ADVANCE(472); + if (lookahead == '\\') ADVANCE(471); + END_STATE(); + case 472: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(470); + if (lookahead == '\\') ADVANCE(461); + END_STATE(); + case 473: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 474: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(595); + if (lookahead == '=') ADVANCE(602); + END_STATE(); + case 475: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(594); + END_STATE(); + case 476: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(16); + if (lookahead == '/') ADVANCE(470); + END_STATE(); + case 477: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(16); + if (lookahead == '/') ADVANCE(470); + if (lookahead == '=') ADVANCE(603); + END_STATE(); + case 478: + ACCEPT_TOKEN(anon_sym_address); + END_STATE(); + case 479: + ACCEPT_TOKEN(anon_sym_assert); + if (lookahead == '_') ADVANCE(56); + END_STATE(); + case 480: + ACCEPT_TOKEN(anon_sym_assert_eq); + END_STATE(); + case 481: + ACCEPT_TOKEN(anon_sym_assert_neq); + END_STATE(); + case 482: + ACCEPT_TOKEN(anon_sym_block); + END_STATE(); + case 483: + ACCEPT_TOKEN(anon_sym_bool); + END_STATE(); + case 484: + ACCEPT_TOKEN(anon_sym_console); + END_STATE(); + case 485: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 486: + ACCEPT_TOKEN(anon_sym_constant); + END_STATE(); + case 487: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 488: + ACCEPT_TOKEN(anon_sym_field); + END_STATE(); + case 489: + ACCEPT_TOKEN(anon_sym_finalize); + END_STATE(); + case 490: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 491: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 492: + ACCEPT_TOKEN(anon_sym_group); + END_STATE(); + case 493: + ACCEPT_TOKEN(anon_sym_i8); + END_STATE(); + case 494: + ACCEPT_TOKEN(anon_sym_i16); + END_STATE(); + case 495: + ACCEPT_TOKEN(anon_sym_i32); + END_STATE(); + case 496: + ACCEPT_TOKEN(anon_sym_i64); + END_STATE(); + case 497: + ACCEPT_TOKEN(anon_sym_i128); + END_STATE(); + case 498: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 499: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 500: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 501: + ACCEPT_TOKEN(anon_sym_inline); + END_STATE(); + case 502: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 503: + ACCEPT_TOKEN(anon_sym_mapping); + END_STATE(); + case 504: + ACCEPT_TOKEN(anon_sym_private); + END_STATE(); + case 505: + ACCEPT_TOKEN(anon_sym_program); + END_STATE(); + case 506: + ACCEPT_TOKEN(anon_sym_public); + END_STATE(); + case 507: + ACCEPT_TOKEN(anon_sym_record); + END_STATE(); + case 508: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 509: + ACCEPT_TOKEN(anon_sym_scalar); + END_STATE(); + case 510: + ACCEPT_TOKEN(anon_sym_self); + END_STATE(); + case 511: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 512: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 513: + ACCEPT_TOKEN(anon_sym_transition); + END_STATE(); + case 514: + ACCEPT_TOKEN(anon_sym_u8); + END_STATE(); + case 515: + ACCEPT_TOKEN(anon_sym_u16); + END_STATE(); + case 516: + ACCEPT_TOKEN(anon_sym_u32); + END_STATE(); + case 517: + ACCEPT_TOKEN(anon_sym_u64); + END_STATE(); + case 518: + ACCEPT_TOKEN(anon_sym_u128); + END_STATE(); + case 519: + ACCEPT_TOKEN(aux_sym_decimal_digit_token1); + END_STATE(); + case 520: + ACCEPT_TOKEN(sym_nonzero_decimal_digit); + END_STATE(); + case 521: + ACCEPT_TOKEN(aux_sym_constant_identifier_token1); + END_STATE(); + case 522: + ACCEPT_TOKEN(aux_sym_constant_identifier_token2); + END_STATE(); + case 523: + ACCEPT_TOKEN(aux_sym_constant_identifier_token2); + if (lookahead == 'h') ADVANCE(74); + END_STATE(); + case 524: + ACCEPT_TOKEN(aux_sym_constant_identifier_token2); + if (lookahead == 'n') ADVANCE(500); + END_STATE(); + case 525: + ACCEPT_TOKEN(aux_sym_constant_identifier_token2); + if (lookahead == 'n') ADVANCE(106); + END_STATE(); + case 526: + ACCEPT_TOKEN(aux_sym_constant_identifier_token2); + if (lookahead == 'r') ADVANCE(45); + END_STATE(); + case 527: + ACCEPT_TOKEN(aux_sym_constant_identifier_token2); + if (lookahead == 'u') ADVANCE(117); + END_STATE(); + case 528: + ACCEPT_TOKEN(anon_sym__); + END_STATE(); + case 529: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + END_STATE(); + case 530: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == '1') ADVANCE(23); + if (lookahead == '3') ADVANCE(24); + if (lookahead == '6') ADVANCE(27); + if (lookahead == '8') ADVANCE(493); + END_STATE(); + case 531: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == '1') ADVANCE(23); + if (lookahead == '3') ADVANCE(24); + if (lookahead == '6') ADVANCE(27); + if (lookahead == '8') ADVANCE(493); + if (lookahead == 'f') ADVANCE(498); + END_STATE(); + case 532: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == '1') ADVANCE(26); + if (lookahead == '3') ADVANCE(25); + if (lookahead == '6') ADVANCE(28); + if (lookahead == '8') ADVANCE(514); + END_STATE(); + case 533: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'a') ADVANCE(108); + if (lookahead == 'i') ADVANCE(71); + END_STATE(); + case 534: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'a') ADVANCE(108); + if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'o') ADVANCE(152); + END_STATE(); + case 535: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'c') ADVANCE(38); + if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'i') ADVANCE(80); + END_STATE(); + case 536: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'c') ADVANCE(38); + if (lookahead == 'i') ADVANCE(82); + END_STATE(); + case 537: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'd') ADVANCE(55); + END_STATE(); + case 538: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'd') ADVANCE(55); + if (lookahead == 'l') ADVANCE(76); + END_STATE(); + case 539: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'd') ADVANCE(55); + if (lookahead == 'l') ADVANCE(76); + if (lookahead == 's') ADVANCE(163); + END_STATE(); + case 540: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'e') ADVANCE(174); + END_STATE(); + case 541: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'e') ADVANCE(178); + END_STATE(); + case 542: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'h') ADVANCE(74); + if (lookahead == 'r') ADVANCE(187); + END_STATE(); + case 543: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'i') ADVANCE(71); + END_STATE(); + case 544: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'l') ADVANCE(133); + if (lookahead == 'o') ADVANCE(135); + END_STATE(); + case 545: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'l') ADVANCE(170); + END_STATE(); + case 546: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'o') ADVANCE(116); + END_STATE(); + case 547: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'o') ADVANCE(135); + END_STATE(); + case 548: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'o') ADVANCE(118); + END_STATE(); + case 549: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'r') ADVANCE(127); + END_STATE(); + case 550: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'r') ADVANCE(187); + END_STATE(); + case 551: + ACCEPT_TOKEN(aux_sym_variable_identifier_token1); + if (lookahead == 'r') ADVANCE(89); + if (lookahead == 'u') ADVANCE(46); + END_STATE(); + case 552: + ACCEPT_TOKEN(sym__numeral); + if (lookahead == '_') ADVANCE(552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); + END_STATE(); + case 553: + ACCEPT_TOKEN(anon_sym_0); + END_STATE(); + case 554: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 555: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 556: + ACCEPT_TOKEN(anon_sym_aleo1); + END_STATE(); + case 557: + ACCEPT_TOKEN(aux_sym_address_literal_token1); + END_STATE(); + case 558: + ACCEPT_TOKEN(anon_sym_sign); + if (lookahead == 'a') ADVANCE(183); + END_STATE(); + case 559: + ACCEPT_TOKEN(aux_sym_signature_literal_token1); + END_STATE(); + case 560: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 561: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 562: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 563: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(611); + END_STATE(); + case 564: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 565: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(612); + END_STATE(); + case 566: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 567: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 568: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 569: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(585); + if (lookahead == '=') ADVANCE(571); + END_STATE(); + case 570: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(584); + if (lookahead == '=') ADVANCE(571); + END_STATE(); + case 571: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 572: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 573: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(575); + if (lookahead == '>') ADVANCE(587); + END_STATE(); + case 574: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(575); + if (lookahead == '>') ADVANCE(586); + END_STATE(); + case 575: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 576: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 577: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(563); + if (lookahead == '=') ADVANCE(608); + END_STATE(); + case 578: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(562); + END_STATE(); + case 579: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 580: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(609); + if (lookahead == '|') ADVANCE(565); + END_STATE(); + case 581: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(564); + END_STATE(); + case 582: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 583: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(610); + END_STATE(); + case 584: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 585: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(606); + END_STATE(); + case 586: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 587: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(607); + END_STATE(); + case 588: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 589: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(600); + END_STATE(); + case 590: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 591: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(601); + END_STATE(); + case 592: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 593: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(604); + END_STATE(); + case 594: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 595: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(605); + END_STATE(); + case 596: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 597: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(566); + END_STATE(); + case 598: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(566); + if (lookahead == '>') ADVANCE(629); + END_STATE(); + case 599: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(629); + END_STATE(); + case 600: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 601: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 602: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 603: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 604: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 605: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 606: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 607: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 608: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 609: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 610: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 611: + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + END_STATE(); + case 612: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + END_STATE(); + case 613: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 614: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 615: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 616: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 617: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 618: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 619: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 620: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 621: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(622); + END_STATE(); + case 622: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 623: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 624: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 625: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(626); + END_STATE(); + case 626: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 627: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 628: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 629: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 630: + ACCEPT_TOKEN(sym_aleo_literal); + END_STATE(); + case 631: + ACCEPT_TOKEN(sym_leo_literal); + END_STATE(); + case 632: + ACCEPT_TOKEN(sym_signature_type); + END_STATE(); + case 633: + ACCEPT_TOKEN(anon_sym_RPARENgroup); + END_STATE(); + case 634: + ACCEPT_TOKEN(anon_sym_caller); + END_STATE(); + case 635: + ACCEPT_TOKEN(anon_sym_height); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 462}, + [2] = {.lex_state = 2}, + [3] = {.lex_state = 2}, + [4] = {.lex_state = 2}, + [5] = {.lex_state = 2}, + [6] = {.lex_state = 2}, + [7] = {.lex_state = 2}, + [8] = {.lex_state = 2}, + [9] = {.lex_state = 1}, + [10] = {.lex_state = 1}, + [11] = {.lex_state = 3}, + [12] = {.lex_state = 1}, + [13] = {.lex_state = 1}, + [14] = {.lex_state = 1}, + [15] = {.lex_state = 1}, + [16] = {.lex_state = 1}, + [17] = {.lex_state = 1}, + [18] = {.lex_state = 1}, + [19] = {.lex_state = 1}, + [20] = {.lex_state = 1}, + [21] = {.lex_state = 1}, + [22] = {.lex_state = 1}, + [23] = {.lex_state = 1}, + [24] = {.lex_state = 1}, + [25] = {.lex_state = 1}, + [26] = {.lex_state = 1}, + [27] = {.lex_state = 1}, + [28] = {.lex_state = 1}, + [29] = {.lex_state = 1}, + [30] = {.lex_state = 1}, + [31] = {.lex_state = 1}, + [32] = {.lex_state = 1}, + [33] = {.lex_state = 1}, + [34] = {.lex_state = 1}, + [35] = {.lex_state = 1}, + [36] = {.lex_state = 1}, + [37] = {.lex_state = 1}, + [38] = {.lex_state = 1}, + [39] = {.lex_state = 1}, + [40] = {.lex_state = 1}, + [41] = {.lex_state = 1}, + [42] = {.lex_state = 1}, + [43] = {.lex_state = 1}, + [44] = {.lex_state = 1}, + [45] = {.lex_state = 1}, + [46] = {.lex_state = 1}, + [47] = {.lex_state = 1}, + [48] = {.lex_state = 1}, + [49] = {.lex_state = 1}, + [50] = {.lex_state = 1}, + [51] = {.lex_state = 1}, + [52] = {.lex_state = 1}, + [53] = {.lex_state = 1}, + [54] = {.lex_state = 1}, + [55] = {.lex_state = 1}, + [56] = {.lex_state = 1}, + [57] = {.lex_state = 1}, + [58] = {.lex_state = 1}, + [59] = {.lex_state = 1}, + [60] = {.lex_state = 1}, + [61] = {.lex_state = 1}, + [62] = {.lex_state = 1}, + [63] = {.lex_state = 1}, + [64] = {.lex_state = 1}, + [65] = {.lex_state = 1}, + [66] = {.lex_state = 1}, + [67] = {.lex_state = 1}, + [68] = {.lex_state = 1}, + [69] = {.lex_state = 1}, + [70] = {.lex_state = 1}, + [71] = {.lex_state = 1}, + [72] = {.lex_state = 1}, + [73] = {.lex_state = 1}, + [74] = {.lex_state = 1}, + [75] = {.lex_state = 1}, + [76] = {.lex_state = 1}, + [77] = {.lex_state = 1}, + [78] = {.lex_state = 1}, + [79] = {.lex_state = 1}, + [80] = {.lex_state = 1}, + [81] = {.lex_state = 1}, + [82] = {.lex_state = 1}, + [83] = {.lex_state = 1}, + [84] = {.lex_state = 1}, + [85] = {.lex_state = 1}, + [86] = {.lex_state = 1}, + [87] = {.lex_state = 1}, + [88] = {.lex_state = 1}, + [89] = {.lex_state = 1}, + [90] = {.lex_state = 1}, + [91] = {.lex_state = 1}, + [92] = {.lex_state = 1}, + [93] = {.lex_state = 1}, + [94] = {.lex_state = 1}, + [95] = {.lex_state = 1}, + [96] = {.lex_state = 1}, + [97] = {.lex_state = 1}, + [98] = {.lex_state = 1}, + [99] = {.lex_state = 1}, + [100] = {.lex_state = 1}, + [101] = {.lex_state = 1}, + [102] = {.lex_state = 1}, + [103] = {.lex_state = 1}, + [104] = {.lex_state = 1}, + [105] = {.lex_state = 1}, + [106] = {.lex_state = 1}, + [107] = {.lex_state = 1}, + [108] = {.lex_state = 1}, + [109] = {.lex_state = 1}, + [110] = {.lex_state = 1}, + [111] = {.lex_state = 1}, + [112] = {.lex_state = 1}, + [113] = {.lex_state = 1}, + [114] = {.lex_state = 1}, + [115] = {.lex_state = 1}, + [116] = {.lex_state = 1}, + [117] = {.lex_state = 1}, + [118] = {.lex_state = 1}, + [119] = {.lex_state = 1}, + [120] = {.lex_state = 1}, + [121] = {.lex_state = 1}, + [122] = {.lex_state = 1}, + [123] = {.lex_state = 1}, + [124] = {.lex_state = 1}, + [125] = {.lex_state = 9}, + [126] = {.lex_state = 9}, + [127] = {.lex_state = 9}, + [128] = {.lex_state = 9}, + [129] = {.lex_state = 9}, + [130] = {.lex_state = 9}, + [131] = {.lex_state = 9}, + [132] = {.lex_state = 7}, + [133] = {.lex_state = 7}, + [134] = {.lex_state = 7}, + [135] = {.lex_state = 7}, + [136] = {.lex_state = 7}, + [137] = {.lex_state = 7}, + [138] = {.lex_state = 9}, + [139] = {.lex_state = 4}, + [140] = {.lex_state = 4}, + [141] = {.lex_state = 4}, + [142] = {.lex_state = 4}, + [143] = {.lex_state = 462}, + [144] = {.lex_state = 2}, + [145] = {.lex_state = 11}, + [146] = {.lex_state = 2}, + [147] = {.lex_state = 2}, + [148] = {.lex_state = 462}, + [149] = {.lex_state = 2}, + [150] = {.lex_state = 2}, + [151] = {.lex_state = 2}, + [152] = {.lex_state = 11}, + [153] = {.lex_state = 2}, + [154] = {.lex_state = 2}, + [155] = {.lex_state = 462}, + [156] = {.lex_state = 2}, + [157] = {.lex_state = 2}, + [158] = {.lex_state = 2}, + [159] = {.lex_state = 2}, + [160] = {.lex_state = 2}, + [161] = {.lex_state = 2}, + [162] = {.lex_state = 2}, + [163] = {.lex_state = 462}, + [164] = {.lex_state = 11}, + [165] = {.lex_state = 462}, + [166] = {.lex_state = 11}, + [167] = {.lex_state = 11}, + [168] = {.lex_state = 462}, + [169] = {.lex_state = 11}, + [170] = {.lex_state = 11}, + [171] = {.lex_state = 5}, + [172] = {.lex_state = 11}, + [173] = {.lex_state = 11}, + [174] = {.lex_state = 11}, + [175] = {.lex_state = 11}, + [176] = {.lex_state = 11}, + [177] = {.lex_state = 11}, + [178] = {.lex_state = 11}, + [179] = {.lex_state = 11}, + [180] = {.lex_state = 11}, + [181] = {.lex_state = 11}, + [182] = {.lex_state = 11}, + [183] = {.lex_state = 11}, + [184] = {.lex_state = 11}, + [185] = {.lex_state = 11}, + [186] = {.lex_state = 11}, + [187] = {.lex_state = 11}, + [188] = {.lex_state = 11}, + [189] = {.lex_state = 11}, + [190] = {.lex_state = 462}, + [191] = {.lex_state = 11}, + [192] = {.lex_state = 11}, + [193] = {.lex_state = 6}, + [194] = {.lex_state = 6}, + [195] = {.lex_state = 6}, + [196] = {.lex_state = 462}, + [197] = {.lex_state = 6}, + [198] = {.lex_state = 6}, + [199] = {.lex_state = 6}, + [200] = {.lex_state = 462}, + [201] = {.lex_state = 6}, + [202] = {.lex_state = 462}, + [203] = {.lex_state = 462}, + [204] = {.lex_state = 462}, + [205] = {.lex_state = 462}, + [206] = {.lex_state = 462}, + [207] = {.lex_state = 462}, + [208] = {.lex_state = 462}, + [209] = {.lex_state = 462}, + [210] = {.lex_state = 462}, + [211] = {.lex_state = 462}, + [212] = {.lex_state = 462}, + [213] = {.lex_state = 462}, + [214] = {.lex_state = 462}, + [215] = {.lex_state = 462}, + [216] = {.lex_state = 462}, + [217] = {.lex_state = 462}, + [218] = {.lex_state = 462}, + [219] = {.lex_state = 462}, + [220] = {.lex_state = 462}, + [221] = {.lex_state = 462}, + [222] = {.lex_state = 462}, + [223] = {.lex_state = 462}, + [224] = {.lex_state = 462}, + [225] = {.lex_state = 462}, + [226] = {.lex_state = 462}, + [227] = {.lex_state = 462}, + [228] = {.lex_state = 462}, + [229] = {.lex_state = 462}, + [230] = {.lex_state = 462}, + [231] = {.lex_state = 462}, + [232] = {.lex_state = 462}, + [233] = {.lex_state = 462}, + [234] = {.lex_state = 462}, + [235] = {.lex_state = 462}, + [236] = {.lex_state = 462}, + [237] = {.lex_state = 462}, + [238] = {.lex_state = 462}, + [239] = {.lex_state = 462}, + [240] = {.lex_state = 462}, + [241] = {.lex_state = 462}, + [242] = {.lex_state = 462}, + [243] = {.lex_state = 462}, + [244] = {.lex_state = 462}, + [245] = {.lex_state = 462}, + [246] = {.lex_state = 462}, + [247] = {.lex_state = 462}, + [248] = {.lex_state = 462}, + [249] = {.lex_state = 6}, + [250] = {.lex_state = 462}, + [251] = {.lex_state = 462}, + [252] = {.lex_state = 462}, + [253] = {.lex_state = 462}, + [254] = {.lex_state = 462}, + [255] = {.lex_state = 462}, + [256] = {.lex_state = 5}, + [257] = {.lex_state = 5}, + [258] = {.lex_state = 5}, + [259] = {.lex_state = 5}, + [260] = {.lex_state = 5}, + [261] = {.lex_state = 5}, + [262] = {.lex_state = 5}, + [263] = {.lex_state = 5}, + [264] = {.lex_state = 5}, + [265] = {.lex_state = 5}, + [266] = {.lex_state = 5}, + [267] = {.lex_state = 5}, + [268] = {.lex_state = 8}, + [269] = {.lex_state = 5}, + [270] = {.lex_state = 5}, + [271] = {.lex_state = 5}, + [272] = {.lex_state = 5}, + [273] = {.lex_state = 8}, + [274] = {.lex_state = 5}, + [275] = {.lex_state = 5}, + [276] = {.lex_state = 5}, + [277] = {.lex_state = 5}, + [278] = {.lex_state = 5}, + [279] = {.lex_state = 5}, + [280] = {.lex_state = 5}, + [281] = {.lex_state = 5}, + [282] = {.lex_state = 8}, + [283] = {.lex_state = 5}, + [284] = {.lex_state = 5}, + [285] = {.lex_state = 5}, + [286] = {.lex_state = 5}, + [287] = {.lex_state = 5}, + [288] = {.lex_state = 5}, + [289] = {.lex_state = 5}, + [290] = {.lex_state = 8}, + [291] = {.lex_state = 5}, + [292] = {.lex_state = 8}, + [293] = {.lex_state = 5}, + [294] = {.lex_state = 5}, + [295] = {.lex_state = 5}, + [296] = {.lex_state = 5}, + [297] = {.lex_state = 5}, + [298] = {.lex_state = 5}, + [299] = {.lex_state = 8}, + [300] = {.lex_state = 5}, + [301] = {.lex_state = 1}, + [302] = {.lex_state = 1}, + [303] = {.lex_state = 1}, + [304] = {.lex_state = 7}, + [305] = {.lex_state = 7}, + [306] = {.lex_state = 7}, + [307] = {.lex_state = 7}, + [308] = {.lex_state = 7}, + [309] = {.lex_state = 7}, + [310] = {.lex_state = 8}, + [311] = {.lex_state = 7}, + [312] = {.lex_state = 7}, + [313] = {.lex_state = 7}, + [314] = {.lex_state = 7}, + [315] = {.lex_state = 7}, + [316] = {.lex_state = 7}, + [317] = {.lex_state = 7}, + [318] = {.lex_state = 7}, + [319] = {.lex_state = 7}, + [320] = {.lex_state = 7}, + [321] = {.lex_state = 7}, + [322] = {.lex_state = 7}, + [323] = {.lex_state = 7}, + [324] = {.lex_state = 7}, + [325] = {.lex_state = 7}, + [326] = {.lex_state = 8}, + [327] = {.lex_state = 7}, + [328] = {.lex_state = 7}, + [329] = {.lex_state = 7}, + [330] = {.lex_state = 7}, + [331] = {.lex_state = 7}, + [332] = {.lex_state = 7}, + [333] = {.lex_state = 5}, + [334] = {.lex_state = 5}, + [335] = {.lex_state = 5}, + [336] = {.lex_state = 7}, + [337] = {.lex_state = 5}, + [338] = {.lex_state = 7}, + [339] = {.lex_state = 5}, + [340] = {.lex_state = 7}, + [341] = {.lex_state = 5}, + [342] = {.lex_state = 5}, + [343] = {.lex_state = 7}, + [344] = {.lex_state = 5}, + [345] = {.lex_state = 5}, + [346] = {.lex_state = 5}, + [347] = {.lex_state = 5}, + [348] = {.lex_state = 5}, + [349] = {.lex_state = 7}, + [350] = {.lex_state = 5}, + [351] = {.lex_state = 5}, + [352] = {.lex_state = 7}, + [353] = {.lex_state = 5}, + [354] = {.lex_state = 5}, + [355] = {.lex_state = 7}, + [356] = {.lex_state = 7}, + [357] = {.lex_state = 5}, + [358] = {.lex_state = 7}, + [359] = {.lex_state = 5}, + [360] = {.lex_state = 5}, + [361] = {.lex_state = 7}, + [362] = {.lex_state = 5}, + [363] = {.lex_state = 7}, + [364] = {.lex_state = 5}, + [365] = {.lex_state = 7}, + [366] = {.lex_state = 7}, + [367] = {.lex_state = 7}, + [368] = {.lex_state = 5}, + [369] = {.lex_state = 7}, + [370] = {.lex_state = 7}, + [371] = {.lex_state = 7}, + [372] = {.lex_state = 7}, + [373] = {.lex_state = 7}, + [374] = {.lex_state = 7}, + [375] = {.lex_state = 7}, + [376] = {.lex_state = 7}, + [377] = {.lex_state = 7}, + [378] = {.lex_state = 7}, + [379] = {.lex_state = 7}, + [380] = {.lex_state = 7}, + [381] = {.lex_state = 7}, + [382] = {.lex_state = 7}, + [383] = {.lex_state = 7}, + [384] = {.lex_state = 7}, + [385] = {.lex_state = 7}, + [386] = {.lex_state = 7}, + [387] = {.lex_state = 7}, + [388] = {.lex_state = 7}, + [389] = {.lex_state = 7}, + [390] = {.lex_state = 7}, + [391] = {.lex_state = 7}, + [392] = {.lex_state = 7}, + [393] = {.lex_state = 7}, + [394] = {.lex_state = 7}, + [395] = {.lex_state = 7}, + [396] = {.lex_state = 7}, + [397] = {.lex_state = 5}, + [398] = {.lex_state = 11}, + [399] = {.lex_state = 5}, + [400] = {.lex_state = 5}, + [401] = {.lex_state = 462}, + [402] = {.lex_state = 462}, + [403] = {.lex_state = 462}, + [404] = {.lex_state = 462}, + [405] = {.lex_state = 13}, + [406] = {.lex_state = 5}, + [407] = {.lex_state = 13}, + [408] = {.lex_state = 5}, + [409] = {.lex_state = 5}, + [410] = {.lex_state = 13}, + [411] = {.lex_state = 13}, + [412] = {.lex_state = 5}, + [413] = {.lex_state = 13}, + [414] = {.lex_state = 5}, + [415] = {.lex_state = 5}, + [416] = {.lex_state = 5}, + [417] = {.lex_state = 5}, + [418] = {.lex_state = 13}, + [419] = {.lex_state = 13}, + [420] = {.lex_state = 5}, + [421] = {.lex_state = 5}, + [422] = {.lex_state = 5}, + [423] = {.lex_state = 5}, + [424] = {.lex_state = 10}, + [425] = {.lex_state = 13}, + [426] = {.lex_state = 13}, + [427] = {.lex_state = 5}, + [428] = {.lex_state = 13}, + [429] = {.lex_state = 13}, + [430] = {.lex_state = 13}, + [431] = {.lex_state = 5}, + [432] = {.lex_state = 13}, + [433] = {.lex_state = 10}, + [434] = {.lex_state = 10}, + [435] = {.lex_state = 5}, + [436] = {.lex_state = 5}, + [437] = {.lex_state = 5}, + [438] = {.lex_state = 5}, + [439] = {.lex_state = 10}, + [440] = {.lex_state = 10}, + [441] = {.lex_state = 10}, + [442] = {.lex_state = 10}, + [443] = {.lex_state = 10}, + [444] = {.lex_state = 5}, + [445] = {.lex_state = 13}, + [446] = {.lex_state = 5}, [447] = {.lex_state = 5}, - [448] = {.lex_state = 10}, - [449] = {.lex_state = 10}, + [448] = {.lex_state = 5}, + [449] = {.lex_state = 5}, [450] = {.lex_state = 5}, - [451] = {.lex_state = 5}, + [451] = {.lex_state = 10}, [452] = {.lex_state = 5}, [453] = {.lex_state = 5}, [454] = {.lex_state = 5}, @@ -5238,7 +6199,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [457] = {.lex_state = 5}, [458] = {.lex_state = 5}, [459] = {.lex_state = 5}, - [460] = {.lex_state = 5}, + [460] = {.lex_state = 10}, [461] = {.lex_state = 5}, [462] = {.lex_state = 5}, [463] = {.lex_state = 5}, @@ -5247,245 +6208,262 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [466] = {.lex_state = 5}, [467] = {.lex_state = 5}, [468] = {.lex_state = 5}, - [469] = {.lex_state = 10}, + [469] = {.lex_state = 5}, [470] = {.lex_state = 5}, [471] = {.lex_state = 5}, [472] = {.lex_state = 5}, [473] = {.lex_state = 5}, [474] = {.lex_state = 5}, - [475] = {.lex_state = 17}, - [476] = {.lex_state = 10}, - [477] = {.lex_state = 10}, - [478] = {.lex_state = 12}, - [479] = {.lex_state = 10}, - [480] = {.lex_state = 12}, - [481] = {.lex_state = 17}, - [482] = {.lex_state = 17}, - [483] = {.lex_state = 17}, + [475] = {.lex_state = 5}, + [476] = {.lex_state = 5}, + [477] = {.lex_state = 5}, + [478] = {.lex_state = 13}, + [479] = {.lex_state = 5}, + [480] = {.lex_state = 5}, + [481] = {.lex_state = 5}, + [482] = {.lex_state = 5}, + [483] = {.lex_state = 5}, [484] = {.lex_state = 17}, - [485] = {.lex_state = 12}, - [486] = {.lex_state = 10}, + [485] = {.lex_state = 10}, + [486] = {.lex_state = 17}, [487] = {.lex_state = 17}, - [488] = {.lex_state = 12}, + [488] = {.lex_state = 10}, [489] = {.lex_state = 12}, - [490] = {.lex_state = 12}, - [491] = {.lex_state = 12}, - [492] = {.lex_state = 12}, + [490] = {.lex_state = 10}, + [491] = {.lex_state = 17}, + [492] = {.lex_state = 17}, [493] = {.lex_state = 10}, - [494] = {.lex_state = 12}, - [495] = {.lex_state = 10}, - [496] = {.lex_state = 10}, - [497] = {.lex_state = 10}, - [498] = {.lex_state = 10}, - [499] = {.lex_state = 10}, - [500] = {.lex_state = 10}, + [494] = {.lex_state = 10}, + [495] = {.lex_state = 12}, + [496] = {.lex_state = 12}, + [497] = {.lex_state = 12}, + [498] = {.lex_state = 12}, + [499] = {.lex_state = 12}, + [500] = {.lex_state = 12}, [501] = {.lex_state = 12}, - [502] = {.lex_state = 5}, - [503] = {.lex_state = 241}, - [504] = {.lex_state = 5}, - [505] = {.lex_state = 12}, - [506] = {.lex_state = 12}, - [507] = {.lex_state = 12}, - [508] = {.lex_state = 12}, - [509] = {.lex_state = 9}, - [510] = {.lex_state = 12}, - [511] = {.lex_state = 2}, - [512] = {.lex_state = 12}, - [513] = {.lex_state = 241}, - [514] = {.lex_state = 12}, - [515] = {.lex_state = 12}, - [516] = {.lex_state = 241}, - [517] = {.lex_state = 10}, + [502] = {.lex_state = 17}, + [503] = {.lex_state = 10}, + [504] = {.lex_state = 10}, + [505] = {.lex_state = 10}, + [506] = {.lex_state = 10}, + [507] = {.lex_state = 10}, + [508] = {.lex_state = 5}, + [509] = {.lex_state = 12}, + [510] = {.lex_state = 10}, + [511] = {.lex_state = 12}, + [512] = {.lex_state = 5}, + [513] = {.lex_state = 12}, + [514] = {.lex_state = 462}, + [515] = {.lex_state = 10}, + [516] = {.lex_state = 12}, + [517] = {.lex_state = 12}, [518] = {.lex_state = 12}, - [519] = {.lex_state = 9}, - [520] = {.lex_state = 12}, + [519] = {.lex_state = 12}, + [520] = {.lex_state = 2}, [521] = {.lex_state = 12}, [522] = {.lex_state = 12}, - [523] = {.lex_state = 241}, - [524] = {.lex_state = 241}, - [525] = {.lex_state = 2}, + [523] = {.lex_state = 462}, + [524] = {.lex_state = 9}, + [525] = {.lex_state = 12}, [526] = {.lex_state = 12}, - [527] = {.lex_state = 12}, - [528] = {.lex_state = 12}, - [529] = {.lex_state = 12}, + [527] = {.lex_state = 2}, + [528] = {.lex_state = 9}, + [529] = {.lex_state = 462}, [530] = {.lex_state = 12}, - [531] = {.lex_state = 12}, + [531] = {.lex_state = 10}, [532] = {.lex_state = 12}, [533] = {.lex_state = 12}, [534] = {.lex_state = 12}, [535] = {.lex_state = 12}, - [536] = {.lex_state = 12}, + [536] = {.lex_state = 462}, [537] = {.lex_state = 12}, - [538] = {.lex_state = 11}, - [539] = {.lex_state = 5}, - [540] = {.lex_state = 11}, - [541] = {.lex_state = 11}, - [542] = {.lex_state = 11}, - [543] = {.lex_state = 5}, - [544] = {.lex_state = 241}, - [545] = {.lex_state = 241}, - [546] = {.lex_state = 11}, - [547] = {.lex_state = 11}, + [538] = {.lex_state = 12}, + [539] = {.lex_state = 12}, + [540] = {.lex_state = 12}, + [541] = {.lex_state = 12}, + [542] = {.lex_state = 12}, + [543] = {.lex_state = 462}, + [544] = {.lex_state = 12}, + [545] = {.lex_state = 12}, + [546] = {.lex_state = 12}, + [547] = {.lex_state = 12}, [548] = {.lex_state = 11}, - [549] = {.lex_state = 11}, + [549] = {.lex_state = 5}, [550] = {.lex_state = 11}, [551] = {.lex_state = 11}, [552] = {.lex_state = 11}, [553] = {.lex_state = 11}, [554] = {.lex_state = 11}, [555] = {.lex_state = 11}, - [556] = {.lex_state = 241}, - [557] = {.lex_state = 241}, - [558] = {.lex_state = 241}, - [559] = {.lex_state = 241}, - [560] = {.lex_state = 241}, - [561] = {.lex_state = 241}, - [562] = {.lex_state = 241}, - [563] = {.lex_state = 241}, - [564] = {.lex_state = 241}, - [565] = {.lex_state = 241}, - [566] = {.lex_state = 241}, - [567] = {.lex_state = 241}, - [568] = {.lex_state = 241}, - [569] = {.lex_state = 12}, - [570] = {.lex_state = 241}, - [571] = {.lex_state = 241}, - [572] = {.lex_state = 12}, - [573] = {.lex_state = 241}, - [574] = {.lex_state = 241}, - [575] = {.lex_state = 241}, - [576] = {.lex_state = 241}, - [577] = {.lex_state = 241}, - [578] = {.lex_state = 241}, - [579] = {.lex_state = 241}, - [580] = {.lex_state = 241}, - [581] = {.lex_state = 241}, - [582] = {.lex_state = 2}, - [583] = {.lex_state = 241}, - [584] = {.lex_state = 241}, - [585] = {.lex_state = 241}, - [586] = {.lex_state = 241}, - [587] = {.lex_state = 241}, - [588] = {.lex_state = 241}, - [589] = {.lex_state = 241}, - [590] = {.lex_state = 241}, - [591] = {.lex_state = 241}, - [592] = {.lex_state = 241}, - [593] = {.lex_state = 241}, - [594] = {.lex_state = 241}, - [595] = {.lex_state = 241}, - [596] = {.lex_state = 241}, - [597] = {.lex_state = 241}, - [598] = {.lex_state = 241}, - [599] = {.lex_state = 241}, - [600] = {.lex_state = 241}, - [601] = {.lex_state = 241}, - [602] = {.lex_state = 241}, - [603] = {.lex_state = 241}, - [604] = {.lex_state = 241}, - [605] = {.lex_state = 2}, - [606] = {.lex_state = 241}, - [607] = {.lex_state = 241}, - [608] = {.lex_state = 241}, - [609] = {.lex_state = 241}, - [610] = {.lex_state = 241}, - [611] = {.lex_state = 241}, - [612] = {.lex_state = 241}, - [613] = {.lex_state = 241}, - [614] = {.lex_state = 241}, - [615] = {.lex_state = 241}, - [616] = {.lex_state = 241}, - [617] = {.lex_state = 241}, - [618] = {.lex_state = 2}, - [619] = {.lex_state = 241}, - [620] = {.lex_state = 241}, - [621] = {.lex_state = 241}, - [622] = {.lex_state = 2}, - [623] = {.lex_state = 241}, - [624] = {.lex_state = 241}, - [625] = {.lex_state = 241}, - [626] = {.lex_state = 241}, - [627] = {.lex_state = 241}, - [628] = {.lex_state = 241}, - [629] = {.lex_state = 241}, - [630] = {.lex_state = 241}, - [631] = {.lex_state = 18}, - [632] = {.lex_state = 241}, - [633] = {.lex_state = 241}, - [634] = {.lex_state = 241}, - [635] = {.lex_state = 241}, - [636] = {.lex_state = 241}, - [637] = {.lex_state = 241}, - [638] = {.lex_state = 241}, - [639] = {.lex_state = 241}, - [640] = {.lex_state = 241}, - [641] = {.lex_state = 241}, - [642] = {.lex_state = 241}, - [643] = {.lex_state = 241}, - [644] = {.lex_state = 241}, - [645] = {.lex_state = 241}, - [646] = {.lex_state = 241}, - [647] = {.lex_state = 241}, - [648] = {.lex_state = 241}, - [649] = {.lex_state = 241}, - [650] = {.lex_state = 241}, - [651] = {.lex_state = 241}, - [652] = {.lex_state = 2}, - [653] = {.lex_state = 241}, - [654] = {.lex_state = 241}, - [655] = {.lex_state = 241}, - [656] = {.lex_state = 241}, - [657] = {.lex_state = 241}, - [658] = {.lex_state = 241}, - [659] = {.lex_state = 241}, - [660] = {.lex_state = 241}, - [661] = {.lex_state = 241}, - [662] = {.lex_state = 241}, - [663] = {.lex_state = 241}, - [664] = {.lex_state = 241}, - [665] = {.lex_state = 241}, - [666] = {.lex_state = 241}, - [667] = {.lex_state = 241}, - [668] = {.lex_state = 241}, - [669] = {.lex_state = 241}, - [670] = {.lex_state = 241}, - [671] = {.lex_state = 241}, - [672] = {.lex_state = 241}, - [673] = {.lex_state = 241}, - [674] = {.lex_state = 241}, - [675] = {.lex_state = 241}, - [676] = {.lex_state = 241}, - [677] = {.lex_state = 241}, - [678] = {.lex_state = 241}, - [679] = {.lex_state = 2}, - [680] = {.lex_state = 241}, - [681] = {.lex_state = 241}, - [682] = {.lex_state = 241}, - [683] = {.lex_state = 241}, - [684] = {.lex_state = 241}, - [685] = {.lex_state = 18}, - [686] = {.lex_state = 241}, - [687] = {.lex_state = 241}, - [688] = {.lex_state = 241}, - [689] = {.lex_state = 241}, - [690] = {.lex_state = 241}, - [691] = {.lex_state = 241}, - [692] = {.lex_state = 241}, - [693] = {.lex_state = 241}, - [694] = {.lex_state = 241}, - [695] = {.lex_state = 241}, - [696] = {.lex_state = 241}, - [697] = {.lex_state = 241}, - [698] = {.lex_state = 241}, - [699] = {.lex_state = 241}, - [700] = {.lex_state = 241}, - [701] = {.lex_state = 241}, - [702] = {.lex_state = 241}, - [703] = {.lex_state = 241}, - [704] = {.lex_state = 241}, - [705] = {.lex_state = 241}, - [706] = {.lex_state = 241}, - [707] = {(TSStateId)(-1)}, + [556] = {.lex_state = 11}, + [557] = {.lex_state = 5}, + [558] = {.lex_state = 462}, + [559] = {.lex_state = 462}, + [560] = {.lex_state = 11}, + [561] = {.lex_state = 462}, + [562] = {.lex_state = 11}, + [563] = {.lex_state = 462}, + [564] = {.lex_state = 11}, + [565] = {.lex_state = 11}, + [566] = {.lex_state = 11}, + [567] = {.lex_state = 11}, + [568] = {.lex_state = 462}, + [569] = {.lex_state = 462}, + [570] = {.lex_state = 462}, + [571] = {.lex_state = 462}, + [572] = {.lex_state = 462}, + [573] = {.lex_state = 12}, + [574] = {.lex_state = 12}, + [575] = {.lex_state = 462}, + [576] = {.lex_state = 462}, + [577] = {.lex_state = 462}, + [578] = {.lex_state = 462}, + [579] = {.lex_state = 462}, + [580] = {.lex_state = 462}, + [581] = {.lex_state = 462}, + [582] = {.lex_state = 462}, + [583] = {.lex_state = 462}, + [584] = {.lex_state = 462}, + [585] = {.lex_state = 462}, + [586] = {.lex_state = 462}, + [587] = {.lex_state = 462}, + [588] = {.lex_state = 462}, + [589] = {.lex_state = 462}, + [590] = {.lex_state = 462}, + [591] = {.lex_state = 462}, + [592] = {.lex_state = 2}, + [593] = {.lex_state = 462}, + [594] = {.lex_state = 462}, + [595] = {.lex_state = 462}, + [596] = {.lex_state = 462}, + [597] = {.lex_state = 462}, + [598] = {.lex_state = 462}, + [599] = {.lex_state = 462}, + [600] = {.lex_state = 462}, + [601] = {.lex_state = 462}, + [602] = {.lex_state = 462}, + [603] = {.lex_state = 462}, + [604] = {.lex_state = 462}, + [605] = {.lex_state = 462}, + [606] = {.lex_state = 462}, + [607] = {.lex_state = 462}, + [608] = {.lex_state = 462}, + [609] = {.lex_state = 462}, + [610] = {.lex_state = 462}, + [611] = {.lex_state = 462}, + [612] = {.lex_state = 462}, + [613] = {.lex_state = 462}, + [614] = {.lex_state = 462}, + [615] = {.lex_state = 462}, + [616] = {.lex_state = 462}, + [617] = {.lex_state = 462}, + [618] = {.lex_state = 462}, + [619] = {.lex_state = 462}, + [620] = {.lex_state = 462}, + [621] = {.lex_state = 462}, + [622] = {.lex_state = 462}, + [623] = {.lex_state = 462}, + [624] = {.lex_state = 462}, + [625] = {.lex_state = 462}, + [626] = {.lex_state = 462}, + [627] = {.lex_state = 462}, + [628] = {.lex_state = 2}, + [629] = {.lex_state = 462}, + [630] = {.lex_state = 462}, + [631] = {.lex_state = 462}, + [632] = {.lex_state = 462}, + [633] = {.lex_state = 462}, + [634] = {.lex_state = 462}, + [635] = {.lex_state = 462}, + [636] = {.lex_state = 462}, + [637] = {.lex_state = 462}, + [638] = {.lex_state = 462}, + [639] = {.lex_state = 462}, + [640] = {.lex_state = 462}, + [641] = {.lex_state = 462}, + [642] = {.lex_state = 462}, + [643] = {.lex_state = 18}, + [644] = {.lex_state = 19}, + [645] = {.lex_state = 462}, + [646] = {.lex_state = 462}, + [647] = {.lex_state = 462}, + [648] = {.lex_state = 462}, + [649] = {.lex_state = 462}, + [650] = {.lex_state = 462}, + [651] = {.lex_state = 462}, + [652] = {.lex_state = 462}, + [653] = {.lex_state = 462}, + [654] = {.lex_state = 462}, + [655] = {.lex_state = 462}, + [656] = {.lex_state = 462}, + [657] = {.lex_state = 462}, + [658] = {.lex_state = 462}, + [659] = {.lex_state = 19}, + [660] = {.lex_state = 18}, + [661] = {.lex_state = 462}, + [662] = {.lex_state = 462}, + [663] = {.lex_state = 2}, + [664] = {.lex_state = 462}, + [665] = {.lex_state = 462}, + [666] = {.lex_state = 462}, + [667] = {.lex_state = 462}, + [668] = {.lex_state = 2}, + [669] = {.lex_state = 462}, + [670] = {.lex_state = 462}, + [671] = {.lex_state = 462}, + [672] = {.lex_state = 462}, + [673] = {.lex_state = 462}, + [674] = {.lex_state = 462}, + [675] = {.lex_state = 462}, + [676] = {.lex_state = 462}, + [677] = {.lex_state = 462}, + [678] = {.lex_state = 462}, + [679] = {.lex_state = 462}, + [680] = {.lex_state = 2}, + [681] = {.lex_state = 462}, + [682] = {.lex_state = 462}, + [683] = {.lex_state = 2}, + [684] = {.lex_state = 462}, + [685] = {.lex_state = 462}, + [686] = {.lex_state = 462}, + [687] = {.lex_state = 462}, + [688] = {.lex_state = 462}, + [689] = {.lex_state = 462}, + [690] = {.lex_state = 462}, + [691] = {.lex_state = 462}, + [692] = {.lex_state = 462}, + [693] = {.lex_state = 462}, + [694] = {.lex_state = 2}, + [695] = {.lex_state = 462}, + [696] = {.lex_state = 462}, + [697] = {.lex_state = 462}, + [698] = {.lex_state = 462}, + [699] = {.lex_state = 462}, + [700] = {.lex_state = 462}, + [701] = {.lex_state = 462}, + [702] = {.lex_state = 462}, + [703] = {.lex_state = 462}, + [704] = {.lex_state = 462}, + [705] = {.lex_state = 462}, + [706] = {.lex_state = 462}, + [707] = {.lex_state = 462}, + [708] = {.lex_state = 462}, + [709] = {.lex_state = 462}, + [710] = {.lex_state = 462}, + [711] = {.lex_state = 462}, + [712] = {.lex_state = 462}, + [713] = {.lex_state = 462}, + [714] = {.lex_state = 462}, + [715] = {.lex_state = 462}, + [716] = {.lex_state = 462}, + [717] = {.lex_state = 462}, + [718] = {.lex_state = 462}, + [719] = {.lex_state = 462}, + [720] = {.lex_state = 462}, + [721] = {.lex_state = 462}, + [722] = {.lex_state = 462}, + [723] = {.lex_state = 462}, + [724] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5534,8562 +6512,10063 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(705), + [sym_source_file] = STATE(722), [sym_comment] = STATE(1), - [sym_program_declaration] = STATE(703), - [sym_import_declaration] = STATE(584), - [aux_sym_source_file_repeat1] = STATE(524), + [sym_program_declaration] = STATE(720), + [sym_import_declaration] = STATE(610), + [aux_sym_source_file_repeat1] = STATE(523), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_import] = ACTIONS(5), [anon_sym_program] = ACTIONS(7), }, [2] = { [sym_comment] = STATE(2), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(150), - [sym_ternary_expression] = STATE(237), - [sym_block] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_variable_declaration] = STATE(165), - [sym_branch] = STATE(151), - [sym_conditional_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_assignment_statement] = STATE(165), - [sym_assert_statement] = STATE(165), - [sym_assert_call] = STATE(623), - [sym_assert_equal_call] = STATE(623), - [sym_assert_not_equal_call] = STATE(623), - [aux_sym_block_repeat1] = STATE(8), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(200), + [sym_ternary_expression] = STATE(255), + [sym_block] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_variable_declaration] = STATE(161), + [sym_branch] = STATE(140), + [sym_conditional_statement] = STATE(161), + [sym_loop_statement] = STATE(161), + [sym_assignment_statement] = STATE(161), + [sym_assert_statement] = STATE(161), + [sym_assert_call] = STATE(650), + [sym_assert_equal_call] = STATE(650), + [sym_assert_not_equal_call] = STATE(650), + [aux_sym_block_repeat1] = STATE(2), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_address] = ACTIONS(9), - [anon_sym_assert] = ACTIONS(11), - [anon_sym_assert_eq] = ACTIONS(13), - [anon_sym_assert_neq] = ACTIONS(15), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_console] = ACTIONS(21), - [anon_sym_field] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_RBRACE] = ACTIONS(59), + [anon_sym_assert] = ACTIONS(12), + [anon_sym_assert_eq] = ACTIONS(15), + [anon_sym_assert_neq] = ACTIONS(18), + [anon_sym_block] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(24), + [anon_sym_console] = ACTIONS(27), + [anon_sym_field] = ACTIONS(30), + [anon_sym_for] = ACTIONS(33), + [anon_sym_group] = ACTIONS(36), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_i128] = ACTIONS(39), + [anon_sym_if] = ACTIONS(42), + [anon_sym_let] = ACTIONS(45), + [anon_sym_return] = ACTIONS(48), + [anon_sym_scalar] = ACTIONS(51), + [anon_sym_self] = ACTIONS(54), + [anon_sym_u8] = ACTIONS(57), + [anon_sym_u16] = ACTIONS(57), + [anon_sym_u32] = ACTIONS(57), + [anon_sym_u64] = ACTIONS(57), + [anon_sym_u128] = ACTIONS(57), + [aux_sym_constant_identifier_token1] = ACTIONS(60), + [aux_sym_variable_identifier_token1] = ACTIONS(63), + [sym__numeral] = ACTIONS(66), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_aleo1] = ACTIONS(72), + [anon_sym_sign] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(78), + [anon_sym_DASH] = ACTIONS(78), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(84), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(90), + [sym_signature_type] = ACTIONS(92), }, [3] = { [sym_comment] = STATE(3), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(150), - [sym_ternary_expression] = STATE(237), - [sym_block] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_variable_declaration] = STATE(165), - [sym_branch] = STATE(151), - [sym_conditional_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_assignment_statement] = STATE(165), - [sym_assert_statement] = STATE(165), - [sym_assert_call] = STATE(623), - [sym_assert_equal_call] = STATE(623), - [sym_assert_not_equal_call] = STATE(623), - [aux_sym_block_repeat1] = STATE(3), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(200), + [sym_ternary_expression] = STATE(255), + [sym_block] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_variable_declaration] = STATE(161), + [sym_branch] = STATE(140), + [sym_conditional_statement] = STATE(161), + [sym_loop_statement] = STATE(161), + [sym_assignment_statement] = STATE(161), + [sym_assert_statement] = STATE(161), + [sym_assert_call] = STATE(650), + [sym_assert_equal_call] = STATE(650), + [sym_assert_not_equal_call] = STATE(650), + [aux_sym_block_repeat1] = STATE(2), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(61), - [anon_sym_assert] = ACTIONS(64), - [anon_sym_assert_eq] = ACTIONS(67), - [anon_sym_assert_neq] = ACTIONS(70), - [anon_sym_block] = ACTIONS(73), - [anon_sym_bool] = ACTIONS(76), - [anon_sym_console] = ACTIONS(79), - [anon_sym_field] = ACTIONS(82), - [anon_sym_for] = ACTIONS(85), - [anon_sym_group] = ACTIONS(88), - [anon_sym_i8] = ACTIONS(91), - [anon_sym_i16] = ACTIONS(91), - [anon_sym_i32] = ACTIONS(91), - [anon_sym_i64] = ACTIONS(91), - [anon_sym_i128] = ACTIONS(91), - [anon_sym_if] = ACTIONS(94), - [anon_sym_let] = ACTIONS(97), - [anon_sym_return] = ACTIONS(100), - [anon_sym_scalar] = ACTIONS(103), - [anon_sym_self] = ACTIONS(106), - [anon_sym_u8] = ACTIONS(109), - [anon_sym_u16] = ACTIONS(109), - [anon_sym_u32] = ACTIONS(109), - [anon_sym_u64] = ACTIONS(109), - [anon_sym_u128] = ACTIONS(109), - [aux_sym_constant_identifier_token1] = ACTIONS(112), - [aux_sym_variable_identifier_token1] = ACTIONS(115), - [sym__numeral] = ACTIONS(118), - [anon_sym_true] = ACTIONS(121), - [anon_sym_false] = ACTIONS(121), - [anon_sym_aleo1] = ACTIONS(124), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(130), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_RBRACE] = ACTIONS(136), + [anon_sym_address] = ACTIONS(95), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_assert_eq] = ACTIONS(99), + [anon_sym_assert_neq] = ACTIONS(101), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_console] = ACTIONS(107), + [anon_sym_field] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_let] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(149), + [sym_signature_type] = ACTIONS(151), }, [4] = { [sym_comment] = STATE(4), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(150), - [sym_ternary_expression] = STATE(237), - [sym_block] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_variable_declaration] = STATE(165), - [sym_branch] = STATE(151), - [sym_conditional_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_assignment_statement] = STATE(165), - [sym_assert_statement] = STATE(165), - [sym_assert_call] = STATE(623), - [sym_assert_equal_call] = STATE(623), - [sym_assert_not_equal_call] = STATE(623), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(200), + [sym_ternary_expression] = STATE(255), + [sym_block] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_variable_declaration] = STATE(161), + [sym_branch] = STATE(140), + [sym_conditional_statement] = STATE(161), + [sym_loop_statement] = STATE(161), + [sym_assignment_statement] = STATE(161), + [sym_assert_statement] = STATE(161), + [sym_assert_call] = STATE(650), + [sym_assert_equal_call] = STATE(650), + [sym_assert_not_equal_call] = STATE(650), [aux_sym_block_repeat1] = STATE(3), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_assert] = ACTIONS(11), - [anon_sym_assert_eq] = ACTIONS(13), - [anon_sym_assert_neq] = ACTIONS(15), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_console] = ACTIONS(21), - [anon_sym_field] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_RBRACE] = ACTIONS(138), + [anon_sym_address] = ACTIONS(95), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_assert_eq] = ACTIONS(99), + [anon_sym_assert_neq] = ACTIONS(101), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_console] = ACTIONS(107), + [anon_sym_field] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_let] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(153), + [sym_signature_type] = ACTIONS(151), }, [5] = { [sym_comment] = STATE(5), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(150), - [sym_ternary_expression] = STATE(237), - [sym_block] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_variable_declaration] = STATE(165), - [sym_branch] = STATE(151), - [sym_conditional_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_assignment_statement] = STATE(165), - [sym_assert_statement] = STATE(165), - [sym_assert_call] = STATE(623), - [sym_assert_equal_call] = STATE(623), - [sym_assert_not_equal_call] = STATE(623), - [aux_sym_block_repeat1] = STATE(6), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(200), + [sym_ternary_expression] = STATE(255), + [sym_block] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_variable_declaration] = STATE(161), + [sym_branch] = STATE(140), + [sym_conditional_statement] = STATE(161), + [sym_loop_statement] = STATE(161), + [sym_assignment_statement] = STATE(161), + [sym_assert_statement] = STATE(161), + [sym_assert_call] = STATE(650), + [sym_assert_equal_call] = STATE(650), + [sym_assert_not_equal_call] = STATE(650), + [aux_sym_block_repeat1] = STATE(7), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_assert] = ACTIONS(11), - [anon_sym_assert_eq] = ACTIONS(13), - [anon_sym_assert_neq] = ACTIONS(15), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_console] = ACTIONS(21), - [anon_sym_field] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_address] = ACTIONS(95), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_assert_eq] = ACTIONS(99), + [anon_sym_assert_neq] = ACTIONS(101), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_console] = ACTIONS(107), + [anon_sym_field] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_let] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(155), + [sym_signature_type] = ACTIONS(151), }, [6] = { [sym_comment] = STATE(6), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(150), - [sym_ternary_expression] = STATE(237), - [sym_block] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_variable_declaration] = STATE(165), - [sym_branch] = STATE(151), - [sym_conditional_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_assignment_statement] = STATE(165), - [sym_assert_statement] = STATE(165), - [sym_assert_call] = STATE(623), - [sym_assert_equal_call] = STATE(623), - [sym_assert_not_equal_call] = STATE(623), - [aux_sym_block_repeat1] = STATE(3), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(200), + [sym_ternary_expression] = STATE(255), + [sym_block] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_variable_declaration] = STATE(161), + [sym_branch] = STATE(140), + [sym_conditional_statement] = STATE(161), + [sym_loop_statement] = STATE(161), + [sym_assignment_statement] = STATE(161), + [sym_assert_statement] = STATE(161), + [sym_assert_call] = STATE(650), + [sym_assert_equal_call] = STATE(650), + [sym_assert_not_equal_call] = STATE(650), + [aux_sym_block_repeat1] = STATE(8), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_assert] = ACTIONS(11), - [anon_sym_assert_eq] = ACTIONS(13), - [anon_sym_assert_neq] = ACTIONS(15), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_console] = ACTIONS(21), - [anon_sym_field] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_RBRACE] = ACTIONS(142), + [anon_sym_address] = ACTIONS(95), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_assert_eq] = ACTIONS(99), + [anon_sym_assert_neq] = ACTIONS(101), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_console] = ACTIONS(107), + [anon_sym_field] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_let] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(157), + [sym_signature_type] = ACTIONS(151), }, [7] = { [sym_comment] = STATE(7), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(150), - [sym_ternary_expression] = STATE(237), - [sym_block] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_variable_declaration] = STATE(165), - [sym_branch] = STATE(151), - [sym_conditional_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_assignment_statement] = STATE(165), - [sym_assert_statement] = STATE(165), - [sym_assert_call] = STATE(623), - [sym_assert_equal_call] = STATE(623), - [sym_assert_not_equal_call] = STATE(623), - [aux_sym_block_repeat1] = STATE(4), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(200), + [sym_ternary_expression] = STATE(255), + [sym_block] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_variable_declaration] = STATE(161), + [sym_branch] = STATE(140), + [sym_conditional_statement] = STATE(161), + [sym_loop_statement] = STATE(161), + [sym_assignment_statement] = STATE(161), + [sym_assert_statement] = STATE(161), + [sym_assert_call] = STATE(650), + [sym_assert_equal_call] = STATE(650), + [sym_assert_not_equal_call] = STATE(650), + [aux_sym_block_repeat1] = STATE(2), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_assert] = ACTIONS(11), - [anon_sym_assert_eq] = ACTIONS(13), - [anon_sym_assert_neq] = ACTIONS(15), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_console] = ACTIONS(21), - [anon_sym_field] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_RBRACE] = ACTIONS(144), + [anon_sym_address] = ACTIONS(95), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_assert_eq] = ACTIONS(99), + [anon_sym_assert_neq] = ACTIONS(101), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_console] = ACTIONS(107), + [anon_sym_field] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_let] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(159), + [sym_signature_type] = ACTIONS(151), }, [8] = { [sym_comment] = STATE(8), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(150), - [sym_ternary_expression] = STATE(237), - [sym_block] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_variable_declaration] = STATE(165), - [sym_branch] = STATE(151), - [sym_conditional_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_assignment_statement] = STATE(165), - [sym_assert_statement] = STATE(165), - [sym_assert_call] = STATE(623), - [sym_assert_equal_call] = STATE(623), - [sym_assert_not_equal_call] = STATE(623), - [aux_sym_block_repeat1] = STATE(3), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(200), + [sym_ternary_expression] = STATE(255), + [sym_block] = STATE(161), + [sym_return_statement] = STATE(161), + [sym_expression_statement] = STATE(161), + [sym_variable_declaration] = STATE(161), + [sym_branch] = STATE(140), + [sym_conditional_statement] = STATE(161), + [sym_loop_statement] = STATE(161), + [sym_assignment_statement] = STATE(161), + [sym_assert_statement] = STATE(161), + [sym_assert_call] = STATE(650), + [sym_assert_equal_call] = STATE(650), + [sym_assert_not_equal_call] = STATE(650), + [aux_sym_block_repeat1] = STATE(2), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_assert] = ACTIONS(11), - [anon_sym_assert_eq] = ACTIONS(13), - [anon_sym_assert_neq] = ACTIONS(15), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_console] = ACTIONS(21), - [anon_sym_field] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_RBRACE] = ACTIONS(146), + [anon_sym_address] = ACTIONS(95), + [anon_sym_assert] = ACTIONS(97), + [anon_sym_assert_eq] = ACTIONS(99), + [anon_sym_assert_neq] = ACTIONS(101), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_console] = ACTIONS(107), + [anon_sym_field] = ACTIONS(109), + [anon_sym_for] = ACTIONS(111), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_if] = ACTIONS(117), + [anon_sym_let] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(161), + [sym_signature_type] = ACTIONS(151), }, [9] = { [sym_comment] = STATE(9), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_group_coordinate] = STATE(653), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(322), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_group_coordinate] = STATE(721), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(327), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [anon_sym__] = ACTIONS(154), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(158), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(170), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [anon_sym__] = ACTIONS(169), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [10] = { [sym_comment] = STATE(10), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_group_coordinate] = STATE(704), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(323), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_group_coordinate] = STATE(638), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(328), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [anon_sym__] = ACTIONS(154), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(158), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(172), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [anon_sym__] = ACTIONS(169), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [11] = { [sym_comment] = STATE(11), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(355), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(368), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_then] = ACTIONS(174), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(184), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_then] = ACTIONS(193), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(203), + [sym_signature_type] = ACTIONS(151), }, [12] = { [sym_comment] = STATE(12), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(325), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(340), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [13] = { [sym_comment] = STATE(13), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(321), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(330), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(188), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [14] = { [sym_comment] = STATE(14), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(325), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(329), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(190), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [15] = { [sym_comment] = STATE(15), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(325), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(330), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(192), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [16] = { [sym_comment] = STATE(16), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(324), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(330), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(194), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [17] = { [sym_comment] = STATE(17), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(325), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(331), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(196), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [18] = { [sym_comment] = STATE(18), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(325), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(330), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(198), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [19] = { [sym_comment] = STATE(19), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(325), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(365), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(221), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(223), + [sym_signature_type] = ACTIONS(151), }, [20] = { [sym_comment] = STATE(20), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(326), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(330), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(202), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), - [anon_sym_COMMA] = ACTIONS(204), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [21] = { [sym_comment] = STATE(21), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(337), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(330), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(208), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [22] = { [sym_comment] = STATE(22), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(352), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(345), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [23] = { [sym_comment] = STATE(23), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(314), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(347), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [24] = { [sym_comment] = STATE(24), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(325), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(215), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [25] = { [sym_comment] = STATE(25), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(349), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(355), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [26] = { [sym_comment] = STATE(26), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(366), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(314), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [27] = { [sym_comment] = STATE(27), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(222), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(304), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [28] = { [sym_comment] = STATE(28), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(376), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(317), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [29] = { [sym_comment] = STATE(29), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(350), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(318), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [30] = { [sym_comment] = STATE(30), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(211), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(315), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [31] = { [sym_comment] = STATE(31), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(220), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(306), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [32] = { [sym_comment] = STATE(32), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(217), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(308), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [33] = { [sym_comment] = STATE(33), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(213), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(309), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [34] = { [sym_comment] = STATE(34), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(351), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(311), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [35] = { [sym_comment] = STATE(35), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(223), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(312), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [36] = { [sym_comment] = STATE(36), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(353), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(313), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [37] = { [sym_comment] = STATE(37), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(209), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(305), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [38] = { [sym_comment] = STATE(38), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(338), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(325), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [39] = { [sym_comment] = STATE(39), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(372), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(324), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [40] = { [sym_comment] = STATE(40), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(200), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(323), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [41] = { [sym_comment] = STATE(41), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(346), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(322), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [42] = { [sym_comment] = STATE(42), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(356), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(321), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [43] = { [sym_comment] = STATE(43), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(367), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(320), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [44] = { [sym_comment] = STATE(44), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(192), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(319), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [45] = { [sym_comment] = STATE(45), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(365), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(330), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [46] = { [sym_comment] = STATE(46), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(363), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(359), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [47] = { [sym_comment] = STATE(47), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(330), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(353), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [48] = { [sym_comment] = STATE(48), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(306), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(334), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [49] = { [sym_comment] = STATE(49), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(174), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(346), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [50] = { [sym_comment] = STATE(50), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(357), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(377), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [51] = { [sym_comment] = STATE(51), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(305), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(341), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [52] = { [sym_comment] = STATE(52), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(361), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(336), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [53] = { [sym_comment] = STATE(53), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(368), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(390), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [54] = { [sym_comment] = STATE(54), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(359), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(333), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [55] = { [sym_comment] = STATE(55), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(379), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(307), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [56] = { [sym_comment] = STATE(56), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(380), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(337), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [57] = { [sym_comment] = STATE(57), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(381), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(363), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [58] = { [sym_comment] = STATE(58), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(383), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(367), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [59] = { [sym_comment] = STATE(59), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(374), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(339), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [60] = { [sym_comment] = STATE(60), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(378), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(350), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [61] = { [sym_comment] = STATE(61), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), [sym__expression] = STATE(362), - [sym_ternary_expression] = STATE(295), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [62] = { [sym_comment] = STATE(62), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(303), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(354), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [63] = { [sym_comment] = STATE(63), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(304), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(351), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [64] = { [sym_comment] = STATE(64), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(299), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(344), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [65] = { [sym_comment] = STATE(65), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(300), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(342), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [66] = { [sym_comment] = STATE(66), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(334), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(373), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [67] = { [sym_comment] = STATE(67), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(335), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(240), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [68] = { [sym_comment] = STATE(68), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(301), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(239), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [69] = { [sym_comment] = STATE(69), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(302), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(238), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [70] = { [sym_comment] = STATE(70), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(298), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(237), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [71] = { [sym_comment] = STATE(71), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(307), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(236), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [72] = { [sym_comment] = STATE(72), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(369), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(235), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [73] = { [sym_comment] = STATE(73), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(371), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(204), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [74] = { [sym_comment] = STATE(74), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(377), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(233), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [75] = { [sym_comment] = STATE(75), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(360), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(392), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [76] = { [sym_comment] = STATE(76), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(375), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(376), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [77] = { [sym_comment] = STATE(77), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(382), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(338), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [78] = { [sym_comment] = STATE(78), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(386), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(232), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [79] = { [sym_comment] = STATE(79), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(385), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(230), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [80] = { [sym_comment] = STATE(80), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(384), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(227), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [81] = { [sym_comment] = STATE(81), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(308), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(222), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [82] = { [sym_comment] = STATE(82), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(296), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(214), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [83] = { [sym_comment] = STATE(83), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(297), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(213), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [84] = { [sym_comment] = STATE(84), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(370), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(212), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [85] = { [sym_comment] = STATE(85), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(316), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(208), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [86] = { [sym_comment] = STATE(86), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(333), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(207), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [87] = { [sym_comment] = STATE(87), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(315), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(206), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [88] = { [sym_comment] = STATE(88), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(189), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(205), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [89] = { [sym_comment] = STATE(89), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(327), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(348), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [90] = { [sym_comment] = STATE(90), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(313), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(369), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [91] = { [sym_comment] = STATE(91), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(312), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(379), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [92] = { [sym_comment] = STATE(92), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(311), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(374), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [93] = { [sym_comment] = STATE(93), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(339), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(356), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [94] = { [sym_comment] = STATE(94), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(310), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(357), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [95] = { [sym_comment] = STATE(95), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(309), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(366), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [96] = { [sym_comment] = STATE(96), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(329), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(360), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [97] = { [sym_comment] = STATE(97), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(332), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(372), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [98] = { [sym_comment] = STATE(98), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(336), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(358), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [99] = { [sym_comment] = STATE(99), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(358), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(378), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [100] = { [sym_comment] = STATE(100), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(354), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(370), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [101] = { [sym_comment] = STATE(101), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(348), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(382), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [102] = { [sym_comment] = STATE(102), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(197), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(383), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [103] = { [sym_comment] = STATE(103), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(347), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(384), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [104] = { [sym_comment] = STATE(104), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(181), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(155), + [sym_variable_identifier] = STATE(155), + [sym_identifier] = STATE(529), + [sym_unsigned_literal] = STATE(254), + [sym_signed_literal] = STATE(254), + [sym_field_literal] = STATE(254), + [sym_product_group_literal] = STATE(254), + [sym_scalar_literal] = STATE(254), + [sym_boolean_literal] = STATE(254), + [sym_address_literal] = STATE(254), + [sym_signature_literal] = STATE(254), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(563), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(646), + [sym_affine_group_literal] = STATE(254), + [sym_variable] = STATE(254), + [sym_associated_constant] = STATE(254), + [sym_free_function_call] = STATE(254), + [sym_associated_function_call] = STATE(254), + [sym_unit_expression] = STATE(254), + [sym_tuple_expression] = STATE(254), + [sym_array_expression] = STATE(254), + [sym_struct_expression] = STATE(254), + [sym_self_caller] = STATE(254), + [sym_block_height] = STATE(254), + [sym__postfix_expression] = STATE(630), + [sym_tuple_component_expression] = STATE(254), + [sym_struct_component_expression] = STATE(254), + [sym_method_call] = STATE(254), + [sym__expression] = STATE(225), + [sym_ternary_expression] = STATE(255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(103), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(125), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(129), + [aux_sym_variable_identifier_token1] = ACTIONS(131), + [sym__numeral] = ACTIONS(133), + [anon_sym_true] = ACTIONS(135), + [anon_sym_false] = ACTIONS(135), + [anon_sym_aleo1] = ACTIONS(137), + [anon_sym_sign] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [sym_signature_type] = ACTIONS(151), }, [105] = { [sym_comment] = STATE(105), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(373), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(364), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [106] = { [sym_comment] = STATE(106), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(345), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(375), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [107] = { [sym_comment] = STATE(107), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(344), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(371), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [108] = { [sym_comment] = STATE(108), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(343), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(381), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [109] = { [sym_comment] = STATE(109), - [sym_constant_identifier] = STATE(320), - [sym_variable_identifier] = STATE(320), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(328), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(706), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(707), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(335), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(195), + [aux_sym_variable_identifier_token1] = ACTIONS(197), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [110] = { [sym_comment] = STATE(110), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(195), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(393), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [111] = { [sym_comment] = STATE(111), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(342), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(385), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [112] = { [sym_comment] = STATE(112), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(341), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(343), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [113] = { [sym_comment] = STATE(113), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(340), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(361), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [114] = { [sym_comment] = STATE(114), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(163), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(261), + [sym_variable_identifier] = STATE(261), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(316), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [115] = { [sym_comment] = STATE(115), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(691), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(692), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(331), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(380), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(176), - [aux_sym_variable_identifier_token1] = ACTIONS(178), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [116] = { [sym_comment] = STATE(116), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(167), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(386), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [117] = { [sym_comment] = STATE(117), - [sym_constant_identifier] = STATE(254), - [sym_variable_identifier] = STATE(254), - [sym_identifier] = STATE(513), - [sym_unsigned_literal] = STATE(281), - [sym_signed_literal] = STATE(281), - [sym_field_literal] = STATE(281), - [sym_product_group_literal] = STATE(281), - [sym_scalar_literal] = STATE(281), - [sym_boolean_literal] = STATE(281), - [sym_address_literal] = STATE(281), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(544), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(697), - [sym_affine_group_literal] = STATE(281), - [sym_variable] = STATE(281), - [sym_associated_constant] = STATE(281), - [sym_free_function_call] = STATE(281), - [sym_associated_function_call] = STATE(281), - [sym_unit_expression] = STATE(281), - [sym_tuple_expression] = STATE(281), - [sym_struct_expression] = STATE(281), - [sym_self_caller] = STATE(281), - [sym_block_height] = STATE(281), - [sym__postfix_expression] = STATE(699), - [sym_tuple_component_expression] = STATE(281), - [sym_struct_component_expression] = STATE(281), - [sym_method_call] = STATE(281), - [sym__expression] = STATE(364), - [sym_ternary_expression] = STATE(295), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(389), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(150), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(152), - [aux_sym_variable_identifier_token1] = ACTIONS(156), - [sym__numeral] = ACTIONS(180), - [anon_sym_true] = ACTIONS(160), - [anon_sym_false] = ACTIONS(160), - [anon_sym_aleo1] = ACTIONS(162), - [anon_sym_BANG] = ACTIONS(164), - [anon_sym_DASH] = ACTIONS(164), - [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [118] = { [sym_comment] = STATE(118), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(168), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(391), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [119] = { [sym_comment] = STATE(119), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(187), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(395), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [120] = { [sym_comment] = STATE(120), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(169), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(387), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [121] = { [sym_comment] = STATE(121), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(170), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(394), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, [122] = { [sym_comment] = STATE(122), - [sym_constant_identifier] = STATE(133), - [sym_variable_identifier] = STATE(133), - [sym_identifier] = STATE(523), - [sym_unsigned_literal] = STATE(210), - [sym_signed_literal] = STATE(210), - [sym_field_literal] = STATE(210), - [sym_product_group_literal] = STATE(210), - [sym_scalar_literal] = STATE(210), - [sym_boolean_literal] = STATE(210), - [sym_address_literal] = STATE(210), - [sym_program_name_literal] = STATE(698), - [sym_program_id] = STATE(638), - [sym_locator] = STATE(545), - [sym_unsigned_type] = STATE(686), - [sym_signed_type] = STATE(686), - [sym_integer_type] = STATE(687), - [sym_field_type] = STATE(687), - [sym_group_type] = STATE(687), - [sym_scalar_type] = STATE(687), - [sym_boolean_type] = STATE(687), - [sym_address_type] = STATE(687), - [sym_record_type] = STATE(687), - [sym_named_type] = STATE(633), - [sym_affine_group_literal] = STATE(210), - [sym_variable] = STATE(210), - [sym_associated_constant] = STATE(210), - [sym_free_function_call] = STATE(210), - [sym_associated_function_call] = STATE(210), - [sym_unit_expression] = STATE(210), - [sym_tuple_expression] = STATE(210), - [sym_struct_expression] = STATE(210), - [sym_self_caller] = STATE(210), - [sym_block_height] = STATE(210), - [sym__postfix_expression] = STATE(634), - [sym_tuple_component_expression] = STATE(210), - [sym_struct_component_expression] = STATE(210), - [sym_method_call] = STATE(210), - [sym__expression] = STATE(178), - [sym_ternary_expression] = STATE(237), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(349), + [sym_ternary_expression] = STATE(300), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_address] = ACTIONS(9), - [anon_sym_block] = ACTIONS(17), - [anon_sym_bool] = ACTIONS(19), - [anon_sym_field] = ACTIONS(23), - [anon_sym_group] = ACTIONS(27), - [anon_sym_i8] = ACTIONS(29), - [anon_sym_i16] = ACTIONS(29), - [anon_sym_i32] = ACTIONS(29), - [anon_sym_i64] = ACTIONS(29), - [anon_sym_i128] = ACTIONS(29), - [anon_sym_scalar] = ACTIONS(37), - [anon_sym_self] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [aux_sym_constant_identifier_token1] = ACTIONS(43), - [aux_sym_variable_identifier_token1] = ACTIONS(45), - [sym__numeral] = ACTIONS(47), - [anon_sym_true] = ACTIONS(49), - [anon_sym_false] = ACTIONS(49), - [anon_sym_aleo1] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(55), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), + }, + [123] = { + [sym_comment] = STATE(123), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(396), + [sym_ternary_expression] = STATE(300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), + }, + [124] = { + [sym_comment] = STATE(124), + [sym_constant_identifier] = STATE(332), + [sym_variable_identifier] = STATE(332), + [sym_identifier] = STATE(543), + [sym_unsigned_literal] = STATE(289), + [sym_signed_literal] = STATE(289), + [sym_field_literal] = STATE(289), + [sym_product_group_literal] = STATE(289), + [sym_scalar_literal] = STATE(289), + [sym_boolean_literal] = STATE(289), + [sym_address_literal] = STATE(289), + [sym_signature_literal] = STATE(289), + [sym_program_name_literal] = STATE(718), + [sym_program_id] = STATE(689), + [sym_locator] = STATE(561), + [sym_unsigned_type] = STATE(657), + [sym_signed_type] = STATE(657), + [sym_integer_type] = STATE(658), + [sym_field_type] = STATE(658), + [sym_group_type] = STATE(658), + [sym_scalar_type] = STATE(658), + [sym_boolean_type] = STATE(658), + [sym_address_type] = STATE(658), + [sym_record_type] = STATE(658), + [sym_named_type] = STATE(656), + [sym_affine_group_literal] = STATE(289), + [sym_variable] = STATE(289), + [sym_associated_constant] = STATE(289), + [sym_free_function_call] = STATE(289), + [sym_associated_function_call] = STATE(289), + [sym_unit_expression] = STATE(289), + [sym_tuple_expression] = STATE(289), + [sym_array_expression] = STATE(289), + [sym_struct_expression] = STATE(289), + [sym_self_caller] = STATE(289), + [sym_block_height] = STATE(289), + [sym__postfix_expression] = STATE(655), + [sym_tuple_component_expression] = STATE(289), + [sym_struct_component_expression] = STATE(289), + [sym_method_call] = STATE(289), + [sym__expression] = STATE(388), + [sym_ternary_expression] = STATE(300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_address] = ACTIONS(95), + [anon_sym_block] = ACTIONS(163), + [anon_sym_bool] = ACTIONS(105), + [anon_sym_field] = ACTIONS(109), + [anon_sym_group] = ACTIONS(113), + [anon_sym_i8] = ACTIONS(115), + [anon_sym_i16] = ACTIONS(115), + [anon_sym_i32] = ACTIONS(115), + [anon_sym_i64] = ACTIONS(115), + [anon_sym_i128] = ACTIONS(115), + [anon_sym_scalar] = ACTIONS(123), + [anon_sym_self] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(127), + [anon_sym_u16] = ACTIONS(127), + [anon_sym_u32] = ACTIONS(127), + [anon_sym_u64] = ACTIONS(127), + [anon_sym_u128] = ACTIONS(127), + [aux_sym_constant_identifier_token1] = ACTIONS(167), + [aux_sym_variable_identifier_token1] = ACTIONS(171), + [sym__numeral] = ACTIONS(199), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_aleo1] = ACTIONS(177), + [anon_sym_sign] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(189), + [sym_signature_type] = ACTIONS(151), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 7, + [0] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(125), 2, + sym_comment, + aux_sym_constant_identifier_repeat1, + ACTIONS(231), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(229), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(234), 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_QMARK, + [56] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(125), 1, + aux_sym_constant_identifier_repeat1, + STATE(126), 1, + sym_comment, + ACTIONS(238), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(236), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(240), 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_QMARK, + [114] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(246), 1, + anon_sym_DOT, + STATE(127), 1, + sym_comment, + STATE(128), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(238), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(242), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(244), 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_QMARK, + [174] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(253), 1, + anon_sym_DOT, + STATE(125), 1, + aux_sym_constant_identifier_repeat1, + STATE(128), 1, + sym_comment, + ACTIONS(238), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(249), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(251), 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_QMARK, + [234] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(126), 1, + aux_sym_constant_identifier_repeat1, + STATE(129), 1, + sym_comment, + ACTIONS(238), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(256), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(258), 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_QMARK, + [292] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(130), 1, + sym_comment, + ACTIONS(260), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(262), 26, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_QMARK, + [345] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(131), 1, + sym_comment, + STATE(138), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(238), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(242), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(244), 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [401] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(132), 1, + sym_comment, + STATE(623), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(264), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [487] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(133), 1, + sym_comment, + STATE(622), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(272), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [573] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(134), 1, + sym_comment, + STATE(613), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(274), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [659] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(135), 1, + sym_comment, + STATE(616), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(276), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [745] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(136), 1, + sym_comment, + STATE(600), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(278), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [831] = 21, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(216), 1, - anon_sym_DOT, - STATE(123), 1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(137), 1, sym_comment, - STATE(127), 1, + STATE(593), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(280), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [917] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(125), 1, aux_sym_constant_identifier_repeat1, - ACTIONS(212), 3, + STATE(138), 1, + sym_comment, + ACTIONS(238), 3, aux_sym_decimal_digit_token1, aux_sym_constant_identifier_token2, anon_sym__, - ACTIONS(210), 16, + ACTIONS(249), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -14106,7 +16585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(214), 22, + ACTIONS(251), 21, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -14125,22 +16604,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOT, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_QMARK, - [60] = 6, + [973] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(139), 1, + sym_comment, + ACTIONS(284), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(282), 37, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_else, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [1024] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(290), 1, + anon_sym_else, + STATE(140), 1, + sym_comment, + ACTIONS(288), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(286), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [1077] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(141), 1, + sym_comment, + ACTIONS(294), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(292), 37, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_else, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [1128] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(142), 1, + sym_comment, + ACTIONS(298), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(296), 37, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_else, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [1179] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(124), 1, - sym_comment, - STATE(126), 1, - aux_sym_constant_identifier_repeat1, - ACTIONS(212), 3, + ACTIONS(302), 1, aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(219), 16, + STATE(143), 1, + sym_comment, + STATE(163), 1, + aux_sym_tuple_index_repeat1, + STATE(196), 1, + sym_decimal_digit, + ACTIONS(300), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -14157,7 +16824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(221), 23, + ACTIONS(304), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -14175,129 +16842,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_DOT, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_QMARK, - [118] = 6, + [1235] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(124), 1, - aux_sym_constant_identifier_repeat1, - STATE(125), 1, + STATE(144), 1, sym_comment, - ACTIONS(212), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(223), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(308), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(306), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(225), 23, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_QMARK, - [176] = 5, + anon_sym_RBRACE, + sym_signature_type, + [1285] = 21, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(126), 2, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + ACTIONS(310), 1, + anon_sym_RPAREN, + STATE(145), 1, sym_comment, - aux_sym_constant_identifier_repeat1, - ACTIONS(229), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(227), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + STATE(618), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [1369] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(146), 1, + sym_comment, + ACTIONS(314), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(312), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(232), 23, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_QMARK, - [232] = 7, + anon_sym_RBRACE, + sym_signature_type, + [1419] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(238), 1, - anon_sym_DOT, - STATE(126), 1, - aux_sym_constant_identifier_repeat1, - STATE(127), 1, + STATE(147), 1, sym_comment, - ACTIONS(212), 3, + ACTIONS(318), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(316), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [1469] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(322), 1, aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(234), 16, + STATE(196), 1, + sym_decimal_digit, + STATE(148), 2, + sym_comment, + aux_sym_tuple_index_repeat1, + ACTIONS(320), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -14314,7 +17073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(236), 22, + ACTIONS(325), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -14332,72 +17091,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_DOT, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_QMARK, - [292] = 4, + [1523] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(128), 1, + STATE(149), 1, sym_comment, - ACTIONS(241), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(284), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(282), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [1573] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(150), 1, + sym_comment, + ACTIONS(329), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(327), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [1623] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(151), 1, + sym_comment, + ACTIONS(333), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(331), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [1673] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + ACTIONS(335), 1, + anon_sym_RPAREN, + STATE(152), 1, + sym_comment, + STATE(594), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [1757] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(153), 1, + sym_comment, + ACTIONS(339), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(337), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [1807] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(154), 1, + sym_comment, + ACTIONS(343), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(341), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(243), 26, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_QMARK, - [345] = 6, + anon_sym_RBRACE, + sym_signature_type, + [1857] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(126), 1, - aux_sym_constant_identifier_repeat1, - STATE(129), 1, + STATE(155), 1, sym_comment, - ACTIONS(212), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(234), 16, + ACTIONS(349), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(345), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -14414,7 +17413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(236), 21, + ACTIONS(347), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -14432,323 +17431,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [401] = 6, + [1909] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(129), 1, - aux_sym_constant_identifier_repeat1, - STATE(130), 1, + STATE(156), 1, sym_comment, - ACTIONS(212), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(210), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(353), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(351), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(214), 21, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [457] = 7, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [1959] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(247), 1, - aux_sym_decimal_digit_token1, - STATE(131), 1, + STATE(157), 1, sym_comment, - STATE(134), 1, - aux_sym_tuple_index_repeat1, - STATE(144), 1, - sym_decimal_digit, - ACTIONS(245), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(357), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(355), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(249), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [513] = 6, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [2009] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(253), 1, - aux_sym_decimal_digit_token1, - STATE(144), 1, - sym_decimal_digit, - STATE(132), 2, + STATE(158), 1, sym_comment, - aux_sym_tuple_index_repeat1, - ACTIONS(251), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(256), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [567] = 5, + ACTIONS(361), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(359), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [2059] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(133), 1, + STATE(159), 1, sym_comment, - ACTIONS(262), 3, + ACTIONS(365), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(363), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(258), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(260), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [619] = 7, + anon_sym_RBRACE, + sym_signature_type, + [2109] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(247), 1, - aux_sym_decimal_digit_token1, - STATE(132), 1, - aux_sym_tuple_index_repeat1, - STATE(134), 1, + STATE(160), 1, sym_comment, - STATE(144), 1, - sym_decimal_digit, - ACTIONS(264), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(369), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(367), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(266), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [675] = 19, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [2159] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, + STATE(161), 1, + sym_comment, + ACTIONS(373), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(371), 36, anon_sym_address, - ACTIONS(19), 1, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, anon_sym_bool, - ACTIONS(23), 1, + anon_sym_console, anon_sym_field, - ACTIONS(27), 1, + anon_sym_for, anon_sym_group, - ACTIONS(37), 1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_if, + anon_sym_let, + anon_sym_return, anon_sym_scalar, - ACTIONS(152), 1, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, anon_sym_LPAREN, - STATE(135), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [2209] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(162), 1, sym_comment, - STATE(583), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(268), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - ACTIONS(29), 5, + ACTIONS(298), 3, + anon_sym_assert, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(296), 36, + anon_sym_address, + anon_sym_assert_eq, + anon_sym_assert_neq, + anon_sym_block, + anon_sym_bool, + anon_sym_console, + anon_sym_field, + anon_sym_for, + anon_sym_group, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - ACTIONS(41), 5, + anon_sym_if, + anon_sym_let, + anon_sym_return, + anon_sym_scalar, + anon_sym_self, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [754] = 6, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_signature_type, + [2259] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - STATE(136), 1, + ACTIONS(302), 1, + aux_sym_decimal_digit_token1, + STATE(148), 1, + aux_sym_tuple_index_repeat1, + STATE(163), 1, sym_comment, - STATE(201), 1, - sym_function_arguments, - ACTIONS(272), 16, + STATE(196), 1, + sym_decimal_digit, + ACTIONS(375), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -14765,7 +17784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(274), 20, + ACTIONS(377), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -14786,56 +17805,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [807] = 19, + [2315] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, + ACTIONS(95), 1, anon_sym_address, - ACTIONS(19), 1, + ACTIONS(105), 1, anon_sym_bool, - ACTIONS(23), 1, + ACTIONS(109), 1, anon_sym_field, - ACTIONS(27), 1, + ACTIONS(113), 1, anon_sym_group, - ACTIONS(37), 1, + ACTIONS(123), 1, anon_sym_scalar, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(156), 1, + ACTIONS(171), 1, aux_sym_variable_identifier_token1, - ACTIONS(270), 1, + ACTIONS(266), 1, anon_sym_LPAREN, - STATE(137), 1, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(164), 1, sym_comment, - STATE(592), 1, + STATE(620), 1, sym_type, - STATE(638), 1, + STATE(689), 1, sym_program_id, - STATE(698), 1, + STATE(718), 1, sym_program_name_literal, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - STATE(449), 2, + STATE(460), 2, sym_identifier, sym_locator, - ACTIONS(278), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - ACTIONS(29), 5, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - ACTIONS(41), 5, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - STATE(476), 10, + STATE(494), 11, sym_unsigned_type, sym_signed_type, sym_field_type, @@ -14846,16 +17865,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unit_type, sym_record_type, sym_tuple_type, - [886] = 6, + sym_array_type, + [2396] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - STATE(138), 1, + STATE(165), 1, sym_comment, - STATE(194), 1, - sym_function_arguments, - ACTIONS(280), 16, + ACTIONS(379), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -14872,7 +17888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(282), 20, + ACTIONS(349), 22, + anon_sym_in, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -14890,59 +17907,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [939] = 19, + [2445] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, + ACTIONS(95), 1, anon_sym_address, - ACTIONS(19), 1, + ACTIONS(105), 1, anon_sym_bool, - ACTIONS(23), 1, + ACTIONS(109), 1, anon_sym_field, - ACTIONS(27), 1, + ACTIONS(113), 1, anon_sym_group, - ACTIONS(37), 1, + ACTIONS(123), 1, anon_sym_scalar, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(156), 1, + ACTIONS(171), 1, aux_sym_variable_identifier_token1, - ACTIONS(270), 1, + ACTIONS(266), 1, anon_sym_LPAREN, - STATE(139), 1, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(166), 1, sym_comment, - STATE(606), 1, + STATE(604), 1, sym_type, - STATE(638), 1, + STATE(689), 1, sym_program_id, - STATE(698), 1, + STATE(718), 1, sym_program_name_literal, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - STATE(449), 2, + STATE(460), 2, sym_identifier, sym_locator, - ACTIONS(284), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - ACTIONS(29), 5, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - ACTIONS(41), 5, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - STATE(476), 10, + STATE(494), 11, sym_unsigned_type, sym_signed_type, sym_field_type, @@ -14953,56 +17971,57 @@ static const uint16_t ts_small_parse_table[] = { sym_unit_type, sym_record_type, sym_tuple_type, - [1018] = 19, + sym_array_type, + [2526] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, + ACTIONS(95), 1, anon_sym_address, - ACTIONS(19), 1, + ACTIONS(105), 1, anon_sym_bool, - ACTIONS(23), 1, + ACTIONS(109), 1, anon_sym_field, - ACTIONS(27), 1, + ACTIONS(113), 1, anon_sym_group, - ACTIONS(37), 1, + ACTIONS(123), 1, anon_sym_scalar, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(156), 1, + ACTIONS(171), 1, aux_sym_variable_identifier_token1, - ACTIONS(270), 1, + ACTIONS(266), 1, anon_sym_LPAREN, - STATE(140), 1, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(167), 1, sym_comment, - STATE(611), 1, + STATE(597), 1, sym_type, - STATE(638), 1, + STATE(689), 1, sym_program_id, - STATE(698), 1, + STATE(718), 1, sym_program_name_literal, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - STATE(449), 2, + STATE(460), 2, sym_identifier, sym_locator, - ACTIONS(286), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - ACTIONS(29), 5, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - ACTIONS(41), 5, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - STATE(476), 10, + STATE(494), 11, sym_unsigned_type, sym_signed_type, sym_field_type, @@ -15013,12 +18032,17 @@ static const uint16_t ts_small_parse_table[] = { sym_unit_type, sym_record_type, sym_tuple_type, - [1097] = 4, + sym_array_type, + [2607] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(141), 1, + ACTIONS(385), 1, + anon_sym_LPAREN, + STATE(168), 1, sym_comment, - ACTIONS(288), 16, + STATE(253), 1, + sym_function_arguments, + ACTIONS(381), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -15035,8 +18059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(262), 22, - anon_sym_in, + ACTIONS(383), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -15054,60 +18077,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [1146] = 19, + [2660] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, + ACTIONS(95), 1, anon_sym_address, - ACTIONS(19), 1, + ACTIONS(105), 1, anon_sym_bool, - ACTIONS(23), 1, + ACTIONS(109), 1, anon_sym_field, - ACTIONS(27), 1, + ACTIONS(113), 1, anon_sym_group, - ACTIONS(37), 1, + ACTIONS(123), 1, anon_sym_scalar, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(156), 1, + ACTIONS(171), 1, aux_sym_variable_identifier_token1, - ACTIONS(270), 1, + ACTIONS(266), 1, anon_sym_LPAREN, - STATE(142), 1, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(169), 1, sym_comment, - STATE(597), 1, + STATE(614), 1, sym_type, - STATE(638), 1, + STATE(689), 1, sym_program_id, - STATE(698), 1, + STATE(718), 1, sym_program_name_literal, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - STATE(449), 2, + STATE(460), 2, sym_identifier, sym_locator, - ACTIONS(290), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - ACTIONS(29), 5, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - ACTIONS(41), 5, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - STATE(476), 10, + STATE(494), 11, sym_unsigned_type, sym_signed_type, sym_field_type, @@ -15118,56 +18140,57 @@ static const uint16_t ts_small_parse_table[] = { sym_unit_type, sym_record_type, sym_tuple_type, - [1225] = 19, + sym_array_type, + [2741] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, + ACTIONS(95), 1, anon_sym_address, - ACTIONS(19), 1, + ACTIONS(105), 1, anon_sym_bool, - ACTIONS(23), 1, + ACTIONS(109), 1, anon_sym_field, - ACTIONS(27), 1, + ACTIONS(113), 1, anon_sym_group, - ACTIONS(37), 1, + ACTIONS(123), 1, anon_sym_scalar, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(156), 1, + ACTIONS(171), 1, aux_sym_variable_identifier_token1, - ACTIONS(270), 1, + ACTIONS(266), 1, anon_sym_LPAREN, - STATE(143), 1, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(170), 1, sym_comment, - STATE(609), 1, + STATE(618), 1, sym_type, - STATE(638), 1, + STATE(689), 1, sym_program_id, - STATE(698), 1, + STATE(718), 1, sym_program_name_literal, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - STATE(449), 2, + STATE(460), 2, sym_identifier, sym_locator, - ACTIONS(292), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - ACTIONS(29), 5, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - ACTIONS(41), 5, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - STATE(476), 10, + STATE(494), 11, sym_unsigned_type, sym_signed_type, sym_field_type, @@ -15178,56 +18201,13 @@ static const uint16_t ts_small_parse_table[] = { sym_unit_type, sym_record_type, sym_tuple_type, - [1304] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(144), 1, - sym_comment, - ACTIONS(294), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(296), 21, - aux_sym_decimal_digit_token1, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [1352] = 4, + sym_array_type, + [2822] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(145), 1, + STATE(171), 1, sym_comment, - ACTIONS(288), 9, + ACTIONS(379), 9, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -15237,7 +18217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_COLON, - ACTIONS(262), 28, + ACTIONS(349), 29, anon_sym_function, anon_sym_inline, anon_sym_then, @@ -15258,6 +18238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -15266,779 +18247,1114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_QMARK, anon_sym_EQ_GT, - [1400] = 4, + [2871] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(146), 1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + ACTIONS(387), 1, + aux_sym_constant_identifier_token1, + ACTIONS(389), 1, + aux_sym_variable_identifier_token1, + STATE(172), 1, sym_comment, - ACTIONS(300), 2, - anon_sym_assert, + STATE(642), 1, + sym_program_id, + STATE(671), 1, + sym_type, + STATE(718), 1, + sym_program_name_literal, + STATE(165), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [2952] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, aux_sym_variable_identifier_token1, - ACTIONS(298), 35, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(173), 1, + sym_comment, + STATE(601), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3033] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(174), 1, + sym_comment, + STATE(672), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3114] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, anon_sym_bool, - anon_sym_console, - anon_sym_else, + ACTIONS(109), 1, anon_sym_field, - anon_sym_for, + ACTIONS(113), 1, anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(175), 1, + sym_comment, + STATE(626), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [1448] = 4, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3195] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(147), 1, - sym_comment, - ACTIONS(304), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(302), 35, + ACTIONS(95), 1, anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, + ACTIONS(105), 1, anon_sym_bool, - anon_sym_console, - anon_sym_else, + ACTIONS(109), 1, anon_sym_field, - anon_sym_for, + ACTIONS(113), 1, anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(176), 1, + sym_comment, + STATE(602), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [1496] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(148), 1, - sym_comment, - ACTIONS(306), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(308), 21, - aux_sym_decimal_digit_token1, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [1544] = 4, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3276] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(149), 1, - sym_comment, - ACTIONS(312), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(310), 35, + ACTIONS(95), 1, anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, + ACTIONS(105), 1, anon_sym_bool, - anon_sym_console, - anon_sym_else, + ACTIONS(109), 1, anon_sym_field, - anon_sym_for, + ACTIONS(113), 1, anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(177), 1, + sym_comment, + STATE(621), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [1592] = 27, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3357] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, - anon_sym_STAR, - ACTIONS(316), 1, - anon_sym_SLASH, - ACTIONS(318), 1, - anon_sym_AMP_AMP, - ACTIONS(320), 1, - anon_sym_PIPE_PIPE, - ACTIONS(322), 1, - anon_sym_EQ_EQ, - ACTIONS(324), 1, - anon_sym_BANG_EQ, - ACTIONS(326), 1, - anon_sym_LT, - ACTIONS(328), 1, - anon_sym_LT_EQ, - ACTIONS(330), 1, - anon_sym_GT, - ACTIONS(332), 1, - anon_sym_GT_EQ, - ACTIONS(334), 1, - anon_sym_AMP, - ACTIONS(336), 1, - anon_sym_PIPE, - ACTIONS(338), 1, - anon_sym_CARET, - ACTIONS(340), 1, - anon_sym_LT_LT, - ACTIONS(342), 1, - anon_sym_GT_GT, - ACTIONS(344), 1, - anon_sym_PLUS, - ACTIONS(346), 1, - anon_sym_DASH, - ACTIONS(348), 1, - anon_sym_PERCENT, - ACTIONS(350), 1, - anon_sym_STAR_STAR, - ACTIONS(352), 1, - anon_sym_EQ, - ACTIONS(356), 1, - anon_sym_SEMI, - ACTIONS(358), 1, - anon_sym_QMARK, - STATE(39), 1, - sym_assignment_operator, - STATE(86), 1, - sym_ternary_if, - STATE(150), 1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(178), 1, sym_comment, - ACTIONS(354), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - [1686] = 5, + STATE(676), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3438] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(364), 1, - anon_sym_else, - STATE(151), 1, - sym_comment, - ACTIONS(362), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(360), 34, + ACTIONS(95), 1, anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, + ACTIONS(105), 1, anon_sym_bool, - anon_sym_console, + ACTIONS(109), 1, anon_sym_field, - anon_sym_for, + ACTIONS(113), 1, anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(179), 1, + sym_comment, + STATE(603), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [1736] = 4, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3519] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(152), 1, - sym_comment, - ACTIONS(300), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(298), 34, + ACTIONS(95), 1, anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, + ACTIONS(105), 1, anon_sym_bool, - anon_sym_console, + ACTIONS(109), 1, anon_sym_field, - anon_sym_for, + ACTIONS(113), 1, anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(180), 1, + sym_comment, + STATE(615), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [1783] = 4, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3600] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(153), 1, - sym_comment, - ACTIONS(368), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(366), 34, + ACTIONS(95), 1, anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, + ACTIONS(105), 1, anon_sym_bool, - anon_sym_console, + ACTIONS(109), 1, anon_sym_field, - anon_sym_for, + ACTIONS(113), 1, anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(181), 1, + sym_comment, + STATE(605), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3681] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [1830] = 5, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(182), 1, + sym_comment, + STATE(599), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3762] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(154), 2, - sym_comment, - aux_sym_constant_identifier_repeat1, - ACTIONS(370), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(227), 9, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(232), 23, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_QMARK, - anon_sym_EQ_GT, - [1879] = 4, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(183), 1, + sym_comment, + STATE(612), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3843] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(155), 1, - sym_comment, - ACTIONS(312), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(310), 34, + ACTIONS(95), 1, anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, + ACTIONS(105), 1, anon_sym_bool, - anon_sym_console, + ACTIONS(109), 1, anon_sym_field, - anon_sym_for, + ACTIONS(113), 1, anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(184), 1, + sym_comment, + STATE(627), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [1926] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(156), 1, - sym_comment, - ACTIONS(373), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(375), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [1973] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(157), 1, - sym_comment, - ACTIONS(377), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(379), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [2020] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(385), 1, - anon_sym_DOT, - STATE(158), 1, - sym_comment, - ACTIONS(381), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(383), 19, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - [2069] = 4, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [3924] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(159), 1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(185), 1, sym_comment, - ACTIONS(387), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(389), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [2116] = 4, + STATE(619), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [4005] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(160), 1, - sym_comment, - ACTIONS(393), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(391), 34, + ACTIONS(95), 1, anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, + ACTIONS(105), 1, anon_sym_bool, - anon_sym_console, + ACTIONS(109), 1, anon_sym_field, - anon_sym_for, + ACTIONS(113), 1, anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(186), 1, + sym_comment, + STATE(595), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [4086] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [2163] = 4, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(187), 1, + sym_comment, + STATE(688), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [4167] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(161), 1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(188), 1, sym_comment, - ACTIONS(245), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(249), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [2210] = 4, + STATE(624), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [4248] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(162), 1, + ACTIONS(95), 1, + anon_sym_address, + ACTIONS(105), 1, + anon_sym_bool, + ACTIONS(109), 1, + anon_sym_field, + ACTIONS(113), 1, + anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(189), 1, sym_comment, - ACTIONS(395), 16, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ, - ACTIONS(397), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [2257] = 6, + STATE(683), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(127), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [4329] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(350), 1, - anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(163), 1, + ACTIONS(385), 1, + anon_sym_LPAREN, + STATE(190), 1, sym_comment, - ACTIONS(399), 15, + STATE(246), 1, + sym_function_arguments, + ACTIONS(391), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -16053,8 +19369,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(401), 19, + ACTIONS(393), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -16072,370 +19389,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [2308] = 4, + [4382] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(164), 1, - sym_comment, - ACTIONS(405), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(403), 34, + ACTIONS(95), 1, anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, + ACTIONS(105), 1, anon_sym_bool, - anon_sym_console, + ACTIONS(109), 1, anon_sym_field, - anon_sym_for, + ACTIONS(113), 1, anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, + ACTIONS(123), 1, anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [2355] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(165), 1, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(191), 1, sym_comment, - ACTIONS(409), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(407), 34, - anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, - anon_sym_bool, - anon_sym_console, - anon_sym_field, - anon_sym_for, - anon_sym_group, + STATE(645), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [2402] = 4, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [4463] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(166), 1, - sym_comment, - ACTIONS(413), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(411), 34, + ACTIONS(95), 1, anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, + ACTIONS(105), 1, anon_sym_bool, - anon_sym_console, + ACTIONS(109), 1, anon_sym_field, - anon_sym_for, + ACTIONS(113), 1, anon_sym_group, + ACTIONS(123), 1, + anon_sym_scalar, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(171), 1, + aux_sym_variable_identifier_token1, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + sym_signature_type, + STATE(192), 1, + sym_comment, + STATE(617), 1, + sym_type, + STATE(689), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + STATE(460), 2, + sym_identifier, + sym_locator, + ACTIONS(115), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, + ACTIONS(127), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [2449] = 6, + STATE(494), 11, + sym_unsigned_type, + sym_signed_type, + sym_field_type, + sym_group_type, + sym_scalar_type, + sym_boolean_type, + sym_address_type, + sym_unit_type, + sym_record_type, + sym_tuple_type, + sym_array_type, + [4544] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(350), 1, - anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(167), 1, + STATE(193), 1, sym_comment, - ACTIONS(399), 15, + STATE(194), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(395), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(242), 9, anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, anon_sym_EQ, - ACTIONS(401), 19, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - [2500] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(314), 1, - anon_sym_STAR, - ACTIONS(316), 1, - anon_sym_SLASH, - ACTIONS(322), 1, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(244), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, - ACTIONS(324), 1, anon_sym_BANG_EQ, - ACTIONS(326), 1, - anon_sym_LT, - ACTIONS(328), 1, anon_sym_LT_EQ, - ACTIONS(330), 1, - anon_sym_GT, - ACTIONS(332), 1, anon_sym_GT_EQ, - ACTIONS(334), 1, - anon_sym_AMP, - ACTIONS(336), 1, - anon_sym_PIPE, - ACTIONS(338), 1, anon_sym_CARET, - ACTIONS(340), 1, anon_sym_LT_LT, - ACTIONS(342), 1, anon_sym_GT_GT, - ACTIONS(344), 1, anon_sym_PLUS, - ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(348), 1, anon_sym_PERCENT, - ACTIONS(350), 1, anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(168), 1, - sym_comment, - ACTIONS(415), 3, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - ACTIONS(417), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_QMARK, - [2583] = 23, + anon_sym_EQ_GT, + [4596] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + STATE(194), 1, + sym_comment, + STATE(201), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(395), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(249), 9, anon_sym_STAR, - ACTIONS(316), 1, anon_sym_SLASH, - ACTIONS(318), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(251), 24, anon_sym_AMP_AMP, - ACTIONS(322), 1, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, - ACTIONS(324), 1, anon_sym_BANG_EQ, - ACTIONS(326), 1, - anon_sym_LT, - ACTIONS(328), 1, anon_sym_LT_EQ, - ACTIONS(330), 1, - anon_sym_GT, - ACTIONS(332), 1, anon_sym_GT_EQ, - ACTIONS(334), 1, - anon_sym_AMP, - ACTIONS(336), 1, - anon_sym_PIPE, - ACTIONS(338), 1, anon_sym_CARET, - ACTIONS(340), 1, anon_sym_LT_LT, - ACTIONS(342), 1, anon_sym_GT_GT, - ACTIONS(344), 1, anon_sym_PLUS, - ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(348), 1, anon_sym_PERCENT, - ACTIONS(350), 1, anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(169), 1, - sym_comment, - ACTIONS(419), 2, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - ACTIONS(421), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_QMARK, - [2668] = 20, + anon_sym_EQ_GT, + [4648] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + STATE(195), 1, + sym_comment, + STATE(198), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(395), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(256), 9, anon_sym_STAR, - ACTIONS(316), 1, anon_sym_SLASH, - ACTIONS(326), 1, anon_sym_LT, - ACTIONS(328), 1, - anon_sym_LT_EQ, - ACTIONS(330), 1, anon_sym_GT, - ACTIONS(332), 1, - anon_sym_GT_EQ, - ACTIONS(334), 1, anon_sym_AMP, - ACTIONS(336), 1, anon_sym_PIPE, - ACTIONS(338), 1, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(258), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(340), 1, anon_sym_LT_LT, - ACTIONS(342), 1, anon_sym_GT_GT, - ACTIONS(344), 1, anon_sym_PLUS, - ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(348), 1, anon_sym_PERCENT, - ACTIONS(350), 1, anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(170), 1, - sym_comment, - ACTIONS(423), 3, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - ACTIONS(425), 17, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_QMARK, - [2747] = 4, + anon_sym_EQ_GT, + [4700] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(171), 1, + STATE(196), 1, sym_comment, - ACTIONS(427), 16, + ACTIONS(397), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -16452,7 +19674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(429), 20, + ACTIONS(399), 21, + aux_sym_decimal_digit_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -16473,63 +19696,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [2794] = 4, + [4748] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(172), 1, + ACTIONS(401), 1, + anon_sym_DOT, + STATE(197), 1, sym_comment, - ACTIONS(433), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(431), 34, - anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, - anon_sym_bool, - anon_sym_console, - anon_sym_field, - anon_sym_for, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, + STATE(199), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(395), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(242), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(244), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - [2841] = 4, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_QMARK, + anon_sym_EQ_GT, + [4802] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(173), 1, + STATE(198), 1, sym_comment, - ACTIONS(435), 16, + STATE(201), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(395), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(236), 9, anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(240), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, @@ -16537,57 +19778,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_QMARK, + anon_sym_EQ_GT, + [4854] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(404), 1, + anon_sym_DOT, + STATE(199), 1, + sym_comment, + STATE(201), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(395), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(249), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ, - ACTIONS(437), 20, + anon_sym_COLON, + ACTIONS(251), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_QMARK, - [2888] = 5, + anon_sym_EQ_GT, + [4908] = 27, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(86), 1, - sym_ternary_if, - STATE(174), 1, - sym_comment, - ACTIONS(439), 16, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, + ACTIONS(411), 1, anon_sym_AMP_AMP, + ACTIONS(413), 1, anon_sym_PIPE_PIPE, + ACTIONS(415), 1, + anon_sym_EQ_EQ, + ACTIONS(417), 1, + anon_sym_BANG_EQ, + ACTIONS(419), 1, anon_sym_LT, + ACTIONS(421), 1, + anon_sym_LT_EQ, + ACTIONS(423), 1, anon_sym_GT, + ACTIONS(425), 1, + anon_sym_GT_EQ, + ACTIONS(427), 1, anon_sym_AMP, + ACTIONS(429), 1, anon_sym_PIPE, + ACTIONS(431), 1, anon_sym_CARET, + ACTIONS(433), 1, anon_sym_LT_LT, + ACTIONS(435), 1, anon_sym_GT_GT, + ACTIONS(437), 1, anon_sym_PLUS, + ACTIONS(439), 1, anon_sym_DASH, + ACTIONS(441), 1, anon_sym_PERCENT, + ACTIONS(443), 1, anon_sym_STAR_STAR, + ACTIONS(445), 1, anon_sym_EQ, - ACTIONS(441), 19, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(449), 1, + anon_sym_SEMI, + ACTIONS(451), 1, + anon_sym_QMARK, + STATE(25), 1, + sym_ternary_if, + STATE(108), 1, + sym_assignment_operator, + STATE(200), 1, + sym_comment, + ACTIONS(447), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16597,61 +19899,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - [2937] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(175), 1, - sym_comment, - ACTIONS(445), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(443), 34, - anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, - anon_sym_bool, - anon_sym_console, - anon_sym_field, - anon_sym_for, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + [5002] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(201), 2, + sym_comment, + aux_sym_constant_identifier_repeat1, + ACTIONS(453), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + ACTIONS(229), 9, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(234), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - [2984] = 4, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_QMARK, + anon_sym_EQ_GT, + [5052] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(176), 1, + STATE(202), 1, sym_comment, - ACTIONS(447), 16, + ACTIONS(456), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -16668,7 +19970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(449), 20, + ACTIONS(458), 21, + aux_sym_decimal_digit_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -16689,93 +19992,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3031] = 4, + [5100] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(177), 1, + STATE(203), 1, sym_comment, - ACTIONS(453), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(451), 34, - anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, - anon_sym_bool, - anon_sym_console, - anon_sym_field, - anon_sym_for, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [3078] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(314), 1, + ACTIONS(460), 16, anon_sym_STAR, - ACTIONS(316), 1, anon_sym_SLASH, - ACTIONS(326), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, - ACTIONS(328), 1, - anon_sym_LT_EQ, - ACTIONS(330), 1, anon_sym_GT, - ACTIONS(332), 1, - anon_sym_GT_EQ, - ACTIONS(334), 1, anon_sym_AMP, - ACTIONS(336), 1, anon_sym_PIPE, - ACTIONS(338), 1, anon_sym_CARET, - ACTIONS(340), 1, anon_sym_LT_LT, - ACTIONS(342), 1, anon_sym_GT_GT, - ACTIONS(344), 1, anon_sym_PLUS, - ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(348), 1, anon_sym_PERCENT, - ACTIONS(350), 1, anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(178), 1, - sym_comment, - ACTIONS(423), 3, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_EQ, - ACTIONS(425), 17, + ACTIONS(462), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16789,31 +20032,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3157] = 4, + [5147] = 15, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(179), 1, - sym_comment, - ACTIONS(455), 16, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(427), 1, anon_sym_AMP, + ACTIONS(429), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(433), 1, anon_sym_LT_LT, + ACTIONS(435), 1, anon_sym_GT_GT, + ACTIONS(437), 1, anon_sym_PLUS, + ACTIONS(439), 1, anon_sym_DASH, + ACTIONS(441), 1, anon_sym_PERCENT, + ACTIONS(443), 1, anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(204), 1, + sym_comment, + ACTIONS(464), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(457), 20, + ACTIONS(466), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -16831,100 +20087,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3204] = 4, + [5216] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(180), 1, + ACTIONS(443), 1, + anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(205), 1, sym_comment, - ACTIONS(461), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(459), 34, - anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, - anon_sym_bool, - anon_sym_console, - anon_sym_field, - anon_sym_for, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [3251] = 24, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(314), 1, + ACTIONS(468), 15, anon_sym_STAR, - ACTIONS(316), 1, anon_sym_SLASH, - ACTIONS(318), 1, anon_sym_AMP_AMP, - ACTIONS(320), 1, anon_sym_PIPE_PIPE, - ACTIONS(322), 1, - anon_sym_EQ_EQ, - ACTIONS(324), 1, - anon_sym_BANG_EQ, - ACTIONS(326), 1, anon_sym_LT, - ACTIONS(328), 1, - anon_sym_LT_EQ, - ACTIONS(330), 1, anon_sym_GT, - ACTIONS(332), 1, - anon_sym_GT_EQ, - ACTIONS(334), 1, anon_sym_AMP, - ACTIONS(336), 1, anon_sym_PIPE, - ACTIONS(338), 1, anon_sym_CARET, - ACTIONS(340), 1, anon_sym_LT_LT, - ACTIONS(342), 1, anon_sym_GT_GT, - ACTIONS(344), 1, anon_sym_PLUS, - ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(348), 1, anon_sym_PERCENT, - ACTIONS(350), 1, - anon_sym_STAR_STAR, - ACTIONS(463), 1, anon_sym_EQ, - STATE(86), 1, - sym_ternary_if, - STATE(181), 1, - sym_comment, - ACTIONS(465), 15, + ACTIONS(470), 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -16940,98 +20134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_SEMI, anon_sym_QMARK, - [3338] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(182), 1, - sym_comment, - ACTIONS(469), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(467), 34, - anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, - anon_sym_bool, - anon_sym_console, - anon_sym_field, - anon_sym_for, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [3385] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(183), 1, - sym_comment, - ACTIONS(473), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(471), 34, - anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, - anon_sym_bool, - anon_sym_console, - anon_sym_field, - anon_sym_for, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [3432] = 4, + [5267] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(184), 1, + ACTIONS(443), 1, + anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(206), 1, sym_comment, - ACTIONS(475), 16, + ACTIONS(468), 15, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -17046,9 +20158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(477), 20, + ACTIONS(470), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17066,36 +20177,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3479] = 4, + [5318] = 22, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(185), 1, - sym_comment, - ACTIONS(479), 16, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(415), 1, + anon_sym_EQ_EQ, + ACTIONS(417), 1, + anon_sym_BANG_EQ, + ACTIONS(419), 1, anon_sym_LT, + ACTIONS(421), 1, + anon_sym_LT_EQ, + ACTIONS(423), 1, anon_sym_GT, + ACTIONS(425), 1, + anon_sym_GT_EQ, + ACTIONS(427), 1, anon_sym_AMP, + ACTIONS(429), 1, anon_sym_PIPE, + ACTIONS(431), 1, anon_sym_CARET, + ACTIONS(433), 1, anon_sym_LT_LT, + ACTIONS(435), 1, anon_sym_GT_GT, + ACTIONS(437), 1, anon_sym_PLUS, + ACTIONS(439), 1, anon_sym_DASH, + ACTIONS(441), 1, anon_sym_PERCENT, + ACTIONS(443), 1, anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(207), 1, + sym_comment, + ACTIONS(472), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ, - ACTIONS(481), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(474), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17109,36 +20238,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3526] = 4, + [5401] = 23, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(186), 1, - sym_comment, - ACTIONS(483), 16, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, + ACTIONS(411), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(415), 1, + anon_sym_EQ_EQ, + ACTIONS(417), 1, + anon_sym_BANG_EQ, + ACTIONS(419), 1, anon_sym_LT, + ACTIONS(421), 1, + anon_sym_LT_EQ, + ACTIONS(423), 1, anon_sym_GT, + ACTIONS(425), 1, + anon_sym_GT_EQ, + ACTIONS(427), 1, anon_sym_AMP, + ACTIONS(429), 1, anon_sym_PIPE, + ACTIONS(431), 1, anon_sym_CARET, + ACTIONS(433), 1, anon_sym_LT_LT, + ACTIONS(435), 1, anon_sym_GT_GT, + ACTIONS(437), 1, anon_sym_PLUS, + ACTIONS(439), 1, anon_sym_DASH, + ACTIONS(441), 1, anon_sym_PERCENT, + ACTIONS(443), 1, anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(208), 1, + sym_comment, + ACTIONS(476), 2, + anon_sym_PIPE_PIPE, anon_sym_EQ, - ACTIONS(485), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(478), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17152,45 +20300,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3573] = 16, + [5486] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + STATE(209), 1, + sym_comment, + ACTIONS(480), 16, anon_sym_STAR, - ACTIONS(316), 1, anon_sym_SLASH, - ACTIONS(334), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(336), 1, anon_sym_PIPE, - ACTIONS(338), 1, anon_sym_CARET, - ACTIONS(340), 1, anon_sym_LT_LT, - ACTIONS(342), 1, anon_sym_GT_GT, - ACTIONS(344), 1, anon_sym_PLUS, - ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(348), 1, anon_sym_PERCENT, - ACTIONS(350), 1, anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(187), 1, - sym_comment, - ACTIONS(487), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ, - ACTIONS(489), 19, + ACTIONS(482), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17208,14 +20342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3644] = 4, + [5533] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(188), 1, + STATE(210), 1, sym_comment, - ACTIONS(491), 16, + ACTIONS(484), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -17232,7 +20367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(493), 20, + ACTIONS(486), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17253,42 +20388,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3691] = 16, + [5580] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + STATE(211), 1, + sym_comment, + ACTIONS(488), 16, anon_sym_STAR, - ACTIONS(316), 1, anon_sym_SLASH, - ACTIONS(334), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(336), 1, anon_sym_PIPE, - ACTIONS(338), 1, anon_sym_CARET, - ACTIONS(340), 1, anon_sym_LT_LT, - ACTIONS(342), 1, anon_sym_GT_GT, - ACTIONS(344), 1, anon_sym_PLUS, - ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(348), 1, anon_sym_PERCENT, - ACTIONS(350), 1, anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(189), 1, - sym_comment, - ACTIONS(487), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ, - ACTIONS(489), 19, + ACTIONS(490), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17306,35 +20428,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3762] = 4, + [5627] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(190), 1, - sym_comment, - ACTIONS(495), 16, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(419), 1, anon_sym_LT, + ACTIONS(421), 1, + anon_sym_LT_EQ, + ACTIONS(423), 1, anon_sym_GT, + ACTIONS(425), 1, + anon_sym_GT_EQ, + ACTIONS(427), 1, anon_sym_AMP, + ACTIONS(429), 1, anon_sym_PIPE, + ACTIONS(431), 1, anon_sym_CARET, + ACTIONS(433), 1, anon_sym_LT_LT, + ACTIONS(435), 1, anon_sym_GT_GT, + ACTIONS(437), 1, anon_sym_PLUS, + ACTIONS(439), 1, anon_sym_DASH, + ACTIONS(441), 1, anon_sym_PERCENT, + ACTIONS(443), 1, anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(212), 1, + sym_comment, + ACTIONS(492), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ, - ACTIONS(497), 20, + ACTIONS(494), 17, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17348,36 +20488,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3809] = 4, + [5706] = 20, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(191), 1, - sym_comment, - ACTIONS(499), 16, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(419), 1, anon_sym_LT, + ACTIONS(421), 1, + anon_sym_LT_EQ, + ACTIONS(423), 1, anon_sym_GT, + ACTIONS(425), 1, + anon_sym_GT_EQ, + ACTIONS(427), 1, anon_sym_AMP, + ACTIONS(429), 1, anon_sym_PIPE, + ACTIONS(431), 1, anon_sym_CARET, + ACTIONS(433), 1, anon_sym_LT_LT, + ACTIONS(435), 1, anon_sym_GT_GT, + ACTIONS(437), 1, anon_sym_PLUS, + ACTIONS(439), 1, anon_sym_DASH, + ACTIONS(441), 1, anon_sym_PERCENT, + ACTIONS(443), 1, anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(213), 1, + sym_comment, + ACTIONS(492), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ, - ACTIONS(501), 20, + ACTIONS(494), 17, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17391,45 +20547,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3856] = 16, + [5785] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + ACTIONS(407), 1, anon_sym_STAR, - ACTIONS(316), 1, + ACTIONS(409), 1, anon_sym_SLASH, - ACTIONS(334), 1, + ACTIONS(427), 1, anon_sym_AMP, - ACTIONS(336), 1, + ACTIONS(429), 1, anon_sym_PIPE, - ACTIONS(338), 1, + ACTIONS(431), 1, anon_sym_CARET, - ACTIONS(340), 1, + ACTIONS(433), 1, anon_sym_LT_LT, - ACTIONS(342), 1, + ACTIONS(435), 1, anon_sym_GT_GT, - ACTIONS(344), 1, + ACTIONS(437), 1, anon_sym_PLUS, - ACTIONS(346), 1, + ACTIONS(439), 1, anon_sym_DASH, - ACTIONS(348), 1, + ACTIONS(441), 1, anon_sym_PERCENT, - ACTIONS(350), 1, + ACTIONS(443), 1, anon_sym_STAR_STAR, - STATE(86), 1, + STATE(25), 1, sym_ternary_if, - STATE(192), 1, + STATE(214), 1, sym_comment, - ACTIONS(487), 5, + ACTIONS(496), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(489), 19, + ACTIONS(498), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17449,33 +20604,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_SEMI, anon_sym_QMARK, - [3927] = 4, + [5856] = 24, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(193), 1, - sym_comment, - ACTIONS(503), 16, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, + ACTIONS(411), 1, anon_sym_AMP_AMP, + ACTIONS(413), 1, anon_sym_PIPE_PIPE, + ACTIONS(415), 1, + anon_sym_EQ_EQ, + ACTIONS(417), 1, + anon_sym_BANG_EQ, + ACTIONS(419), 1, anon_sym_LT, + ACTIONS(421), 1, + anon_sym_LT_EQ, + ACTIONS(423), 1, anon_sym_GT, + ACTIONS(425), 1, + anon_sym_GT_EQ, + ACTIONS(427), 1, anon_sym_AMP, + ACTIONS(429), 1, anon_sym_PIPE, + ACTIONS(431), 1, anon_sym_CARET, + ACTIONS(433), 1, anon_sym_LT_LT, + ACTIONS(435), 1, anon_sym_GT_GT, + ACTIONS(437), 1, anon_sym_PLUS, + ACTIONS(439), 1, anon_sym_DASH, + ACTIONS(441), 1, anon_sym_PERCENT, + ACTIONS(443), 1, anon_sym_STAR_STAR, + ACTIONS(500), 1, anon_sym_EQ, - ACTIONS(505), 20, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + STATE(25), 1, + sym_ternary_if, + STATE(215), 1, + sym_comment, + ACTIONS(502), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -17489,15 +20665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [3974] = 4, + [5943] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(194), 1, + STATE(216), 1, sym_comment, - ACTIONS(507), 16, + ACTIONS(300), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -17514,7 +20689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(509), 20, + ACTIONS(304), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17535,42 +20710,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4021] = 16, + [5990] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + STATE(217), 1, + sym_comment, + ACTIONS(504), 16, anon_sym_STAR, - ACTIONS(316), 1, anon_sym_SLASH, - ACTIONS(334), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(336), 1, anon_sym_PIPE, - ACTIONS(338), 1, anon_sym_CARET, - ACTIONS(340), 1, anon_sym_LT_LT, - ACTIONS(342), 1, anon_sym_GT_GT, - ACTIONS(344), 1, anon_sym_PLUS, - ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(348), 1, anon_sym_PERCENT, - ACTIONS(350), 1, anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(195), 1, - sym_comment, - ACTIONS(487), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ, - ACTIONS(489), 19, + ACTIONS(506), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17588,14 +20750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4092] = 4, + [6037] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(196), 1, + ACTIONS(512), 1, + anon_sym_DOT, + STATE(218), 1, sym_comment, - ACTIONS(511), 16, + ACTIONS(508), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -17612,7 +20777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(513), 20, + ACTIONS(510), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17630,33 +20795,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4139] = 13, + [6086] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + STATE(219), 1, + sym_comment, + ACTIONS(514), 16, anon_sym_STAR, - ACTIONS(316), 1, anon_sym_SLASH, - ACTIONS(340), 1, - anon_sym_LT_LT, - ACTIONS(342), 1, - anon_sym_GT_GT, - ACTIONS(344), 1, - anon_sym_PLUS, - ACTIONS(346), 1, - anon_sym_DASH, - ACTIONS(348), 1, - anon_sym_PERCENT, - ACTIONS(350), 1, - anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(197), 1, - sym_comment, - ACTIONS(515), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, @@ -17664,8 +20812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(517), 19, + ACTIONS(516), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17683,14 +20837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4204] = 4, + [6133] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(198), 1, + STATE(220), 1, sym_comment, - ACTIONS(519), 16, + ACTIONS(518), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -17707,7 +20862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(521), 20, + ACTIONS(520), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17728,35 +20883,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4251] = 7, + [6180] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(525), 1, - anon_sym_DOT, - STATE(154), 1, - aux_sym_constant_identifier_repeat1, - STATE(199), 1, + STATE(221), 1, sym_comment, - ACTIONS(523), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(234), 8, + ACTIONS(522), 16, anon_sym_STAR, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(236), 23, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, @@ -17764,50 +20904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_QMARK, - anon_sym_EQ_GT, - [4304] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(314), 1, - anon_sym_STAR, - ACTIONS(316), 1, - anon_sym_SLASH, - ACTIONS(334), 1, - anon_sym_AMP, - ACTIONS(340), 1, - anon_sym_LT_LT, - ACTIONS(342), 1, - anon_sym_GT_GT, - ACTIONS(344), 1, - anon_sym_PLUS, - ACTIONS(346), 1, - anon_sym_DASH, - ACTIONS(348), 1, - anon_sym_PERCENT, - ACTIONS(350), 1, - anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(200), 1, - sym_comment, - ACTIONS(528), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(530), 19, + ACTIONS(524), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17825,31 +20923,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4371] = 4, + [6227] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(201), 1, - sym_comment, - ACTIONS(532), 16, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(427), 1, anon_sym_AMP, + ACTIONS(429), 1, anon_sym_PIPE, + ACTIONS(431), 1, anon_sym_CARET, + ACTIONS(433), 1, anon_sym_LT_LT, + ACTIONS(435), 1, anon_sym_GT_GT, + ACTIONS(437), 1, anon_sym_PLUS, + ACTIONS(439), 1, anon_sym_DASH, + ACTIONS(441), 1, anon_sym_PERCENT, + ACTIONS(443), 1, anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(222), 1, + sym_comment, + ACTIONS(496), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ, - ACTIONS(534), 20, + ACTIONS(498), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17863,77 +20975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_QMARK, - [4418] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_RPAREN, - STATE(202), 1, - sym_comment, - STATE(612), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [4495] = 4, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + [6298] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(203), 1, + STATE(223), 1, sym_comment, - ACTIONS(538), 16, + ACTIONS(526), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -17950,7 +21003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(540), 20, + ACTIONS(528), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -17971,12 +21024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4542] = 4, + [6345] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(204), 1, + STATE(224), 1, sym_comment, - ACTIONS(542), 16, + ACTIONS(530), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -17993,7 +21046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(544), 20, + ACTIONS(532), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18014,12 +21067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4589] = 4, + [6392] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(205), 1, + STATE(25), 1, + sym_ternary_if, + STATE(225), 1, sym_comment, - ACTIONS(546), 16, + ACTIONS(534), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -18036,7 +21091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(548), 20, + ACTIONS(536), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18054,15 +21109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4636] = 4, + [6441] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(206), 1, + STATE(226), 1, sym_comment, - ACTIONS(550), 16, + ACTIONS(538), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -18079,7 +21133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(552), 20, + ACTIONS(540), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18100,131 +21154,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4683] = 6, + [6488] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(207), 1, - sym_comment, - STATE(216), 1, - aux_sym_constant_identifier_repeat1, - ACTIONS(523), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(223), 9, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(427), 1, anon_sym_AMP, + ACTIONS(429), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(225), 23, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(431), 1, anon_sym_CARET, + ACTIONS(433), 1, anon_sym_LT_LT, + ACTIONS(435), 1, anon_sym_GT_GT, + ACTIONS(437), 1, anon_sym_PLUS, + ACTIONS(439), 1, anon_sym_DASH, + ACTIONS(441), 1, anon_sym_PERCENT, + ACTIONS(443), 1, anon_sym_STAR_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_QMARK, - anon_sym_EQ_GT, - [4734] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(208), 1, + STATE(25), 1, + sym_ternary_if, + STATE(227), 1, sym_comment, - STATE(218), 1, - aux_sym_constant_identifier_repeat1, - ACTIONS(523), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(210), 9, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(496), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(214), 23, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(498), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_QMARK, - anon_sym_EQ_GT, - [4785] = 15, + [6559] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + STATE(228), 1, + sym_comment, + ACTIONS(542), 16, anon_sym_STAR, - ACTIONS(316), 1, anon_sym_SLASH, - ACTIONS(334), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(336), 1, anon_sym_PIPE, - ACTIONS(340), 1, + anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(342), 1, anon_sym_GT_GT, - ACTIONS(344), 1, anon_sym_PLUS, - ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(348), 1, anon_sym_PERCENT, - ACTIONS(350), 1, anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(209), 1, - sym_comment, - ACTIONS(554), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(556), 19, + ACTIONS(544), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18242,16 +21249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4854] = 5, + [6606] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(562), 1, - anon_sym_DOT, - STATE(210), 1, + STATE(229), 1, sym_comment, - ACTIONS(558), 16, + ACTIONS(546), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -18268,7 +21274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(560), 19, + ACTIONS(548), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18286,39 +21292,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [4903] = 11, + [6653] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + ACTIONS(407), 1, anon_sym_STAR, - ACTIONS(316), 1, + ACTIONS(409), 1, anon_sym_SLASH, - ACTIONS(344), 1, + ACTIONS(427), 1, + anon_sym_AMP, + ACTIONS(429), 1, + anon_sym_PIPE, + ACTIONS(431), 1, + anon_sym_CARET, + ACTIONS(433), 1, + anon_sym_LT_LT, + ACTIONS(435), 1, + anon_sym_GT_GT, + ACTIONS(437), 1, anon_sym_PLUS, - ACTIONS(346), 1, + ACTIONS(439), 1, anon_sym_DASH, - ACTIONS(348), 1, + ACTIONS(441), 1, anon_sym_PERCENT, - ACTIONS(350), 1, + ACTIONS(443), 1, anon_sym_STAR_STAR, - STATE(86), 1, + STATE(25), 1, sym_ternary_if, - STATE(211), 1, + STATE(230), 1, sym_comment, - ACTIONS(564), 10, + ACTIONS(496), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(566), 19, + ACTIONS(498), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18338,12 +21350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_SEMI, anon_sym_QMARK, - [4964] = 4, + [6724] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(212), 1, + STATE(231), 1, sym_comment, - ACTIONS(568), 16, + ACTIONS(550), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -18360,7 +21372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(570), 20, + ACTIONS(552), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18381,16 +21393,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [5011] = 5, + [6771] = 13, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(86), 1, - sym_ternary_if, - STATE(213), 1, - sym_comment, - ACTIONS(572), 16, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, + ACTIONS(433), 1, + anon_sym_LT_LT, + ACTIONS(435), 1, + anon_sym_GT_GT, + ACTIONS(437), 1, + anon_sym_PLUS, + ACTIONS(439), 1, + anon_sym_DASH, + ACTIONS(441), 1, + anon_sym_PERCENT, + ACTIONS(443), 1, + anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(232), 1, + sym_comment, + ACTIONS(554), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, @@ -18398,14 +21424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(574), 19, + ACTIONS(556), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18421,151 +21441,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - [5060] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(214), 1, - sym_comment, - ACTIONS(578), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(576), 34, - anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, - anon_sym_bool, - anon_sym_console, - anon_sym_field, - anon_sym_for, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [5107] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(215), 1, - sym_comment, - ACTIONS(582), 2, - anon_sym_assert, - aux_sym_variable_identifier_token1, - ACTIONS(580), 34, - anon_sym_address, - anon_sym_assert_eq, - anon_sym_assert_neq, - anon_sym_block, - anon_sym_bool, - anon_sym_console, - anon_sym_field, - anon_sym_for, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_if, - anon_sym_let, - anon_sym_return, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [5154] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(154), 1, - aux_sym_constant_identifier_repeat1, - STATE(216), 1, - sym_comment, - ACTIONS(523), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(219), 9, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + [6836] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, + ACTIONS(427), 1, + anon_sym_AMP, + ACTIONS(433), 1, + anon_sym_LT_LT, + ACTIONS(435), 1, + anon_sym_GT_GT, + ACTIONS(437), 1, + anon_sym_PLUS, + ACTIONS(439), 1, + anon_sym_DASH, + ACTIONS(441), 1, + anon_sym_PERCENT, + ACTIONS(443), 1, + anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(233), 1, + sym_comment, + ACTIONS(558), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(221), 23, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(560), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_QMARK, - anon_sym_EQ_GT, - [5205] = 6, + [6903] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(350), 1, - anon_sym_STAR_STAR, - STATE(86), 1, - sym_ternary_if, - STATE(217), 1, + STATE(234), 1, sym_comment, - ACTIONS(399), 15, + ACTIONS(562), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -18580,8 +21518,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(401), 19, + ACTIONS(564), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18599,115 +21538,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [5256] = 6, + [6950] = 11, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(154), 1, - aux_sym_constant_identifier_repeat1, - STATE(218), 1, - sym_comment, - ACTIONS(523), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(234), 9, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, + ACTIONS(437), 1, + anon_sym_PLUS, + ACTIONS(439), 1, + anon_sym_DASH, + ACTIONS(441), 1, + anon_sym_PERCENT, + ACTIONS(443), 1, + anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(235), 1, + sym_comment, + ACTIONS(566), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(236), 23, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(568), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_QMARK, - anon_sym_EQ_GT, - [5307] = 7, + [7011] = 11, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(584), 1, - anon_sym_DOT, - STATE(199), 1, - aux_sym_constant_identifier_repeat1, - STATE(219), 1, - sym_comment, - ACTIONS(523), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - ACTIONS(210), 8, + ACTIONS(407), 1, anon_sym_STAR, + ACTIONS(409), 1, anon_sym_SLASH, + ACTIONS(437), 1, + anon_sym_PLUS, + ACTIONS(439), 1, + anon_sym_DASH, + ACTIONS(441), 1, + anon_sym_PERCENT, + ACTIONS(443), 1, + anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(236), 1, + sym_comment, + ACTIONS(566), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(214), 23, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(568), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_QMARK, - anon_sym_EQ_GT, - [5360] = 9, + [7072] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + ACTIONS(407), 1, anon_sym_STAR, - ACTIONS(316), 1, + ACTIONS(409), 1, anon_sym_SLASH, - ACTIONS(348), 1, + ACTIONS(441), 1, anon_sym_PERCENT, - ACTIONS(350), 1, + ACTIONS(443), 1, anon_sym_STAR_STAR, - STATE(86), 1, + STATE(25), 1, sym_ternary_if, - STATE(220), 1, + STATE(237), 1, sym_comment, - ACTIONS(587), 12, + ACTIONS(570), 12, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, @@ -18720,7 +21669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(589), 19, + ACTIONS(572), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18740,80 +21689,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_SEMI, anon_sym_QMARK, - [5417] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_RPAREN, - STATE(221), 1, - sym_comment, - STATE(604), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [5494] = 9, + [7129] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + ACTIONS(407), 1, anon_sym_STAR, - ACTIONS(316), 1, + ACTIONS(409), 1, anon_sym_SLASH, - ACTIONS(348), 1, + ACTIONS(441), 1, anon_sym_PERCENT, - ACTIONS(350), 1, + ACTIONS(443), 1, anon_sym_STAR_STAR, - STATE(86), 1, + STATE(25), 1, sym_ternary_if, - STATE(222), 1, + STATE(238), 1, sym_comment, - ACTIONS(587), 12, + ACTIONS(570), 12, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, @@ -18826,7 +21717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - ACTIONS(589), 19, + ACTIONS(572), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18846,26 +21737,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_SEMI, anon_sym_QMARK, - [5551] = 11, + [7186] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(314), 1, + ACTIONS(443), 1, + anon_sym_STAR_STAR, + STATE(25), 1, + sym_ternary_if, + STATE(239), 1, + sym_comment, + ACTIONS(468), 15, anon_sym_STAR, - ACTIONS(316), 1, anon_sym_SLASH, - ACTIONS(344), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS, - ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(348), 1, anon_sym_PERCENT, - ACTIONS(350), 1, - anon_sym_STAR_STAR, - STATE(86), 1, + anon_sym_EQ, + ACTIONS(470), 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + [7237] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(25), 1, sym_ternary_if, - STATE(223), 1, + STATE(240), 1, sym_comment, - ACTIONS(564), 10, + ACTIONS(574), 16, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, @@ -18875,8 +21801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(566), 19, + ACTIONS(576), 19, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18896,12 +21826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_SEMI, anon_sym_QMARK, - [5612] = 4, + [7286] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(224), 1, + STATE(241), 1, sym_comment, - ACTIONS(593), 16, + ACTIONS(578), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -18918,7 +21848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(595), 20, + ACTIONS(580), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -18939,684 +21869,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_QMARK, - [5659] = 18, + [7333] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(225), 1, - sym_comment, - STATE(587), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [5733] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(226), 1, - sym_comment, - STATE(612), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [5807] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(227), 1, - sym_comment, - STATE(613), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [5881] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(228), 1, - sym_comment, - STATE(601), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [5955] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(229), 1, - sym_comment, - STATE(600), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6029] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(230), 1, - sym_comment, - STATE(610), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6103] = 18, + STATE(242), 1, + sym_comment, + ACTIONS(582), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(584), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [7380] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(231), 1, + STATE(243), 1, sym_comment, - STATE(580), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6177] = 18, + ACTIONS(586), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(588), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [7427] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(232), 1, + STATE(244), 1, sym_comment, - STATE(608), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6251] = 18, + ACTIONS(590), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(592), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [7474] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(233), 1, + STATE(245), 1, sym_comment, - STATE(598), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6325] = 18, + ACTIONS(594), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(596), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [7521] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(234), 1, + STATE(246), 1, sym_comment, - STATE(603), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6399] = 18, + ACTIONS(598), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(600), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [7568] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(235), 1, + STATE(247), 1, sym_comment, - STATE(585), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6473] = 18, + ACTIONS(602), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(604), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [7615] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(236), 1, + STATE(248), 1, sym_comment, - STATE(586), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6547] = 4, + ACTIONS(606), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(608), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [7662] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(249), 1, + sym_comment, + ACTIONS(260), 9, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(262), 27, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_QMARK, + anon_sym_EQ_GT, + [7709] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(237), 1, + STATE(250), 1, sym_comment, - ACTIONS(558), 16, + ACTIONS(610), 16, anon_sym_STAR, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -19633,7 +22235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(560), 19, + ACTIONS(612), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -19642,322 +22244,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - [6593] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(238), 1, - sym_comment, - STATE(618), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6667] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(239), 1, - sym_comment, - STATE(632), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6741] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(270), 1, - anon_sym_LPAREN, - ACTIONS(597), 1, - aux_sym_constant_identifier_token1, - ACTIONS(599), 1, - aux_sym_variable_identifier_token1, - STATE(240), 1, - sym_comment, - STATE(625), 1, - sym_type, - STATE(629), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(141), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6815] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(241), 1, - sym_comment, - STATE(596), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6889] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(242), 1, - sym_comment, - STATE(595), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [6963] = 4, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [7756] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(243), 1, + STATE(251), 1, sym_comment, - ACTIONS(241), 9, + ACTIONS(614), 16, anon_sym_STAR, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(243), 26, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(616), 20, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [7803] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(252), 1, + sym_comment, + ACTIONS(618), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, @@ -19965,420 +22320,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_EQ, + ACTIONS(620), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_QMARK, - anon_sym_EQ_GT, - [7009] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(244), 1, - sym_comment, - STATE(602), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [7083] = 18, + [7850] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(245), 1, - sym_comment, - STATE(607), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [7157] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(246), 1, - sym_comment, - STATE(617), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [7231] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(247), 1, - sym_comment, - STATE(627), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [7305] = 18, + STATE(253), 1, + sym_comment, + ACTIONS(622), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(624), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [7897] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(248), 1, + ACTIONS(630), 1, + anon_sym_DOT, + STATE(254), 1, sym_comment, - STATE(588), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [7379] = 18, + ACTIONS(626), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(628), 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + [7946] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(249), 1, + STATE(255), 1, sym_comment, - STATE(638), 1, - sym_program_id, - STATE(670), 1, - sym_type, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [7453] = 18, + ACTIONS(626), 16, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ, + ACTIONS(628), 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + [7992] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9), 1, - anon_sym_address, - ACTIONS(19), 1, - anon_sym_bool, - ACTIONS(23), 1, - anon_sym_field, - ACTIONS(27), 1, - anon_sym_group, - ACTIONS(37), 1, - anon_sym_scalar, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(156), 1, - aux_sym_variable_identifier_token1, - ACTIONS(270), 1, - anon_sym_LPAREN, - STATE(250), 1, + ACTIONS(632), 1, + aux_sym_decimal_digit_token1, + STATE(256), 1, sym_comment, - STATE(614), 1, - sym_type, - STATE(638), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - STATE(449), 2, - sym_identifier, - sym_locator, - ACTIONS(29), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(41), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - STATE(476), 10, - sym_unsigned_type, - sym_signed_type, - sym_field_type, - sym_group_type, - sym_scalar_type, - sym_boolean_type, - sym_address_type, - sym_unit_type, - sym_record_type, - sym_tuple_type, - [7527] = 7, + STATE(258), 1, + aux_sym_tuple_index_repeat1, + STATE(263), 1, + sym_decimal_digit, + ACTIONS(300), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(304), 23, + anon_sym_then, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + [8042] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(601), 1, + ACTIONS(634), 1, aux_sym_decimal_digit_token1, - STATE(251), 1, + STATE(263), 1, + sym_decimal_digit, + STATE(257), 2, sym_comment, - STATE(252), 1, aux_sym_tuple_index_repeat1, - STATE(259), 1, - sym_decimal_digit, - ACTIONS(245), 7, + ACTIONS(320), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20386,7 +22532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(249), 22, + ACTIONS(325), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20402,6 +22548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20409,18 +22556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [7576] = 7, + [8090] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(601), 1, + ACTIONS(632), 1, aux_sym_decimal_digit_token1, - STATE(252), 1, - sym_comment, - STATE(253), 1, + STATE(257), 1, aux_sym_tuple_index_repeat1, - STATE(259), 1, + STATE(258), 1, + sym_comment, + STATE(263), 1, sym_decimal_digit, - ACTIONS(264), 7, + ACTIONS(375), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20428,7 +22575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(266), 22, + ACTIONS(377), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20444,6 +22591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20451,17 +22599,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [7625] = 6, + [8140] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(603), 1, - aux_sym_decimal_digit_token1, + ACTIONS(637), 1, + anon_sym_LPAREN, STATE(259), 1, - sym_decimal_digit, - STATE(253), 2, sym_comment, - aux_sym_tuple_index_repeat1, - ACTIONS(251), 7, + STATE(271), 1, + sym_function_arguments, + ACTIONS(391), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20469,7 +22616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(256), 22, + ACTIONS(393), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20485,6 +22632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20492,16 +22640,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [7672] = 5, + [8187] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(254), 1, - sym_comment, - ACTIONS(262), 3, + ACTIONS(637), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(258), 8, + STATE(260), 1, + sym_comment, + STATE(277), 1, + sym_function_arguments, + ACTIONS(381), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20509,8 +22657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - anon_sym_COLON, - ACTIONS(260), 20, + ACTIONS(383), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20526,21 +22673,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - [7716] = 6, + [8234] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(606), 1, - anon_sym_LPAREN, - STATE(255), 1, + STATE(261), 1, sym_comment, - STATE(287), 1, - sym_function_arguments, - ACTIONS(280), 7, + ACTIONS(349), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(345), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20548,7 +22698,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(282), 22, + anon_sym_COLON, + ACTIONS(347), 21, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20564,23 +22715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, - anon_sym_COLON, anon_sym_QMARK, - [7762] = 6, + [8279] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(606), 1, - anon_sym_LPAREN, - STATE(256), 1, + STATE(262), 1, sym_comment, - STATE(266), 1, - sym_function_arguments, - ACTIONS(272), 7, + ACTIONS(456), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20588,8 +22734,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(274), 22, + ACTIONS(458), 24, anon_sym_then, + aux_sym_decimal_digit_token1, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -20604,6 +22751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20611,29 +22759,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [7808] = 8, + [8321] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(216), 1, - anon_sym_DOT, - ACTIONS(610), 1, - aux_sym_constant_identifier_token2, - STATE(257), 1, + STATE(263), 1, sym_comment, - STATE(258), 1, - aux_sym_constant_identifier_repeat1, - ACTIONS(608), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - ACTIONS(210), 6, + ACTIONS(397), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(214), 19, + anon_sym_DOT, + ACTIONS(399), 24, anon_sym_then, + aux_sym_decimal_digit_token1, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -20647,33 +22788,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_QMARK, - [7857] = 8, + [8363] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(238), 1, - anon_sym_DOT, - ACTIONS(610), 1, - aux_sym_constant_identifier_token2, - STATE(258), 1, + STATE(264), 1, sym_comment, - STATE(262), 1, - aux_sym_constant_identifier_repeat1, - ACTIONS(608), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - ACTIONS(234), 6, + ACTIONS(538), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(236), 19, + anon_sym_DOT, + ACTIONS(540), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20688,17 +22825,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_QMARK, - [7906] = 4, + [8404] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(259), 1, + STATE(265), 1, sym_comment, - ACTIONS(294), 7, + ACTIONS(562), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20706,9 +22847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(296), 23, + ACTIONS(564), 23, anon_sym_then, - aux_sym_decimal_digit_token1, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -20723,6 +22863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20730,26 +22871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [7947] = 7, + [8445] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(610), 1, - aux_sym_constant_identifier_token2, - STATE(260), 1, + STATE(266), 1, sym_comment, - STATE(262), 1, - aux_sym_constant_identifier_repeat1, - ACTIONS(608), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - ACTIONS(219), 6, + ACTIONS(602), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(221), 20, + anon_sym_DOT, + ACTIONS(604), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20764,32 +22899,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_QMARK, - [7994] = 7, + [8486] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(610), 1, - aux_sym_constant_identifier_token2, - STATE(260), 1, - aux_sym_constant_identifier_repeat1, - STATE(261), 1, + STATE(267), 1, sym_comment, - ACTIONS(608), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - ACTIONS(223), 6, + ACTIONS(590), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(225), 20, + anon_sym_DOT, + ACTIONS(592), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20804,31 +22936,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_QMARK, - [8041] = 6, + [8527] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(615), 1, + ACTIONS(641), 1, aux_sym_constant_identifier_token2, - ACTIONS(612), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - STATE(262), 2, + STATE(268), 1, sym_comment, + STATE(282), 1, aux_sym_constant_identifier_repeat1, - ACTIONS(227), 6, + ACTIONS(639), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + ACTIONS(256), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(232), 20, + ACTIONS(258), 20, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20849,12 +22985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_QMARK, - [8086] = 4, + [8574] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(263), 1, + STATE(269), 1, sym_comment, - ACTIONS(306), 7, + ACTIONS(550), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20862,9 +22998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(308), 23, + ACTIONS(552), 23, anon_sym_then, - aux_sym_decimal_digit_token1, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -20879,6 +23014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20886,12 +23022,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8127] = 4, + [8615] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(264), 1, + STATE(270), 1, sym_comment, - ACTIONS(395), 7, + ACTIONS(594), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20899,7 +23035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(397), 22, + ACTIONS(596), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20915,6 +23051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20922,12 +23059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8167] = 4, + [8656] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(265), 1, + STATE(271), 1, sym_comment, - ACTIONS(483), 7, + ACTIONS(598), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20935,7 +23072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(485), 22, + ACTIONS(600), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20951,6 +23088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20958,12 +23096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8207] = 4, + [8697] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(266), 1, + STATE(272), 1, sym_comment, - ACTIONS(532), 7, + ACTIONS(614), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -20971,7 +23109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(534), 22, + ACTIONS(616), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -20987,6 +23125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20994,21 +23133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8247] = 5, + [8738] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(618), 1, - anon_sym_DOT, - STATE(267), 1, + ACTIONS(646), 1, + aux_sym_constant_identifier_token2, + ACTIONS(643), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + STATE(273), 2, sym_comment, - ACTIONS(381), 6, + aux_sym_constant_identifier_repeat1, + ACTIONS(229), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(383), 22, + ACTIONS(234), 20, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21023,20 +23166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_COLON_COLON, anon_sym_QMARK, - [8289] = 4, + [8783] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(268), 1, + STATE(274), 1, sym_comment, - ACTIONS(546), 7, + ACTIONS(610), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21044,7 +23185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(548), 22, + ACTIONS(612), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21060,6 +23201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21067,12 +23209,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8329] = 4, + [8824] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(269), 1, + STATE(275), 1, sym_comment, - ACTIONS(455), 7, + ACTIONS(586), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21080,7 +23222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(457), 22, + ACTIONS(588), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21096,6 +23238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21103,12 +23246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8369] = 4, + [8865] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(270), 1, + STATE(276), 1, sym_comment, - ACTIONS(542), 7, + ACTIONS(582), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21116,7 +23259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(544), 22, + ACTIONS(584), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21132,6 +23275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21139,12 +23283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8409] = 4, + [8906] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(271), 1, + STATE(277), 1, sym_comment, - ACTIONS(447), 7, + ACTIONS(622), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21152,7 +23296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(449), 22, + ACTIONS(624), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21168,6 +23312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21175,12 +23320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8449] = 4, + [8947] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(272), 1, + STATE(278), 1, sym_comment, - ACTIONS(593), 7, + ACTIONS(460), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21188,7 +23333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(595), 22, + ACTIONS(462), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21204,6 +23349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21211,12 +23357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8489] = 4, + [8988] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(273), 1, + STATE(279), 1, sym_comment, - ACTIONS(568), 7, + ACTIONS(578), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21224,7 +23370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(570), 22, + ACTIONS(580), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21240,6 +23386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21247,12 +23394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8529] = 4, + [9029] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(274), 1, + STATE(280), 1, sym_comment, - ACTIONS(550), 7, + ACTIONS(618), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21260,7 +23407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(552), 22, + ACTIONS(620), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21276,6 +23423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21283,12 +23431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8569] = 4, + [9070] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(275), 1, + STATE(281), 1, sym_comment, - ACTIONS(499), 7, + ACTIONS(526), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21296,7 +23444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(501), 22, + ACTIONS(528), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21312,6 +23460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21319,20 +23468,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8609] = 4, + [9111] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(276), 1, + ACTIONS(641), 1, + aux_sym_constant_identifier_token2, + STATE(273), 1, + aux_sym_constant_identifier_repeat1, + STATE(282), 1, sym_comment, - ACTIONS(387), 7, + ACTIONS(639), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + ACTIONS(236), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, - ACTIONS(389), 22, + ACTIONS(240), 20, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21347,20 +23502,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_COLON_COLON, anon_sym_QMARK, - [8649] = 4, + [9158] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(277), 1, + STATE(283), 1, sym_comment, - ACTIONS(519), 7, + ACTIONS(546), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21368,7 +23521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(521), 22, + ACTIONS(548), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21384,6 +23537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21391,12 +23545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8689] = 4, + [9199] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(278), 1, + STATE(284), 1, sym_comment, - ACTIONS(511), 7, + ACTIONS(542), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21404,7 +23558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(513), 22, + ACTIONS(544), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21420,6 +23574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21427,12 +23582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8729] = 4, + [9240] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(279), 1, + STATE(285), 1, sym_comment, - ACTIONS(377), 7, + ACTIONS(530), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21440,7 +23595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(379), 22, + ACTIONS(532), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21456,6 +23611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21463,12 +23619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8769] = 4, + [9281] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(280), 1, + STATE(286), 1, sym_comment, - ACTIONS(503), 7, + ACTIONS(606), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21476,7 +23632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(505), 22, + ACTIONS(608), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21492,6 +23648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21499,21 +23656,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8809] = 5, + [9322] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(620), 1, - anon_sym_DOT, - STATE(281), 1, + STATE(287), 1, sym_comment, - ACTIONS(558), 6, + ACTIONS(300), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(560), 22, + anon_sym_DOT, + ACTIONS(304), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21529,6 +23685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21536,12 +23693,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8851] = 4, + [9363] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(282), 1, + STATE(288), 1, sym_comment, - ACTIONS(245), 7, + ACTIONS(522), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21549,7 +23706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(249), 22, + ACTIONS(524), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21565,6 +23722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21572,20 +23730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8891] = 4, + [9404] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(283), 1, + ACTIONS(649), 1, + anon_sym_DOT, + STATE(289), 1, sym_comment, - ACTIONS(495), 7, + ACTIONS(626), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, - ACTIONS(497), 22, + ACTIONS(628), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21601,6 +23760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21608,20 +23768,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [8931] = 4, + [9447] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(284), 1, + ACTIONS(246), 1, + anon_sym_DOT, + ACTIONS(641), 1, + aux_sym_constant_identifier_token2, + STATE(290), 1, sym_comment, - ACTIONS(491), 7, + STATE(292), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(639), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + ACTIONS(242), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, - ACTIONS(493), 22, + ACTIONS(244), 19, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21636,20 +23804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_COLON_COLON, anon_sym_QMARK, - [8971] = 4, + [9496] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(285), 1, + STATE(291), 1, sym_comment, - ACTIONS(435), 7, + ACTIONS(484), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21657,7 +23822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(437), 22, + ACTIONS(486), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21673,6 +23838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21680,23 +23846,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9011] = 4, + [9537] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(286), 1, + ACTIONS(253), 1, + anon_sym_DOT, + ACTIONS(641), 1, + aux_sym_constant_identifier_token2, + STATE(273), 1, + aux_sym_constant_identifier_repeat1, + STATE(292), 1, sym_comment, - ACTIONS(241), 7, + ACTIONS(639), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + ACTIONS(249), 6, anon_sym_STAR, anon_sym_SLASH, - aux_sym_constant_identifier_token2, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(243), 22, + ACTIONS(251), 19, anon_sym_then, - aux_sym_decimal_digit_token1, - anon_sym__, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -21712,16 +23884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_QMARK, - [9051] = 4, + [9586] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(287), 1, + STATE(293), 1, sym_comment, - ACTIONS(507), 7, + ACTIONS(504), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21729,7 +23900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(509), 22, + ACTIONS(506), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21745,6 +23916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21752,20 +23924,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9091] = 4, + [9627] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(288), 1, + ACTIONS(651), 1, + anon_sym_DOT, + STATE(294), 1, sym_comment, - ACTIONS(479), 7, + ACTIONS(508), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, - ACTIONS(481), 22, + ACTIONS(510), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21781,6 +23954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21788,12 +23962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9131] = 4, + [9670] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(289), 1, + STATE(295), 1, sym_comment, - ACTIONS(475), 7, + ACTIONS(514), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21801,7 +23975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(477), 22, + ACTIONS(516), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21817,6 +23991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21824,12 +23999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9171] = 4, + [9711] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(290), 1, + STATE(296), 1, sym_comment, - ACTIONS(538), 7, + ACTIONS(518), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21837,7 +24012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(540), 22, + ACTIONS(520), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21853,6 +24028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21860,12 +24036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9211] = 4, + [9752] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(291), 1, + STATE(297), 1, sym_comment, - ACTIONS(427), 7, + ACTIONS(488), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21873,7 +24049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(429), 22, + ACTIONS(490), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21889,6 +24065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21896,12 +24073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9251] = 4, + [9793] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(292), 1, + STATE(298), 1, sym_comment, - ACTIONS(373), 7, + ACTIONS(480), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -21909,7 +24086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_DOT, - ACTIONS(375), 22, + ACTIONS(482), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -21925,6 +24102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21932,27 +24110,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9291] = 7, + [9834] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(610), 1, - aux_sym_constant_identifier_token2, - STATE(293), 1, + STATE(299), 1, sym_comment, - STATE(294), 1, - aux_sym_constant_identifier_repeat1, - ACTIONS(608), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - ACTIONS(210), 6, + ACTIONS(260), 7, anon_sym_STAR, anon_sym_SLASH, + aux_sym_constant_identifier_token2, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(214), 18, + ACTIONS(262), 22, anon_sym_then, + aux_sym_decimal_digit_token1, + anon_sym__, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -21967,29 +24141,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_QMARK, - [9336] = 7, + [9874] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(610), 1, - aux_sym_constant_identifier_token2, - STATE(262), 1, - aux_sym_constant_identifier_repeat1, - STATE(294), 1, + STATE(300), 1, sym_comment, - ACTIONS(608), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - ACTIONS(234), 6, + ACTIONS(626), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(236), 18, + ACTIONS(628), 23, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -22004,24 +24173,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - [9381] = 4, + [9914] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(295), 1, + STATE(301), 1, + sym_comment, + ACTIONS(655), 2, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(653), 27, + anon_sym_address, + anon_sym_block, + anon_sym_bool, + anon_sym_field, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_signature_type, + [9954] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(302), 1, + sym_comment, + ACTIONS(659), 2, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(657), 27, + anon_sym_address, + anon_sym_block, + anon_sym_bool, + anon_sym_field, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_signature_type, + [9994] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(303), 1, + sym_comment, + ACTIONS(663), 2, + aux_sym_variable_identifier_token1, + anon_sym_sign, + ACTIONS(661), 27, + anon_sym_address, + anon_sym_block, + anon_sym_bool, + anon_sym_field, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_scalar, + anon_sym_self, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + sym__numeral, + anon_sym_true, + anon_sym_false, + anon_sym_aleo1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_signature_type, + [10034] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + STATE(77), 1, + sym_ternary_if, + STATE(304), 1, sym_comment, - ACTIONS(558), 6, + ACTIONS(468), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(560), 22, - anon_sym_then, + ACTIONS(470), 20, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22034,48 +24319,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9420] = 16, + [10077] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(296), 1, + STATE(305), 1, sym_comment, - ACTIONS(487), 2, + ACTIONS(496), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(489), 13, + ACTIONS(498), 14, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22083,132 +24367,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9482] = 16, + [10140] = 11, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, - anon_sym_AMP, - ACTIONS(628), 1, - anon_sym_PIPE, - ACTIONS(630), 1, - anon_sym_CARET, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(297), 1, + STATE(306), 1, sym_comment, - ACTIONS(487), 2, + ACTIONS(566), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(489), 13, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(568), 17, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9544] = 23, + [10193] = 23, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(298), 1, + STATE(307), 1, sym_comment, - ACTIONS(465), 7, + ACTIONS(502), 8, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9620] = 9, + [10270] = 15, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(640), 1, + ACTIONS(671), 1, + anon_sym_AMP, + ACTIONS(673), 1, + anon_sym_PIPE, + ACTIONS(677), 1, + anon_sym_LT_LT, + ACTIONS(679), 1, + anon_sym_GT_GT, + ACTIONS(681), 1, + anon_sym_PLUS, + ACTIONS(683), 1, + anon_sym_DASH, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(299), 1, + STATE(308), 1, sym_comment, - ACTIONS(587), 4, + ACTIONS(464), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(589), 18, + ACTIONS(466), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22216,42 +24508,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9668] = 11, + [10331] = 14, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(636), 1, + ACTIONS(671), 1, + anon_sym_AMP, + ACTIONS(677), 1, + anon_sym_LT_LT, + ACTIONS(679), 1, + anon_sym_GT_GT, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(300), 1, + STATE(309), 1, sym_comment, - ACTIONS(564), 4, + ACTIONS(558), 3, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, - ACTIONS(566), 16, + ACTIONS(560), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22259,40 +24553,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9720] = 11, + [10390] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(641), 1, + aux_sym_constant_identifier_token2, + STATE(310), 1, + sym_comment, + STATE(326), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(639), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + ACTIONS(242), 6, anon_sym_STAR, - ACTIONS(624), 1, anon_sym_SLASH, - ACTIONS(636), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(244), 18, + anon_sym_then, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS, - ACTIONS(638), 1, anon_sym_DASH, - ACTIONS(640), 1, anon_sym_PERCENT, - ACTIONS(642), 1, anon_sym_STAR_STAR, - STATE(47), 1, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_QMARK, + [10435] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, + anon_sym_STAR, + ACTIONS(669), 1, + anon_sym_SLASH, + ACTIONS(677), 1, + anon_sym_LT_LT, + ACTIONS(679), 1, + anon_sym_GT_GT, + ACTIONS(681), 1, + anon_sym_PLUS, + ACTIONS(683), 1, + anon_sym_DASH, + ACTIONS(685), 1, + anon_sym_PERCENT, + STATE(77), 1, sym_ternary_if, - STATE(301), 1, + STATE(311), 1, sym_comment, - ACTIONS(564), 4, + ACTIONS(554), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(566), 16, + ACTIONS(556), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22300,117 +24635,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9772] = 15, + [10492] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(632), 1, + ACTIONS(675), 1, + anon_sym_CARET, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(302), 1, + STATE(312), 1, sym_comment, - ACTIONS(554), 2, + ACTIONS(496), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(556), 14, + ACTIONS(498), 14, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_CARET, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9832] = 6, + [10555] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(642), 1, + ACTIONS(665), 1, anon_sym_STAR_STAR, - STATE(47), 1, - sym_ternary_if, - STATE(303), 1, - sym_comment, - ACTIONS(399), 6, + ACTIONS(667), 1, anon_sym_STAR, + ACTIONS(669), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(671), 1, anon_sym_AMP, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(401), 19, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(675), 1, anon_sym_CARET, + ACTIONS(677), 1, anon_sym_LT_LT, + ACTIONS(679), 1, anon_sym_GT_GT, + ACTIONS(681), 1, anon_sym_PLUS, + ACTIONS(683), 1, anon_sym_DASH, + ACTIONS(685), 1, anon_sym_PERCENT, + STATE(77), 1, + sym_ternary_if, + STATE(313), 1, + sym_comment, + ACTIONS(496), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(498), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9874] = 9, + [10618] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, - anon_sym_STAR, - ACTIONS(624), 1, - anon_sym_SLASH, - ACTIONS(640), 1, - anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(304), 1, + STATE(314), 1, sym_comment, - ACTIONS(587), 4, + ACTIONS(574), 6, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(589), 18, + ACTIONS(576), 21, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22422,28 +24763,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9922] = 5, + [10659] = 11, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(47), 1, - sym_ternary_if, - STATE(305), 1, - sym_comment, - ACTIONS(572), 6, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, + ACTIONS(669), 1, anon_sym_SLASH, + ACTIONS(681), 1, + anon_sym_PLUS, + ACTIONS(683), 1, + anon_sym_DASH, + ACTIONS(685), 1, + anon_sym_PERCENT, + STATE(77), 1, + sym_ternary_if, + STATE(315), 1, + sym_comment, + ACTIONS(566), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(574), 20, + ACTIONS(568), 17, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22453,32 +24807,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [9962] = 5, + [10712] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(306), 1, + STATE(316), 1, sym_comment, - ACTIONS(439), 6, + ACTIONS(534), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(441), 20, + ACTIONS(536), 21, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22493,42 +24844,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [10002] = 14, + [10753] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, - anon_sym_AMP, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, - anon_sym_PLUS, - ACTIONS(638), 1, - anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(307), 1, + STATE(317), 1, sym_comment, - ACTIONS(528), 3, + ACTIONS(570), 4, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(530), 14, + ACTIONS(572), 19, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22536,42 +24879,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [10060] = 13, + [10802] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, - anon_sym_PLUS, - ACTIONS(638), 1, - anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(308), 1, + STATE(318), 1, sym_comment, - ACTIONS(515), 4, + ACTIONS(570), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(517), 14, + ACTIONS(572), 19, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22579,30 +24919,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [10116] = 6, + [10851] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(642), 1, + ACTIONS(665), 1, anon_sym_STAR_STAR, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(309), 1, + STATE(319), 1, sym_comment, - ACTIONS(399), 6, + ACTIONS(468), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(401), 19, + ACTIONS(470), 20, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22616,29 +24961,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [10158] = 6, + [10894] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(642), 1, + ACTIONS(665), 1, anon_sym_STAR_STAR, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(310), 1, + STATE(320), 1, sym_comment, - ACTIONS(399), 6, + ACTIONS(468), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(401), 19, + ACTIONS(470), 20, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -22652,420 +24998,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [10200] = 21, + [10937] = 21, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(311), 1, + STATE(321), 1, sym_comment, - ACTIONS(417), 9, + ACTIONS(474), 10, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [10272] = 22, + [11010] = 22, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(312), 1, + STATE(322), 1, sym_comment, - ACTIONS(421), 8, + ACTIONS(478), 9, anon_sym_PIPE_PIPE, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [10346] = 19, + [11085] = 19, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, - anon_sym_STAR, - ACTIONS(624), 1, - anon_sym_SLASH, - ACTIONS(626), 1, - anon_sym_AMP, - ACTIONS(628), 1, - anon_sym_PIPE, - ACTIONS(630), 1, - anon_sym_CARET, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, - anon_sym_PLUS, - ACTIONS(638), 1, - anon_sym_DASH, - ACTIONS(640), 1, - anon_sym_PERCENT, - ACTIONS(642), 1, + ACTIONS(665), 1, anon_sym_STAR_STAR, - ACTIONS(652), 1, - anon_sym_LT, - ACTIONS(654), 1, - anon_sym_LT_EQ, - ACTIONS(656), 1, - anon_sym_GT, - ACTIONS(658), 1, - anon_sym_GT_EQ, - STATE(47), 1, - sym_ternary_if, - STATE(313), 1, - sym_comment, - ACTIONS(425), 11, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - [10414] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(314), 1, + STATE(323), 1, sym_comment, - ACTIONS(425), 11, + ACTIONS(494), 12, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - [10482] = 16, + [11154] = 19, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(622), 1, - anon_sym_STAR, - ACTIONS(624), 1, - anon_sym_SLASH, - ACTIONS(626), 1, - anon_sym_AMP, - ACTIONS(628), 1, - anon_sym_PIPE, - ACTIONS(630), 1, - anon_sym_CARET, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, - anon_sym_PLUS, - ACTIONS(638), 1, - anon_sym_DASH, - ACTIONS(640), 1, - anon_sym_PERCENT, - ACTIONS(642), 1, + ACTIONS(665), 1, anon_sym_STAR_STAR, - STATE(47), 1, - sym_ternary_if, - STATE(315), 1, - sym_comment, - ACTIONS(487), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(489), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - [10544] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(622), 1, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - STATE(47), 1, - sym_ternary_if, - STATE(316), 1, - sym_comment, - ACTIONS(487), 2, + ACTIONS(695), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(489), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(697), 1, anon_sym_LT_EQ, + ACTIONS(699), 1, + anon_sym_GT, + ACTIONS(701), 1, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - [10606] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(662), 1, - aux_sym_variable_identifier_token1, - STATE(317), 1, - sym_comment, - ACTIONS(660), 25, - anon_sym_address, - anon_sym_block, - anon_sym_bool, - anon_sym_field, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - [10643] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(666), 1, - aux_sym_variable_identifier_token1, - STATE(318), 1, - sym_comment, - ACTIONS(664), 25, - anon_sym_address, - anon_sym_block, - anon_sym_bool, - anon_sym_field, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LPAREN, - [10680] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(670), 1, - aux_sym_variable_identifier_token1, - STATE(319), 1, - sym_comment, - ACTIONS(668), 25, - anon_sym_address, - anon_sym_block, - anon_sym_bool, - anon_sym_field, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_scalar, - anon_sym_self, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - sym__numeral, - anon_sym_true, - anon_sym_false, - anon_sym_aleo1, - anon_sym_BANG, + STATE(77), 1, + sym_ternary_if, + STATE(324), 1, + sym_comment, + ACTIONS(494), 12, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + [11223] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, + anon_sym_STAR, + ACTIONS(669), 1, + anon_sym_SLASH, + ACTIONS(671), 1, + anon_sym_AMP, + ACTIONS(673), 1, + anon_sym_PIPE, + ACTIONS(675), 1, + anon_sym_CARET, + ACTIONS(677), 1, + anon_sym_LT_LT, + ACTIONS(679), 1, + anon_sym_GT_GT, + ACTIONS(681), 1, + anon_sym_PLUS, + ACTIONS(683), 1, anon_sym_DASH, - anon_sym_LPAREN, - [10717] = 5, + ACTIONS(685), 1, + anon_sym_PERCENT, + STATE(77), 1, + sym_ternary_if, + STATE(325), 1, + sym_comment, + ACTIONS(496), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(498), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + [11286] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(320), 1, + ACTIONS(641), 1, + aux_sym_constant_identifier_token2, + STATE(273), 1, + aux_sym_constant_identifier_repeat1, + STATE(326), 1, sym_comment, - ACTIONS(262), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - ACTIONS(258), 6, + ACTIONS(639), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + ACTIONS(249), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(260), 16, + ACTIONS(251), 18, + anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -23079,318 +25291,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK, - [10754] = 26, + [11331] = 26, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(672), 1, + ACTIONS(703), 1, anon_sym_RPAREN, - ACTIONS(674), 1, + ACTIONS(705), 1, anon_sym_COMMA, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(321), 1, + STATE(327), 1, sym_comment, - STATE(567), 1, + STATE(569), 1, aux_sym_function_arguments_repeat1, - [10833] = 26, + [11410] = 26, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(676), 1, - anon_sym_RPAREN, - ACTIONS(678), 1, + ACTIONS(705), 1, anon_sym_COMMA, - STATE(47), 1, + ACTIONS(707), 1, + anon_sym_RPAREN, + STATE(77), 1, sym_ternary_if, - STATE(322), 1, + STATE(328), 1, sym_comment, - STATE(578), 1, + STATE(571), 1, aux_sym_function_arguments_repeat1, - [10912] = 26, + [11489] = 26, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(678), 1, - anon_sym_COMMA, - ACTIONS(680), 1, + ACTIONS(709), 1, anon_sym_RPAREN, - STATE(47), 1, + ACTIONS(711), 1, + anon_sym_COMMA, + STATE(77), 1, sym_ternary_if, - STATE(323), 1, + STATE(329), 1, sym_comment, - STATE(568), 1, + STATE(588), 1, aux_sym_function_arguments_repeat1, - [10991] = 26, + [11568] = 24, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(682), 1, - anon_sym_RPAREN, - ACTIONS(684), 1, - anon_sym_COMMA, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(324), 1, + STATE(330), 1, sym_comment, - STATE(561), 1, - aux_sym_function_arguments_repeat1, - [11070] = 24, + ACTIONS(713), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [11643] = 26, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - STATE(47), 1, - sym_ternary_if, - STATE(325), 1, - sym_comment, - ACTIONS(686), 2, + ACTIONS(715), 1, anon_sym_RPAREN, + ACTIONS(717), 1, anon_sym_COMMA, - [11144] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(326), 1, + STATE(331), 1, sym_comment, - ACTIONS(439), 6, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(441), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - [11180] = 5, + STATE(580), 1, + aux_sym_function_arguments_repeat1, + [11722] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(97), 1, - sym_ternary_if, - STATE(327), 1, + STATE(332), 1, sym_comment, - ACTIONS(439), 6, + ACTIONS(349), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + ACTIONS(345), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(441), 16, - anon_sym_then, + ACTIONS(347), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -23404,176 +25587,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_DOT, anon_sym_QMARK, - [11216] = 25, + [11759] = 11, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, - anon_sym_QMARK, - ACTIONS(688), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(692), 1, - anon_sym_AMP_AMP, - ACTIONS(694), 1, - anon_sym_PIPE_PIPE, - ACTIONS(696), 1, - anon_sym_EQ_EQ, - ACTIONS(698), 1, - anon_sym_BANG_EQ, - ACTIONS(700), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_LT_EQ, - ACTIONS(704), 1, - anon_sym_GT, - ACTIONS(706), 1, - anon_sym_GT_EQ, - ACTIONS(708), 1, - anon_sym_AMP, - ACTIONS(710), 1, - anon_sym_PIPE, - ACTIONS(712), 1, - anon_sym_CARET, - ACTIONS(714), 1, - anon_sym_LT_LT, - ACTIONS(716), 1, - anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(723), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(725), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(96), 1, + STATE(93), 1, sym_ternary_if, - STATE(147), 1, - sym_block, - STATE(328), 1, + STATE(333), 1, sym_comment, - [11292] = 25, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(358), 1, - anon_sym_QMARK, - ACTIONS(622), 1, - anon_sym_STAR, - ACTIONS(624), 1, - anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(566), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(628), 1, anon_sym_PIPE, - ACTIONS(630), 1, - anon_sym_CARET, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, - anon_sym_PLUS, - ACTIONS(638), 1, - anon_sym_DASH, - ACTIONS(640), 1, - anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(568), 12, + anon_sym_then, anon_sym_AMP_AMP, - ACTIONS(646), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, - anon_sym_LT, - ACTIONS(654), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, - anon_sym_GT, - ACTIONS(658), 1, anon_sym_GT_EQ, - ACTIONS(728), 1, - anon_sym_COLON, - STATE(26), 1, - sym_ternary_else, - STATE(47), 1, - sym_ternary_if, - STATE(329), 1, - sym_comment, - [11368] = 25, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + [11807] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, - anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(626), 1, - anon_sym_AMP, - ACTIONS(628), 1, - anon_sym_PIPE, - ACTIONS(630), 1, - anon_sym_CARET, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, - anon_sym_PLUS, - ACTIONS(638), 1, - anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(642), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - ACTIONS(644), 1, - anon_sym_AMP_AMP, - ACTIONS(646), 1, - anon_sym_PIPE_PIPE, - ACTIONS(648), 1, - anon_sym_EQ_EQ, - ACTIONS(650), 1, - anon_sym_BANG_EQ, - ACTIONS(652), 1, - anon_sym_LT, - ACTIONS(654), 1, - anon_sym_LT_EQ, - ACTIONS(656), 1, - anon_sym_GT, - ACTIONS(658), 1, - anon_sym_GT_EQ, - ACTIONS(728), 1, - anon_sym_COLON, - STATE(47), 1, - sym_ternary_if, - STATE(70), 1, - sym_ternary_else, - STATE(330), 1, - sym_comment, - [11444] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(97), 1, + STATE(93), 1, sym_ternary_if, - STATE(331), 1, + STATE(334), 1, sym_comment, - ACTIONS(572), 6, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(570), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(574), 16, + ACTIONS(572), 14, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -23586,468 +25660,531 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SEMI, anon_sym_QMARK, - [11480] = 25, + [11851] = 23, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, - anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(626), 1, - anon_sym_AMP, - ACTIONS(628), 1, - anon_sym_PIPE, - ACTIONS(630), 1, - anon_sym_CARET, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(723), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(725), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(642), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(731), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(733), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(735), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(737), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(739), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(741), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(743), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(745), 1, anon_sym_GT_EQ, - ACTIONS(728), 1, - anon_sym_COLON, - STATE(47), 1, - sym_ternary_if, + ACTIONS(747), 1, + anon_sym_AMP, + ACTIONS(749), 1, + anon_sym_PIPE, + ACTIONS(751), 1, + anon_sym_CARET, + ACTIONS(753), 1, + anon_sym_LT_LT, + ACTIONS(755), 1, + anon_sym_GT_GT, STATE(93), 1, - sym_ternary_else, - STATE(332), 1, + sym_ternary_if, + STATE(335), 1, sym_comment, - [11556] = 25, + ACTIONS(502), 3, + anon_sym_then, + anon_sym_SEMI, + anon_sym_QMARK, + [11923] = 24, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(728), 1, - anon_sym_COLON, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(104), 1, - sym_ternary_else, - STATE(333), 1, + STATE(336), 1, sym_comment, - [11632] = 25, + ACTIONS(757), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [11997] = 15, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, - anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(626), 1, - anon_sym_AMP, - ACTIONS(628), 1, - anon_sym_PIPE, - ACTIONS(630), 1, - anon_sym_CARET, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(723), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(725), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(642), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(747), 1, + anon_sym_AMP, + ACTIONS(749), 1, + anon_sym_PIPE, + ACTIONS(753), 1, + anon_sym_LT_LT, + ACTIONS(755), 1, + anon_sym_GT_GT, + STATE(93), 1, + sym_ternary_if, + STATE(337), 1, + sym_comment, + ACTIONS(464), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(466), 10, + anon_sym_then, anon_sym_AMP_AMP, - ACTIONS(646), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, - anon_sym_LT, - ACTIONS(654), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, - anon_sym_GT, - ACTIONS(658), 1, anon_sym_GT_EQ, - ACTIONS(730), 1, - anon_sym_RPAREN, - ACTIONS(732), 1, - anon_sym_COMMA, - STATE(47), 1, - sym_ternary_if, - STATE(334), 1, - sym_comment, - [11708] = 25, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_QMARK, + [12053] = 25, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(734), 1, - anon_sym_RPAREN, - ACTIONS(736), 1, - anon_sym_COMMA, - STATE(47), 1, + ACTIONS(759), 1, + anon_sym_COLON, + STATE(55), 1, + sym_ternary_else, + STATE(77), 1, sym_ternary_if, - STATE(335), 1, + STATE(338), 1, sym_comment, - [11784] = 24, + [12129] = 14, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, - anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(626), 1, - anon_sym_AMP, - ACTIONS(628), 1, - anon_sym_PIPE, - ACTIONS(630), 1, - anon_sym_CARET, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(723), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(725), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(642), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(747), 1, + anon_sym_AMP, + ACTIONS(753), 1, + anon_sym_LT_LT, + ACTIONS(755), 1, + anon_sym_GT_GT, + STATE(93), 1, + sym_ternary_if, + STATE(339), 1, + sym_comment, + ACTIONS(558), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(560), 10, + anon_sym_then, anon_sym_AMP_AMP, - ACTIONS(646), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, - anon_sym_LT, - ACTIONS(654), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, - anon_sym_GT, - ACTIONS(658), 1, anon_sym_GT_EQ, - STATE(47), 1, - sym_ternary_if, - STATE(336), 1, - sym_comment, - ACTIONS(738), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [11858] = 25, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_QMARK, + [12183] = 25, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(57), 1, + ACTIONS(147), 1, anon_sym_LBRACE, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(688), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(692), 1, + ACTIONS(765), 1, anon_sym_AMP_AMP, - ACTIONS(694), 1, + ACTIONS(767), 1, anon_sym_PIPE_PIPE, - ACTIONS(696), 1, + ACTIONS(769), 1, anon_sym_EQ_EQ, - ACTIONS(698), 1, + ACTIONS(771), 1, anon_sym_BANG_EQ, - ACTIONS(700), 1, + ACTIONS(773), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(775), 1, anon_sym_LT_EQ, - ACTIONS(704), 1, + ACTIONS(777), 1, anon_sym_GT, - ACTIONS(706), 1, + ACTIONS(779), 1, anon_sym_GT_EQ, - ACTIONS(708), 1, + ACTIONS(781), 1, anon_sym_AMP, - ACTIONS(710), 1, + ACTIONS(783), 1, anon_sym_PIPE, - ACTIONS(712), 1, + ACTIONS(785), 1, anon_sym_CARET, - ACTIONS(714), 1, + ACTIONS(787), 1, anon_sym_LT_LT, - ACTIONS(716), 1, + ACTIONS(789), 1, anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(175), 1, + STATE(146), 1, sym_block, - STATE(337), 1, + STATE(340), 1, sym_comment, - [11934] = 25, + [12259] = 11, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(358), 1, - anon_sym_QMARK, - ACTIONS(688), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(692), 1, + ACTIONS(723), 1, + anon_sym_PLUS, + ACTIONS(725), 1, + anon_sym_DASH, + ACTIONS(727), 1, + anon_sym_PERCENT, + ACTIONS(729), 1, + anon_sym_STAR_STAR, + STATE(93), 1, + sym_ternary_if, + STATE(341), 1, + sym_comment, + ACTIONS(566), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(568), 12, + anon_sym_then, anon_sym_AMP_AMP, - ACTIONS(694), 1, anon_sym_PIPE_PIPE, - ACTIONS(696), 1, anon_sym_EQ_EQ, - ACTIONS(698), 1, anon_sym_BANG_EQ, - ACTIONS(700), 1, - anon_sym_LT, - ACTIONS(702), 1, anon_sym_LT_EQ, - ACTIONS(704), 1, - anon_sym_GT, - ACTIONS(706), 1, anon_sym_GT_EQ, - ACTIONS(708), 1, - anon_sym_AMP, - ACTIONS(710), 1, - anon_sym_PIPE, - ACTIONS(712), 1, anon_sym_CARET, - ACTIONS(714), 1, anon_sym_LT_LT, - ACTIONS(716), 1, anon_sym_GT_GT, - ACTIONS(718), 1, + anon_sym_SEMI, + anon_sym_QMARK, + [12307] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(721), 1, + anon_sym_SLASH, + ACTIONS(723), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(725), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - STATE(96), 1, + ACTIONS(739), 1, + anon_sym_LT, + ACTIONS(741), 1, + anon_sym_LT_EQ, + ACTIONS(743), 1, + anon_sym_GT, + ACTIONS(745), 1, + anon_sym_GT_EQ, + ACTIONS(747), 1, + anon_sym_AMP, + ACTIONS(749), 1, + anon_sym_PIPE, + ACTIONS(751), 1, + anon_sym_CARET, + ACTIONS(753), 1, + anon_sym_LT_LT, + ACTIONS(755), 1, + anon_sym_GT_GT, + STATE(93), 1, sym_ternary_if, - STATE(180), 1, - sym_block, - STATE(338), 1, + STATE(342), 1, sym_comment, - [12010] = 23, + ACTIONS(494), 7, + anon_sym_then, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + [12371] = 25, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(744), 1, + ACTIONS(671), 1, + anon_sym_AMP, + ACTIONS(673), 1, + anon_sym_PIPE, + ACTIONS(675), 1, + anon_sym_CARET, + ACTIONS(677), 1, + anon_sym_LT_LT, + ACTIONS(679), 1, + anon_sym_GT_GT, + ACTIONS(681), 1, + anon_sym_PLUS, + ACTIONS(683), 1, + anon_sym_DASH, + ACTIONS(685), 1, + anon_sym_PERCENT, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(746), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(748), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(750), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(752), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(754), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(756), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(758), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(760), 1, + ACTIONS(705), 1, + anon_sym_COMMA, + STATE(77), 1, + sym_ternary_if, + STATE(343), 1, + sym_comment, + STATE(572), 1, + aux_sym_function_arguments_repeat1, + [12447] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(721), 1, + anon_sym_SLASH, + ACTIONS(723), 1, + anon_sym_PLUS, + ACTIONS(725), 1, + anon_sym_DASH, + ACTIONS(727), 1, + anon_sym_PERCENT, + ACTIONS(729), 1, + anon_sym_STAR_STAR, + ACTIONS(747), 1, anon_sym_AMP, - ACTIONS(762), 1, + ACTIONS(749), 1, anon_sym_PIPE, - ACTIONS(764), 1, + ACTIONS(751), 1, anon_sym_CARET, - ACTIONS(766), 1, + ACTIONS(753), 1, anon_sym_LT_LT, - ACTIONS(768), 1, + ACTIONS(755), 1, anon_sym_GT_GT, - ACTIONS(770), 1, - anon_sym_PLUS, - ACTIONS(772), 1, - anon_sym_DASH, - ACTIONS(774), 1, - anon_sym_PERCENT, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - STATE(97), 1, + STATE(93), 1, sym_ternary_if, - STATE(339), 1, + STATE(344), 1, sym_comment, - ACTIONS(465), 3, + ACTIONS(496), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(498), 9, anon_sym_then, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_QMARK, - [12082] = 6, + [12505] = 19, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - STATE(97), 1, - sym_ternary_if, - STATE(340), 1, - sym_comment, - ACTIONS(399), 6, + ACTIONS(719), 1, anon_sym_STAR, + ACTIONS(721), 1, anon_sym_SLASH, + ACTIONS(723), 1, + anon_sym_PLUS, + ACTIONS(725), 1, + anon_sym_DASH, + ACTIONS(727), 1, + anon_sym_PERCENT, + ACTIONS(729), 1, + anon_sym_STAR_STAR, + ACTIONS(739), 1, anon_sym_LT, + ACTIONS(741), 1, + anon_sym_LT_EQ, + ACTIONS(743), 1, anon_sym_GT, + ACTIONS(745), 1, + anon_sym_GT_EQ, + ACTIONS(747), 1, anon_sym_AMP, + ACTIONS(749), 1, anon_sym_PIPE, - ACTIONS(401), 15, + ACTIONS(751), 1, + anon_sym_CARET, + ACTIONS(753), 1, + anon_sym_LT_LT, + ACTIONS(755), 1, + anon_sym_GT_GT, + STATE(93), 1, + sym_ternary_if, + STATE(345), 1, + sym_comment, + ACTIONS(494), 7, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, anon_sym_SEMI, anon_sym_QMARK, - [12120] = 9, + [12569] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(774), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - STATE(97), 1, + STATE(93), 1, sym_ternary_if, - STATE(341), 1, + STATE(346), 1, sym_comment, - ACTIONS(587), 4, + ACTIONS(570), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(589), 14, + ACTIONS(572), 14, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -24062,103 +26199,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SEMI, anon_sym_QMARK, - [12164] = 9, + [12613] = 22, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(774), 1, + ACTIONS(723), 1, + anon_sym_PLUS, + ACTIONS(725), 1, + anon_sym_DASH, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - STATE(97), 1, - sym_ternary_if, - STATE(342), 1, - sym_comment, - ACTIONS(587), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(589), 14, - anon_sym_then, + ACTIONS(731), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(735), 1, anon_sym_EQ_EQ, + ACTIONS(737), 1, anon_sym_BANG_EQ, + ACTIONS(739), 1, + anon_sym_LT, + ACTIONS(741), 1, anon_sym_LT_EQ, + ACTIONS(743), 1, + anon_sym_GT, + ACTIONS(745), 1, anon_sym_GT_EQ, + ACTIONS(747), 1, + anon_sym_AMP, + ACTIONS(749), 1, + anon_sym_PIPE, + ACTIONS(751), 1, anon_sym_CARET, + ACTIONS(753), 1, anon_sym_LT_LT, + ACTIONS(755), 1, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + STATE(93), 1, + sym_ternary_if, + STATE(347), 1, + sym_comment, + ACTIONS(478), 4, + anon_sym_then, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_QMARK, - [12208] = 11, + [12683] = 21, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_PLUS, - ACTIONS(772), 1, + ACTIONS(725), 1, anon_sym_DASH, - ACTIONS(774), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - STATE(97), 1, - sym_ternary_if, - STATE(343), 1, - sym_comment, - ACTIONS(564), 4, + ACTIONS(735), 1, + anon_sym_EQ_EQ, + ACTIONS(737), 1, + anon_sym_BANG_EQ, + ACTIONS(739), 1, anon_sym_LT, + ACTIONS(741), 1, + anon_sym_LT_EQ, + ACTIONS(743), 1, anon_sym_GT, + ACTIONS(745), 1, + anon_sym_GT_EQ, + ACTIONS(747), 1, anon_sym_AMP, + ACTIONS(749), 1, anon_sym_PIPE, - ACTIONS(566), 12, + ACTIONS(751), 1, + anon_sym_CARET, + ACTIONS(753), 1, + anon_sym_LT_LT, + ACTIONS(755), 1, + anon_sym_GT_GT, + STATE(93), 1, + sym_ternary_if, + STATE(348), 1, + sym_comment, + ACTIONS(474), 5, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_QMARK, + [12751] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(147), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(761), 1, + anon_sym_STAR, + ACTIONS(763), 1, + anon_sym_SLASH, + ACTIONS(765), 1, + anon_sym_AMP_AMP, + ACTIONS(767), 1, + anon_sym_PIPE_PIPE, + ACTIONS(769), 1, anon_sym_EQ_EQ, + ACTIONS(771), 1, anon_sym_BANG_EQ, + ACTIONS(773), 1, + anon_sym_LT, + ACTIONS(775), 1, anon_sym_LT_EQ, + ACTIONS(777), 1, + anon_sym_GT, + ACTIONS(779), 1, anon_sym_GT_EQ, + ACTIONS(781), 1, + anon_sym_AMP, + ACTIONS(783), 1, + anon_sym_PIPE, + ACTIONS(785), 1, anon_sym_CARET, + ACTIONS(787), 1, anon_sym_LT_LT, + ACTIONS(789), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_QMARK, - [12256] = 11, + ACTIONS(791), 1, + anon_sym_PLUS, + ACTIONS(793), 1, + anon_sym_DASH, + ACTIONS(795), 1, + anon_sym_PERCENT, + ACTIONS(797), 1, + anon_sym_STAR_STAR, + STATE(113), 1, + sym_ternary_if, + STATE(147), 1, + sym_block, + STATE(349), 1, + sym_comment, + [12827] = 13, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_PLUS, - ACTIONS(772), 1, + ACTIONS(725), 1, anon_sym_DASH, - ACTIONS(774), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - STATE(97), 1, + ACTIONS(753), 1, + anon_sym_LT_LT, + ACTIONS(755), 1, + anon_sym_GT_GT, + STATE(93), 1, sym_ternary_if, - STATE(344), 1, + STATE(350), 1, sym_comment, - ACTIONS(564), 4, + ACTIONS(554), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(566), 12, + ACTIONS(556), 10, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -24167,41 +26382,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_QMARK, - [12304] = 15, + [12879] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(760), 1, - anon_sym_AMP, - ACTIONS(762), 1, - anon_sym_PIPE, - ACTIONS(766), 1, - anon_sym_LT_LT, - ACTIONS(768), 1, - anon_sym_GT_GT, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_PLUS, - ACTIONS(772), 1, + ACTIONS(725), 1, anon_sym_DASH, - ACTIONS(774), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - STATE(97), 1, + ACTIONS(747), 1, + anon_sym_AMP, + ACTIONS(749), 1, + anon_sym_PIPE, + ACTIONS(751), 1, + anon_sym_CARET, + ACTIONS(753), 1, + anon_sym_LT_LT, + ACTIONS(755), 1, + anon_sym_GT_GT, + STATE(93), 1, sym_ternary_if, - STATE(345), 1, + STATE(351), 1, sym_comment, - ACTIONS(554), 2, + ACTIONS(496), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(556), 10, + ACTIONS(498), 9, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -24209,26 +26424,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_CARET, anon_sym_SEMI, anon_sym_QMARK, - [12360] = 6, + [12937] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(801), 1, + aux_sym_variable_identifier_token1, + STATE(352), 1, + sym_comment, + ACTIONS(799), 22, + anon_sym_address, + anon_sym_bool, + anon_sym_constant, + anon_sym_field, + anon_sym_group, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_private, + anon_sym_public, + anon_sym_scalar, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + aux_sym_constant_identifier_token1, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_signature_type, + [12971] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - STATE(97), 1, + STATE(93), 1, sym_ternary_if, - STATE(346), 1, + STATE(353), 1, sym_comment, - ACTIONS(399), 6, + ACTIONS(468), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(401), 15, + ACTIONS(470), 15, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -24244,36 +26488,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SEMI, anon_sym_QMARK, - [12398] = 14, + [13009] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(760), 1, - anon_sym_AMP, - ACTIONS(766), 1, - anon_sym_LT_LT, - ACTIONS(768), 1, - anon_sym_GT_GT, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_PLUS, - ACTIONS(772), 1, + ACTIONS(725), 1, anon_sym_DASH, - ACTIONS(774), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - STATE(97), 1, + ACTIONS(747), 1, + anon_sym_AMP, + ACTIONS(749), 1, + anon_sym_PIPE, + ACTIONS(751), 1, + anon_sym_CARET, + ACTIONS(753), 1, + anon_sym_LT_LT, + ACTIONS(755), 1, + anon_sym_GT_GT, + STATE(93), 1, sym_ternary_if, - STATE(347), 1, + STATE(354), 1, sym_comment, - ACTIONS(528), 3, + ACTIONS(496), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - ACTIONS(530), 10, + ACTIONS(498), 9, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -24281,65 +26528,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_CARET, anon_sym_SEMI, anon_sym_QMARK, - [12452] = 13, + [13067] = 25, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(766), 1, + ACTIONS(671), 1, + anon_sym_AMP, + ACTIONS(673), 1, + anon_sym_PIPE, + ACTIONS(675), 1, + anon_sym_CARET, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(768), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(770), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(772), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(774), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - STATE(97), 1, - sym_ternary_if, - STATE(348), 1, - sym_comment, - ACTIONS(515), 4, + ACTIONS(687), 1, + anon_sym_AMP_AMP, + ACTIONS(689), 1, + anon_sym_PIPE_PIPE, + ACTIONS(691), 1, + anon_sym_EQ_EQ, + ACTIONS(693), 1, + anon_sym_BANG_EQ, + ACTIONS(695), 1, anon_sym_LT, + ACTIONS(697), 1, + anon_sym_LT_EQ, + ACTIONS(699), 1, anon_sym_GT, + ACTIONS(701), 1, + anon_sym_GT_EQ, + ACTIONS(759), 1, + anon_sym_COLON, + STATE(24), 1, + sym_ternary_else, + STATE(77), 1, + sym_ternary_if, + STATE(355), 1, + sym_comment, + [13143] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, + anon_sym_STAR, + ACTIONS(669), 1, + anon_sym_SLASH, + ACTIONS(671), 1, anon_sym_AMP, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(517), 10, - anon_sym_then, + ACTIONS(675), 1, + anon_sym_CARET, + ACTIONS(677), 1, + anon_sym_LT_LT, + ACTIONS(679), 1, + anon_sym_GT_GT, + ACTIONS(681), 1, + anon_sym_PLUS, + ACTIONS(683), 1, + anon_sym_DASH, + ACTIONS(685), 1, + anon_sym_PERCENT, + ACTIONS(687), 1, anon_sym_AMP_AMP, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, + ACTIONS(691), 1, anon_sym_EQ_EQ, + ACTIONS(693), 1, anon_sym_BANG_EQ, + ACTIONS(695), 1, + anon_sym_LT, + ACTIONS(697), 1, anon_sym_LT_EQ, + ACTIONS(699), 1, + anon_sym_GT, + ACTIONS(701), 1, anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_QMARK, - [12504] = 6, + ACTIONS(759), 1, + anon_sym_COLON, + STATE(77), 1, + sym_ternary_if, + STATE(109), 1, + sym_ternary_else, + STATE(356), 1, + sym_comment, + [13219] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - STATE(97), 1, + STATE(93), 1, sym_ternary_if, - STATE(349), 1, + STATE(357), 1, sym_comment, - ACTIONS(399), 6, + ACTIONS(468), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(401), 15, + ACTIONS(470), 15, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -24355,224 +26664,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SEMI, anon_sym_QMARK, - [12542] = 21, + [13257] = 25, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(748), 1, - anon_sym_EQ_EQ, - ACTIONS(750), 1, - anon_sym_BANG_EQ, - ACTIONS(752), 1, - anon_sym_LT, - ACTIONS(754), 1, - anon_sym_LT_EQ, - ACTIONS(756), 1, - anon_sym_GT, - ACTIONS(758), 1, - anon_sym_GT_EQ, - ACTIONS(760), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(762), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(764), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(766), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(768), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(770), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(772), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(774), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - STATE(97), 1, - sym_ternary_if, - STATE(350), 1, - sym_comment, - ACTIONS(417), 5, - anon_sym_then, + ACTIONS(687), 1, anon_sym_AMP_AMP, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_QMARK, - [12610] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(740), 1, - anon_sym_STAR, - ACTIONS(742), 1, - anon_sym_SLASH, - ACTIONS(744), 1, - anon_sym_AMP_AMP, - ACTIONS(748), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(750), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(752), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(754), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(756), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(758), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(760), 1, - anon_sym_AMP, - ACTIONS(762), 1, - anon_sym_PIPE, - ACTIONS(764), 1, - anon_sym_CARET, - ACTIONS(766), 1, - anon_sym_LT_LT, - ACTIONS(768), 1, - anon_sym_GT_GT, - ACTIONS(770), 1, - anon_sym_PLUS, - ACTIONS(772), 1, - anon_sym_DASH, - ACTIONS(774), 1, - anon_sym_PERCENT, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - STATE(97), 1, + ACTIONS(705), 1, + anon_sym_COMMA, + STATE(77), 1, sym_ternary_if, - STATE(351), 1, + STATE(358), 1, sym_comment, - ACTIONS(421), 4, - anon_sym_then, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_QMARK, - [12680] = 19, + STATE(591), 1, + aux_sym_function_arguments_repeat1, + [13333] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + STATE(93), 1, + sym_ternary_if, + STATE(359), 1, + sym_comment, + ACTIONS(574), 6, anon_sym_STAR, - ACTIONS(742), 1, anon_sym_SLASH, - ACTIONS(752), 1, anon_sym_LT, - ACTIONS(754), 1, - anon_sym_LT_EQ, - ACTIONS(756), 1, anon_sym_GT, - ACTIONS(758), 1, - anon_sym_GT_EQ, - ACTIONS(760), 1, anon_sym_AMP, - ACTIONS(762), 1, anon_sym_PIPE, - ACTIONS(764), 1, - anon_sym_CARET, - ACTIONS(766), 1, - anon_sym_LT_LT, - ACTIONS(768), 1, - anon_sym_GT_GT, - ACTIONS(770), 1, - anon_sym_PLUS, - ACTIONS(772), 1, - anon_sym_DASH, - ACTIONS(774), 1, - anon_sym_PERCENT, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - STATE(97), 1, - sym_ternary_if, - STATE(352), 1, - sym_comment, - ACTIONS(425), 7, + ACTIONS(576), 16, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - [12744] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(740), 1, - anon_sym_STAR, - ACTIONS(742), 1, - anon_sym_SLASH, - ACTIONS(752), 1, - anon_sym_LT, - ACTIONS(754), 1, anon_sym_LT_EQ, - ACTIONS(756), 1, - anon_sym_GT, - ACTIONS(758), 1, anon_sym_GT_EQ, - ACTIONS(760), 1, - anon_sym_AMP, - ACTIONS(762), 1, - anon_sym_PIPE, - ACTIONS(764), 1, anon_sym_CARET, - ACTIONS(766), 1, anon_sym_LT_LT, - ACTIONS(768), 1, anon_sym_GT_GT, - ACTIONS(770), 1, anon_sym_PLUS, - ACTIONS(772), 1, anon_sym_DASH, - ACTIONS(774), 1, anon_sym_PERCENT, - ACTIONS(776), 1, anon_sym_STAR_STAR, - STATE(97), 1, - sym_ternary_if, - STATE(353), 1, - sym_comment, - ACTIONS(425), 7, - anon_sym_then, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym_QMARK, - [12808] = 16, + [13369] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, - anon_sym_STAR, - ACTIONS(742), 1, - anon_sym_SLASH, - ACTIONS(760), 1, - anon_sym_AMP, - ACTIONS(762), 1, - anon_sym_PIPE, - ACTIONS(764), 1, - anon_sym_CARET, - ACTIONS(766), 1, - anon_sym_LT_LT, - ACTIONS(768), 1, - anon_sym_GT_GT, - ACTIONS(770), 1, - anon_sym_PLUS, - ACTIONS(772), 1, - anon_sym_DASH, - ACTIONS(774), 1, - anon_sym_PERCENT, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - STATE(97), 1, + STATE(93), 1, sym_ternary_if, - STATE(354), 1, + STATE(360), 1, sym_comment, - ACTIONS(487), 2, + ACTIONS(468), 6, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(489), 9, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(470), 15, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -24580,134 +26770,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - [12866] = 25, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(358), 1, - anon_sym_QMARK, - ACTIONS(740), 1, - anon_sym_STAR, - ACTIONS(742), 1, - anon_sym_SLASH, - ACTIONS(744), 1, - anon_sym_AMP_AMP, - ACTIONS(746), 1, - anon_sym_PIPE_PIPE, - ACTIONS(748), 1, - anon_sym_EQ_EQ, - ACTIONS(750), 1, - anon_sym_BANG_EQ, - ACTIONS(752), 1, - anon_sym_LT, - ACTIONS(754), 1, - anon_sym_LT_EQ, - ACTIONS(756), 1, - anon_sym_GT, - ACTIONS(758), 1, - anon_sym_GT_EQ, - ACTIONS(760), 1, - anon_sym_AMP, - ACTIONS(762), 1, - anon_sym_PIPE, - ACTIONS(764), 1, anon_sym_CARET, - ACTIONS(766), 1, anon_sym_LT_LT, - ACTIONS(768), 1, anon_sym_GT_GT, - ACTIONS(770), 1, anon_sym_PLUS, - ACTIONS(772), 1, anon_sym_DASH, - ACTIONS(774), 1, anon_sym_PERCENT, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - ACTIONS(778), 1, - anon_sym_then, - ACTIONS(780), 1, anon_sym_SEMI, - STATE(97), 1, - sym_ternary_if, - STATE(355), 1, - sym_comment, - [12942] = 16, + anon_sym_QMARK, + [13407] = 25, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(760), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(762), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(764), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(766), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(768), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(770), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(772), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(774), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - STATE(97), 1, - sym_ternary_if, - STATE(356), 1, - sym_comment, - ACTIONS(487), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(489), 9, - anon_sym_then, + ACTIONS(687), 1, anon_sym_AMP_AMP, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, + ACTIONS(691), 1, anon_sym_EQ_EQ, + ACTIONS(693), 1, anon_sym_BANG_EQ, + ACTIONS(695), 1, + anon_sym_LT, + ACTIONS(697), 1, anon_sym_LT_EQ, + ACTIONS(699), 1, + anon_sym_GT, + ACTIONS(701), 1, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - [13000] = 16, + ACTIONS(759), 1, + anon_sym_COLON, + STATE(50), 1, + sym_ternary_else, + STATE(77), 1, + sym_ternary_if, + STATE(361), 1, + sym_comment, + [13483] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(760), 1, + ACTIONS(723), 1, + anon_sym_PLUS, + ACTIONS(725), 1, + anon_sym_DASH, + ACTIONS(727), 1, + anon_sym_PERCENT, + ACTIONS(729), 1, + anon_sym_STAR_STAR, + ACTIONS(747), 1, anon_sym_AMP, - ACTIONS(762), 1, + ACTIONS(749), 1, anon_sym_PIPE, - ACTIONS(764), 1, + ACTIONS(751), 1, anon_sym_CARET, - ACTIONS(766), 1, + ACTIONS(753), 1, anon_sym_LT_LT, - ACTIONS(768), 1, + ACTIONS(755), 1, anon_sym_GT_GT, - ACTIONS(770), 1, - anon_sym_PLUS, - ACTIONS(772), 1, - anon_sym_DASH, - ACTIONS(774), 1, - anon_sym_PERCENT, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - STATE(97), 1, + STATE(93), 1, sym_ternary_if, - STATE(357), 1, + STATE(362), 1, sym_comment, - ACTIONS(487), 2, + ACTIONS(496), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(489), 9, + ACTIONS(498), 9, anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -24717,69 +26871,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_QMARK, - [13058] = 16, + [13541] = 25, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(740), 1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(760), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(762), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(764), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(766), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(768), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(770), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(772), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(774), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - STATE(97), 1, - sym_ternary_if, - STATE(358), 1, - sym_comment, - ACTIONS(487), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(489), 9, - anon_sym_then, + ACTIONS(687), 1, anon_sym_AMP_AMP, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, + ACTIONS(691), 1, anon_sym_EQ_EQ, + ACTIONS(693), 1, anon_sym_BANG_EQ, + ACTIONS(695), 1, + anon_sym_LT, + ACTIONS(697), 1, anon_sym_LT_EQ, + ACTIONS(699), 1, + anon_sym_GT, + ACTIONS(701), 1, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - [13116] = 9, + ACTIONS(803), 1, + anon_sym_RPAREN, + ACTIONS(805), 1, + anon_sym_COMMA, + STATE(77), 1, + sym_ternary_if, + STATE(363), 1, + sym_comment, + [13617] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(690), 1, - anon_sym_SLASH, - ACTIONS(722), 1, - anon_sym_PERCENT, - ACTIONS(724), 1, - anon_sym_STAR_STAR, - STATE(96), 1, + STATE(93), 1, sym_ternary_if, - STATE(359), 1, + STATE(364), 1, sym_comment, - ACTIONS(587), 4, + ACTIONS(534), 6, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(589), 13, + ACTIONS(536), 16, + anon_sym_then, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -24791,67 +26949,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_QMARK, - [13159] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(690), 1, - anon_sym_SLASH, - ACTIONS(700), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_LT_EQ, - ACTIONS(704), 1, - anon_sym_GT, - ACTIONS(706), 1, - anon_sym_GT_EQ, - ACTIONS(708), 1, - anon_sym_AMP, - ACTIONS(710), 1, - anon_sym_PIPE, - ACTIONS(712), 1, - anon_sym_CARET, - ACTIONS(714), 1, - anon_sym_LT_LT, - ACTIONS(716), 1, - anon_sym_GT_GT, - ACTIONS(718), 1, - anon_sym_PLUS, - ACTIONS(720), 1, - anon_sym_DASH, - ACTIONS(722), 1, anon_sym_PERCENT, - ACTIONS(724), 1, anon_sym_STAR_STAR, - STATE(96), 1, - sym_ternary_if, - STATE(360), 1, - sym_comment, - ACTIONS(425), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_QMARK, - [13222] = 5, + [13653] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(96), 1, + STATE(77), 1, sym_ternary_if, - STATE(361), 1, + STATE(365), 1, sym_comment, - ACTIONS(572), 6, + ACTIONS(534), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(574), 15, + ACTIONS(536), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -24865,310 +26981,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_QMARK, - [13257] = 16, + [13689] = 25, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(708), 1, + ACTIONS(765), 1, + anon_sym_AMP_AMP, + ACTIONS(767), 1, + anon_sym_PIPE_PIPE, + ACTIONS(769), 1, + anon_sym_EQ_EQ, + ACTIONS(771), 1, + anon_sym_BANG_EQ, + ACTIONS(773), 1, + anon_sym_LT, + ACTIONS(775), 1, + anon_sym_LT_EQ, + ACTIONS(777), 1, + anon_sym_GT, + ACTIONS(779), 1, + anon_sym_GT_EQ, + ACTIONS(781), 1, anon_sym_AMP, - ACTIONS(710), 1, + ACTIONS(783), 1, anon_sym_PIPE, - ACTIONS(712), 1, + ACTIONS(785), 1, anon_sym_CARET, - ACTIONS(714), 1, + ACTIONS(787), 1, anon_sym_LT_LT, - ACTIONS(716), 1, + ACTIONS(789), 1, anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + ACTIONS(807), 1, + anon_sym_LBRACE, + STATE(113), 1, sym_ternary_if, - STATE(362), 1, + STATE(141), 1, + sym_block, + STATE(366), 1, sym_comment, - ACTIONS(487), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(489), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_QMARK, - [13314] = 24, + [13765] = 25, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(782), 1, + ACTIONS(809), 1, anon_sym_RPAREN, - STATE(47), 1, + ACTIONS(811), 1, + anon_sym_COMMA, + STATE(77), 1, sym_ternary_if, - STATE(363), 1, + STATE(367), 1, sym_comment, - [13387] = 24, + [13841] = 25, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(721), 1, anon_sym_SLASH, - ACTIONS(626), 1, - anon_sym_AMP, - ACTIONS(628), 1, - anon_sym_PIPE, - ACTIONS(630), 1, - anon_sym_CARET, - ACTIONS(632), 1, - anon_sym_LT_LT, - ACTIONS(634), 1, - anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(723), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(725), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(727), 1, anon_sym_PERCENT, - ACTIONS(642), 1, + ACTIONS(729), 1, anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(731), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(733), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(735), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(737), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(739), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(741), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(743), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(745), 1, anon_sym_GT_EQ, - ACTIONS(784), 1, + ACTIONS(747), 1, + anon_sym_AMP, + ACTIONS(749), 1, + anon_sym_PIPE, + ACTIONS(751), 1, + anon_sym_CARET, + ACTIONS(753), 1, + anon_sym_LT_LT, + ACTIONS(755), 1, + anon_sym_GT_GT, + ACTIONS(813), 1, + anon_sym_then, + ACTIONS(815), 1, anon_sym_SEMI, - STATE(47), 1, + STATE(93), 1, sym_ternary_if, - STATE(364), 1, + STATE(368), 1, sym_comment, - [13460] = 24, + [13917] = 24, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(786), 1, + ACTIONS(817), 1, anon_sym_COMMA, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(365), 1, + STATE(369), 1, sym_comment, - [13533] = 23, + [13990] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(797), 1, + anon_sym_STAR_STAR, + STATE(113), 1, + sym_ternary_if, + STATE(370), 1, + sym_comment, + ACTIONS(468), 6, anon_sym_STAR, - ACTIONS(690), 1, anon_sym_SLASH, - ACTIONS(692), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(470), 14, anon_sym_AMP_AMP, - ACTIONS(694), 1, anon_sym_PIPE_PIPE, - ACTIONS(696), 1, anon_sym_EQ_EQ, - ACTIONS(698), 1, anon_sym_BANG_EQ, - ACTIONS(700), 1, - anon_sym_LT, - ACTIONS(702), 1, anon_sym_LT_EQ, - ACTIONS(704), 1, - anon_sym_GT, - ACTIONS(706), 1, anon_sym_GT_EQ, - ACTIONS(708), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_LBRACE, + anon_sym_QMARK, + [14027] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(113), 1, + sym_ternary_if, + STATE(371), 1, + sym_comment, + ACTIONS(574), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(710), 1, anon_sym_PIPE, - ACTIONS(712), 1, + ACTIONS(576), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(714), 1, anon_sym_LT_LT, - ACTIONS(716), 1, anon_sym_GT_GT, - ACTIONS(718), 1, anon_sym_PLUS, - ACTIONS(720), 1, anon_sym_DASH, - ACTIONS(722), 1, anon_sym_PERCENT, - ACTIONS(724), 1, anon_sym_STAR_STAR, - STATE(96), 1, - sym_ternary_if, - STATE(366), 1, - sym_comment, - ACTIONS(465), 2, anon_sym_LBRACE, anon_sym_QMARK, - [13604] = 24, + [14062] = 24, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(788), 1, - anon_sym_COMMA, - STATE(47), 1, + ACTIONS(819), 1, + anon_sym_SEMI, + STATE(77), 1, sym_ternary_if, - STATE(367), 1, + STATE(372), 1, sym_comment, - [13677] = 6, + [14135] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(724), 1, - anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(368), 1, + STATE(373), 1, sym_comment, - ACTIONS(399), 6, + ACTIONS(534), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(401), 14, + ACTIONS(536), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -25181,64 +27323,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LBRACE, anon_sym_QMARK, - [13714] = 16, + [14170] = 24, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(708), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(710), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(712), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(714), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(716), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(687), 1, + anon_sym_AMP_AMP, + ACTIONS(689), 1, + anon_sym_PIPE_PIPE, + ACTIONS(691), 1, + anon_sym_EQ_EQ, + ACTIONS(693), 1, + anon_sym_BANG_EQ, + ACTIONS(695), 1, + anon_sym_LT, + ACTIONS(697), 1, + anon_sym_LT_EQ, + ACTIONS(699), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_GT_EQ, + ACTIONS(821), 1, + anon_sym_DOT_DOT, + STATE(77), 1, + sym_ternary_if, + STATE(374), 1, + sym_comment, + [14243] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(665), 1, anon_sym_STAR_STAR, - STATE(96), 1, + ACTIONS(667), 1, + anon_sym_STAR, + ACTIONS(669), 1, + anon_sym_SLASH, + ACTIONS(671), 1, + anon_sym_AMP, + ACTIONS(673), 1, + anon_sym_PIPE, + ACTIONS(675), 1, + anon_sym_CARET, + ACTIONS(677), 1, + anon_sym_LT_LT, + ACTIONS(679), 1, + anon_sym_GT_GT, + ACTIONS(681), 1, + anon_sym_PLUS, + ACTIONS(683), 1, + anon_sym_DASH, + ACTIONS(685), 1, + anon_sym_PERCENT, + ACTIONS(687), 1, + anon_sym_AMP_AMP, + ACTIONS(689), 1, + anon_sym_PIPE_PIPE, + ACTIONS(691), 1, + anon_sym_EQ_EQ, + ACTIONS(693), 1, + anon_sym_BANG_EQ, + ACTIONS(695), 1, + anon_sym_LT, + ACTIONS(697), 1, + anon_sym_LT_EQ, + ACTIONS(699), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_GT_EQ, + ACTIONS(823), 1, + anon_sym_SEMI, + STATE(77), 1, sym_ternary_if, - STATE(369), 1, + STATE(375), 1, sym_comment, - ACTIONS(487), 2, + [14316] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, + anon_sym_STAR, + ACTIONS(669), 1, + anon_sym_SLASH, + ACTIONS(671), 1, + anon_sym_AMP, + ACTIONS(673), 1, + anon_sym_PIPE, + ACTIONS(675), 1, + anon_sym_CARET, + ACTIONS(677), 1, + anon_sym_LT_LT, + ACTIONS(679), 1, + anon_sym_GT_GT, + ACTIONS(681), 1, + anon_sym_PLUS, + ACTIONS(683), 1, + anon_sym_DASH, + ACTIONS(685), 1, + anon_sym_PERCENT, + ACTIONS(687), 1, + anon_sym_AMP_AMP, + ACTIONS(689), 1, + anon_sym_PIPE_PIPE, + ACTIONS(691), 1, + anon_sym_EQ_EQ, + ACTIONS(693), 1, + anon_sym_BANG_EQ, + ACTIONS(695), 1, anon_sym_LT, + ACTIONS(697), 1, + anon_sym_LT_EQ, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(489), 8, + ACTIONS(701), 1, + anon_sym_GT_EQ, + ACTIONS(825), 1, + anon_sym_RPAREN, + STATE(77), 1, + sym_ternary_if, + STATE(376), 1, + sym_comment, + [14389] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(761), 1, + anon_sym_STAR, + ACTIONS(763), 1, + anon_sym_SLASH, + ACTIONS(765), 1, anon_sym_AMP_AMP, + ACTIONS(767), 1, anon_sym_PIPE_PIPE, + ACTIONS(769), 1, anon_sym_EQ_EQ, + ACTIONS(771), 1, anon_sym_BANG_EQ, + ACTIONS(773), 1, + anon_sym_LT, + ACTIONS(775), 1, anon_sym_LT_EQ, + ACTIONS(777), 1, + anon_sym_GT, + ACTIONS(779), 1, anon_sym_GT_EQ, + ACTIONS(781), 1, + anon_sym_AMP, + ACTIONS(783), 1, + anon_sym_PIPE, + ACTIONS(785), 1, + anon_sym_CARET, + ACTIONS(787), 1, + anon_sym_LT_LT, + ACTIONS(789), 1, + anon_sym_GT_GT, + ACTIONS(791), 1, + anon_sym_PLUS, + ACTIONS(793), 1, + anon_sym_DASH, + ACTIONS(795), 1, + anon_sym_PERCENT, + ACTIONS(797), 1, + anon_sym_STAR_STAR, + STATE(113), 1, + sym_ternary_if, + STATE(377), 1, + sym_comment, + ACTIONS(502), 2, anon_sym_LBRACE, anon_sym_QMARK, - [13771] = 5, + [14460] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(96), 1, + ACTIONS(797), 1, + anon_sym_STAR_STAR, + STATE(113), 1, sym_ternary_if, - STATE(370), 1, + STATE(378), 1, sym_comment, - ACTIONS(439), 6, + ACTIONS(468), 6, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(441), 15, + ACTIONS(470), 14, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -25251,313 +27550,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LBRACE, anon_sym_QMARK, - [13806] = 16, + [14497] = 24, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(451), 1, + anon_sym_QMARK, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(708), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(710), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(712), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(714), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(716), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(687), 1, + anon_sym_AMP_AMP, + ACTIONS(689), 1, + anon_sym_PIPE_PIPE, + ACTIONS(691), 1, + anon_sym_EQ_EQ, + ACTIONS(693), 1, + anon_sym_BANG_EQ, + ACTIONS(695), 1, + anon_sym_LT, + ACTIONS(697), 1, + anon_sym_LT_EQ, + ACTIONS(699), 1, + anon_sym_GT, + ACTIONS(701), 1, + anon_sym_GT_EQ, + ACTIONS(827), 1, + anon_sym_COMMA, + STATE(77), 1, + sym_ternary_if, + STATE(379), 1, + sym_comment, + [14570] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(371), 1, + STATE(380), 1, sym_comment, - ACTIONS(487), 2, + ACTIONS(468), 6, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(489), 8, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(470), 14, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, anon_sym_LBRACE, anon_sym_QMARK, - [13863] = 24, + [14607] = 24, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, + ACTIONS(451), 1, anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(665), 1, + anon_sym_STAR_STAR, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(669), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(671), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(673), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(675), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(677), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(679), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(681), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(683), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(685), 1, anon_sym_PERCENT, - ACTIONS(642), 1, - anon_sym_STAR_STAR, - ACTIONS(644), 1, + ACTIONS(687), 1, anon_sym_AMP_AMP, - ACTIONS(646), 1, + ACTIONS(689), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + ACTIONS(691), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(693), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(695), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(697), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(699), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(701), 1, anon_sym_GT_EQ, - ACTIONS(790), 1, + ACTIONS(829), 1, anon_sym_SEMI, - STATE(47), 1, + STATE(77), 1, sym_ternary_if, - STATE(372), 1, + STATE(381), 1, sym_comment, - [13936] = 24, + [14680] = 21, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, - anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(769), 1, + anon_sym_EQ_EQ, + ACTIONS(771), 1, + anon_sym_BANG_EQ, + ACTIONS(773), 1, + anon_sym_LT, + ACTIONS(775), 1, + anon_sym_LT_EQ, + ACTIONS(777), 1, + anon_sym_GT, + ACTIONS(779), 1, + anon_sym_GT_EQ, + ACTIONS(781), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(783), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(785), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(787), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(789), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(642), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - ACTIONS(644), 1, + STATE(113), 1, + sym_ternary_if, + STATE(382), 1, + sym_comment, + ACTIONS(474), 4, anon_sym_AMP_AMP, - ACTIONS(646), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, + anon_sym_LBRACE, + anon_sym_QMARK, + [14747] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(761), 1, + anon_sym_STAR, + ACTIONS(763), 1, + anon_sym_SLASH, + ACTIONS(765), 1, + anon_sym_AMP_AMP, + ACTIONS(769), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, + ACTIONS(771), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, + ACTIONS(773), 1, anon_sym_LT, - ACTIONS(654), 1, + ACTIONS(775), 1, anon_sym_LT_EQ, - ACTIONS(656), 1, + ACTIONS(777), 1, anon_sym_GT, - ACTIONS(658), 1, + ACTIONS(779), 1, anon_sym_GT_EQ, - ACTIONS(792), 1, - anon_sym_SEMI, - STATE(47), 1, - sym_ternary_if, - STATE(373), 1, - sym_comment, - [14009] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(690), 1, - anon_sym_SLASH, - ACTIONS(708), 1, + ACTIONS(781), 1, anon_sym_AMP, - ACTIONS(714), 1, + ACTIONS(783), 1, + anon_sym_PIPE, + ACTIONS(785), 1, + anon_sym_CARET, + ACTIONS(787), 1, anon_sym_LT_LT, - ACTIONS(716), 1, + ACTIONS(789), 1, anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(374), 1, + STATE(383), 1, sym_comment, - ACTIONS(528), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(530), 9, - anon_sym_AMP_AMP, + ACTIONS(478), 3, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, anon_sym_LBRACE, anon_sym_QMARK, - [14062] = 19, + [14816] = 19, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(700), 1, + ACTIONS(773), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(775), 1, anon_sym_LT_EQ, - ACTIONS(704), 1, + ACTIONS(777), 1, anon_sym_GT, - ACTIONS(706), 1, + ACTIONS(779), 1, anon_sym_GT_EQ, - ACTIONS(708), 1, + ACTIONS(781), 1, anon_sym_AMP, - ACTIONS(710), 1, + ACTIONS(783), 1, anon_sym_PIPE, - ACTIONS(712), 1, + ACTIONS(785), 1, anon_sym_CARET, - ACTIONS(714), 1, + ACTIONS(787), 1, anon_sym_LT_LT, - ACTIONS(716), 1, + ACTIONS(789), 1, anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(375), 1, + STATE(384), 1, sym_comment, - ACTIONS(425), 6, + ACTIONS(494), 6, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LBRACE, anon_sym_QMARK, - [14125] = 24, + [14879] = 19, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(358), 1, - anon_sym_QMARK, - ACTIONS(622), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(624), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(626), 1, + ACTIONS(773), 1, + anon_sym_LT, + ACTIONS(775), 1, + anon_sym_LT_EQ, + ACTIONS(777), 1, + anon_sym_GT, + ACTIONS(779), 1, + anon_sym_GT_EQ, + ACTIONS(781), 1, anon_sym_AMP, - ACTIONS(628), 1, + ACTIONS(783), 1, anon_sym_PIPE, - ACTIONS(630), 1, + ACTIONS(785), 1, anon_sym_CARET, - ACTIONS(632), 1, + ACTIONS(787), 1, anon_sym_LT_LT, - ACTIONS(634), 1, + ACTIONS(789), 1, anon_sym_GT_GT, - ACTIONS(636), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(638), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(640), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(642), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - ACTIONS(644), 1, + STATE(113), 1, + sym_ternary_if, + STATE(385), 1, + sym_comment, + ACTIONS(494), 6, anon_sym_AMP_AMP, - ACTIONS(646), 1, anon_sym_PIPE_PIPE, - ACTIONS(648), 1, anon_sym_EQ_EQ, - ACTIONS(650), 1, anon_sym_BANG_EQ, - ACTIONS(652), 1, - anon_sym_LT, - ACTIONS(654), 1, - anon_sym_LT_EQ, - ACTIONS(656), 1, - anon_sym_GT, - ACTIONS(658), 1, - anon_sym_GT_EQ, - ACTIONS(794), 1, - anon_sym_DOT_DOT, - STATE(47), 1, - sym_ternary_if, - STATE(376), 1, - sym_comment, - [14198] = 16, + anon_sym_LBRACE, + anon_sym_QMARK, + [14942] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(708), 1, + ACTIONS(781), 1, anon_sym_AMP, - ACTIONS(710), 1, + ACTIONS(783), 1, anon_sym_PIPE, - ACTIONS(712), 1, + ACTIONS(785), 1, anon_sym_CARET, - ACTIONS(714), 1, + ACTIONS(787), 1, anon_sym_LT_LT, - ACTIONS(716), 1, + ACTIONS(789), 1, anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(377), 1, + STATE(386), 1, sym_comment, - ACTIONS(487), 2, + ACTIONS(496), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(489), 8, + ACTIONS(498), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -25566,35 +27903,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_QMARK, - [14255] = 13, + [14999] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(714), 1, - anon_sym_LT_LT, - ACTIONS(716), 1, - anon_sym_GT_GT, - ACTIONS(718), 1, - anon_sym_PLUS, - ACTIONS(720), 1, - anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(378), 1, + STATE(387), 1, sym_comment, - ACTIONS(515), 4, + ACTIONS(570), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(517), 9, + ACTIONS(572), 13, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -25602,29 +27931,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LBRACE, anon_sym_QMARK, - [14306] = 9, + [15042] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(379), 1, + STATE(388), 1, sym_comment, - ACTIONS(587), 4, + ACTIONS(570), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(589), 13, + ACTIONS(572), 13, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -25638,67 +27971,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LBRACE, anon_sym_QMARK, - [14349] = 11, + [15085] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(718), 1, + ACTIONS(781), 1, + anon_sym_AMP, + ACTIONS(783), 1, + anon_sym_PIPE, + ACTIONS(785), 1, + anon_sym_CARET, + ACTIONS(787), 1, + anon_sym_LT_LT, + ACTIONS(789), 1, + anon_sym_GT_GT, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(380), 1, + STATE(389), 1, sym_comment, - ACTIONS(564), 4, + ACTIONS(496), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(566), 11, + ACTIONS(498), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_QMARK, - [14396] = 11, + [15142] = 11, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(718), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(381), 1, + STATE(390), 1, sym_comment, - ACTIONS(564), 4, + ACTIONS(566), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(566), 11, + ACTIONS(568), 11, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -25710,84 +28048,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_QMARK, - [14443] = 22, + [15189] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(692), 1, - anon_sym_AMP_AMP, - ACTIONS(696), 1, - anon_sym_EQ_EQ, - ACTIONS(698), 1, - anon_sym_BANG_EQ, - ACTIONS(700), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_LT_EQ, - ACTIONS(704), 1, - anon_sym_GT, - ACTIONS(706), 1, - anon_sym_GT_EQ, - ACTIONS(708), 1, + ACTIONS(781), 1, anon_sym_AMP, - ACTIONS(710), 1, + ACTIONS(783), 1, anon_sym_PIPE, - ACTIONS(712), 1, + ACTIONS(785), 1, anon_sym_CARET, - ACTIONS(714), 1, + ACTIONS(787), 1, anon_sym_LT_LT, - ACTIONS(716), 1, + ACTIONS(789), 1, anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(382), 1, + STATE(391), 1, sym_comment, - ACTIONS(421), 3, + ACTIONS(496), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(498), 8, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_QMARK, - [14512] = 15, + [15246] = 11, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(708), 1, - anon_sym_AMP, - ACTIONS(710), 1, - anon_sym_PIPE, - ACTIONS(714), 1, - anon_sym_LT_LT, - ACTIONS(716), 1, - anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(383), 1, + STATE(392), 1, sym_comment, - ACTIONS(554), 2, + ACTIONS(566), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(556), 9, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(568), 11, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -25795,25 +28121,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_QMARK, - [14567] = 6, + [15293] = 15, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(724), 1, + ACTIONS(761), 1, + anon_sym_STAR, + ACTIONS(763), 1, + anon_sym_SLASH, + ACTIONS(781), 1, + anon_sym_AMP, + ACTIONS(783), 1, + anon_sym_PIPE, + ACTIONS(787), 1, + anon_sym_LT_LT, + ACTIONS(789), 1, + anon_sym_GT_GT, + ACTIONS(791), 1, + anon_sym_PLUS, + ACTIONS(793), 1, + anon_sym_DASH, + ACTIONS(795), 1, + anon_sym_PERCENT, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(384), 1, + STATE(393), 1, sym_comment, - ACTIONS(399), 6, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(464), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(401), 14, + ACTIONS(466), 9, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -25821,30 +28163,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, + anon_sym_LBRACE, + anon_sym_QMARK, + [15348] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(761), 1, + anon_sym_STAR, + ACTIONS(763), 1, + anon_sym_SLASH, + ACTIONS(781), 1, + anon_sym_AMP, + ACTIONS(787), 1, anon_sym_LT_LT, + ACTIONS(789), 1, anon_sym_GT_GT, + ACTIONS(791), 1, anon_sym_PLUS, + ACTIONS(793), 1, anon_sym_DASH, + ACTIONS(795), 1, anon_sym_PERCENT, - anon_sym_LBRACE, - anon_sym_QMARK, - [14604] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(385), 1, + STATE(394), 1, sym_comment, - ACTIONS(399), 6, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(558), 3, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, - ACTIONS(401), 14, + ACTIONS(560), 9, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -25852,70 +28202,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, + anon_sym_LBRACE, + anon_sym_QMARK, + [15401] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(761), 1, + anon_sym_STAR, + ACTIONS(763), 1, + anon_sym_SLASH, + ACTIONS(781), 1, + anon_sym_AMP, + ACTIONS(783), 1, + anon_sym_PIPE, + ACTIONS(785), 1, + anon_sym_CARET, + ACTIONS(787), 1, anon_sym_LT_LT, + ACTIONS(789), 1, anon_sym_GT_GT, + ACTIONS(791), 1, anon_sym_PLUS, + ACTIONS(793), 1, anon_sym_DASH, + ACTIONS(795), 1, anon_sym_PERCENT, + ACTIONS(797), 1, + anon_sym_STAR_STAR, + STATE(113), 1, + sym_ternary_if, + STATE(395), 1, + sym_comment, + ACTIONS(496), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(498), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_QMARK, - [14641] = 21, + [15458] = 13, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(688), 1, + ACTIONS(761), 1, anon_sym_STAR, - ACTIONS(690), 1, + ACTIONS(763), 1, anon_sym_SLASH, - ACTIONS(696), 1, - anon_sym_EQ_EQ, - ACTIONS(698), 1, - anon_sym_BANG_EQ, - ACTIONS(700), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_LT_EQ, - ACTIONS(704), 1, - anon_sym_GT, - ACTIONS(706), 1, - anon_sym_GT_EQ, - ACTIONS(708), 1, - anon_sym_AMP, - ACTIONS(710), 1, - anon_sym_PIPE, - ACTIONS(712), 1, - anon_sym_CARET, - ACTIONS(714), 1, + ACTIONS(787), 1, anon_sym_LT_LT, - ACTIONS(716), 1, + ACTIONS(789), 1, anon_sym_GT_GT, - ACTIONS(718), 1, + ACTIONS(791), 1, anon_sym_PLUS, - ACTIONS(720), 1, + ACTIONS(793), 1, anon_sym_DASH, - ACTIONS(722), 1, + ACTIONS(795), 1, anon_sym_PERCENT, - ACTIONS(724), 1, + ACTIONS(797), 1, anon_sym_STAR_STAR, - STATE(96), 1, + STATE(113), 1, sym_ternary_if, - STATE(386), 1, + STATE(396), 1, sym_comment, - ACTIONS(417), 4, + ACTIONS(554), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(556), 9, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, anon_sym_LBRACE, anon_sym_QMARK, - [14708] = 4, + [15509] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(831), 1, + anon_sym_const, + ACTIONS(833), 1, + anon_sym_function, + ACTIONS(835), 1, + anon_sym_inline, + ACTIONS(837), 1, + anon_sym_mapping, + ACTIONS(839), 1, + anon_sym_record, + ACTIONS(841), 1, + anon_sym_struct, + ACTIONS(843), 1, + anon_sym_transition, + ACTIONS(845), 1, + anon_sym_AT, + ACTIONS(847), 1, + anon_sym_RBRACE, + STATE(397), 1, + sym_comment, + STATE(399), 1, + aux_sym_program_declaration_repeat1, + STATE(456), 1, + sym_program_item, + STATE(508), 1, + aux_sym_function_declaration_repeat1, + STATE(549), 1, + sym_annotation, + STATE(455), 7, + sym_constant_declaration, + sym_function_declaration, + sym_inline_declaration, + sym_transition_declaration, + sym_struct_declaration, + sym_record_declaration, + sym_mapping_declaration, + [15564] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(798), 1, + ACTIONS(801), 1, aux_sym_variable_identifier_token1, - STATE(387), 1, + STATE(398), 1, sym_comment, - ACTIONS(796), 20, + ACTIONS(799), 19, anon_sym_address, anon_sym_bool, - anon_sym_constant, anon_sym_field, anon_sym_group, anon_sym_i8, @@ -25923,8 +28339,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i32, anon_sym_i64, anon_sym_i128, - anon_sym_private, - anon_sym_public, anon_sym_scalar, anon_sym_u8, anon_sym_u16, @@ -25933,38 +28347,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u128, aux_sym_constant_identifier_token1, anon_sym_LPAREN, - [14740] = 16, + anon_sym_LBRACK, + sym_signature_type, + [15595] = 16, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(800), 1, + ACTIONS(831), 1, anon_sym_const, - ACTIONS(802), 1, + ACTIONS(833), 1, anon_sym_function, - ACTIONS(804), 1, + ACTIONS(835), 1, anon_sym_inline, - ACTIONS(806), 1, + ACTIONS(837), 1, anon_sym_mapping, - ACTIONS(808), 1, + ACTIONS(839), 1, anon_sym_record, - ACTIONS(810), 1, + ACTIONS(841), 1, anon_sym_struct, - ACTIONS(812), 1, + ACTIONS(843), 1, anon_sym_transition, - ACTIONS(814), 1, + ACTIONS(845), 1, anon_sym_AT, - ACTIONS(816), 1, + ACTIONS(849), 1, anon_sym_RBRACE, - STATE(388), 1, + STATE(399), 1, sym_comment, - STATE(389), 1, + STATE(400), 1, aux_sym_program_declaration_repeat1, - STATE(432), 1, + STATE(456), 1, sym_program_item, - STATE(504), 1, + STATE(508), 1, aux_sym_function_declaration_repeat1, - STATE(543), 1, + STATE(549), 1, sym_annotation, - STATE(430), 7, + STATE(455), 7, sym_constant_declaration, sym_function_declaration, sym_inline_declaration, @@ -25972,76 +28388,37 @@ static const uint16_t ts_small_parse_table[] = { sym_struct_declaration, sym_record_declaration, sym_mapping_declaration, - [14795] = 15, + [15650] = 15, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(818), 1, + ACTIONS(851), 1, anon_sym_const, - ACTIONS(821), 1, + ACTIONS(854), 1, anon_sym_function, - ACTIONS(824), 1, + ACTIONS(857), 1, anon_sym_inline, - ACTIONS(827), 1, + ACTIONS(860), 1, anon_sym_mapping, - ACTIONS(830), 1, + ACTIONS(863), 1, anon_sym_record, - ACTIONS(833), 1, + ACTIONS(866), 1, anon_sym_struct, - ACTIONS(836), 1, + ACTIONS(869), 1, anon_sym_transition, - ACTIONS(839), 1, + ACTIONS(872), 1, anon_sym_AT, - ACTIONS(842), 1, + ACTIONS(875), 1, anon_sym_RBRACE, - STATE(432), 1, + STATE(456), 1, sym_program_item, - STATE(504), 1, + STATE(508), 1, aux_sym_function_declaration_repeat1, - STATE(543), 1, + STATE(549), 1, sym_annotation, - STATE(389), 2, + STATE(400), 2, sym_comment, aux_sym_program_declaration_repeat1, - STATE(430), 7, - sym_constant_declaration, - sym_function_declaration, - sym_inline_declaration, - sym_transition_declaration, - sym_struct_declaration, - sym_record_declaration, - sym_mapping_declaration, - [14848] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(800), 1, - anon_sym_const, - ACTIONS(802), 1, - anon_sym_function, - ACTIONS(804), 1, - anon_sym_inline, - ACTIONS(806), 1, - anon_sym_mapping, - ACTIONS(808), 1, - anon_sym_record, - ACTIONS(810), 1, - anon_sym_struct, - ACTIONS(812), 1, - anon_sym_transition, - ACTIONS(814), 1, - anon_sym_AT, - ACTIONS(844), 1, - anon_sym_RBRACE, - STATE(388), 1, - aux_sym_program_declaration_repeat1, - STATE(390), 1, - sym_comment, - STATE(432), 1, - sym_program_item, - STATE(504), 1, - aux_sym_function_declaration_repeat1, - STATE(543), 1, - sym_annotation, - STATE(430), 7, + STATE(455), 7, sym_constant_declaration, sym_function_declaration, sym_inline_declaration, @@ -26049,341 +28426,136 @@ static const uint16_t ts_small_parse_table[] = { sym_struct_declaration, sym_record_declaration, sym_mapping_declaration, - [14903] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(798), 1, - aux_sym_variable_identifier_token1, - STATE(391), 1, - sym_comment, - ACTIONS(796), 17, - anon_sym_address, - anon_sym_bool, - anon_sym_field, - anon_sym_group, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_scalar, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - aux_sym_constant_identifier_token1, - anon_sym_LPAREN, - [14932] = 8, + [15703] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(204), 1, + ACTIONS(223), 1, anon_sym_COMMA, - ACTIONS(846), 1, + ACTIONS(877), 1, anon_sym_field, - ACTIONS(848), 1, + ACTIONS(879), 1, anon_sym_group, - ACTIONS(852), 1, + ACTIONS(883), 1, anon_sym_scalar, - STATE(392), 1, + STATE(401), 1, sym_comment, - ACTIONS(850), 5, + ACTIONS(881), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - ACTIONS(854), 5, + ACTIONS(885), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - [14965] = 8, + [15736] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(846), 1, + ACTIONS(877), 1, anon_sym_field, - ACTIONS(848), 1, + ACTIONS(879), 1, anon_sym_group, - ACTIONS(852), 1, + ACTIONS(883), 1, anon_sym_scalar, - ACTIONS(856), 1, + ACTIONS(887), 1, anon_sym_COMMA, - STATE(393), 1, - sym_comment, - ACTIONS(850), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(854), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - [14998] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(858), 1, - anon_sym_field, - ACTIONS(860), 1, - anon_sym_group, - ACTIONS(864), 1, - anon_sym_scalar, - STATE(394), 1, + STATE(402), 1, sym_comment, - ACTIONS(862), 5, + ACTIONS(881), 5, anon_sym_i8, anon_sym_i16, anon_sym_i32, anon_sym_i64, anon_sym_i128, - ACTIONS(866), 5, + ACTIONS(885), 5, anon_sym_u8, anon_sym_u16, anon_sym_u32, anon_sym_u64, anon_sym_u128, - [15028] = 7, + [15769] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(846), 1, + ACTIONS(889), 1, anon_sym_field, - ACTIONS(848), 1, + ACTIONS(891), 1, anon_sym_group, - ACTIONS(852), 1, + ACTIONS(895), 1, anon_sym_scalar, - STATE(395), 1, - sym_comment, - ACTIONS(850), 5, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - ACTIONS(854), 5, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - [15058] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(870), 1, - aux_sym_variable_identifier_token1, - ACTIONS(872), 1, - anon_sym_RPAREN, - STATE(396), 1, - sym_comment, - STATE(557), 1, - sym_function_parameter, - STATE(630), 1, - sym_identifier, - STATE(657), 1, - sym_function_parameters, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - ACTIONS(868), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - [15092] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(870), 1, - aux_sym_variable_identifier_token1, - ACTIONS(874), 1, - anon_sym_RPAREN, - STATE(397), 1, - sym_comment, - STATE(557), 1, - sym_function_parameter, - STATE(630), 1, - sym_identifier, - STATE(673), 1, - sym_function_parameters, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - ACTIONS(868), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - [15126] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(878), 1, - anon_sym_finalize, - STATE(398), 1, - sym_comment, - STATE(462), 1, - sym_finalizer, - ACTIONS(876), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [15150] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(878), 1, - anon_sym_finalize, - STATE(399), 1, - sym_comment, - STATE(438), 1, - sym_finalizer, - ACTIONS(880), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [15174] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(884), 1, - anon_sym_EQ, - STATE(400), 1, - sym_comment, - ACTIONS(882), 10, - anon_sym_in, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - [15196] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(878), 1, - anon_sym_finalize, - STATE(401), 1, - sym_comment, - STATE(437), 1, - sym_finalizer, - ACTIONS(886), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [15220] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(878), 1, - anon_sym_finalize, - STATE(402), 1, - sym_comment, - STATE(455), 1, - sym_finalizer, - ACTIONS(888), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [15244] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(878), 1, - anon_sym_finalize, STATE(403), 1, sym_comment, - STATE(436), 1, - sym_finalizer, - ACTIONS(890), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [15268] = 5, + ACTIONS(893), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(897), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + [15799] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(878), 1, - anon_sym_finalize, + ACTIONS(877), 1, + anon_sym_field, + ACTIONS(879), 1, + anon_sym_group, + ACTIONS(883), 1, + anon_sym_scalar, STATE(404), 1, sym_comment, - STATE(465), 1, - sym_finalizer, - ACTIONS(892), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [15292] = 10, + ACTIONS(881), 5, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + ACTIONS(885), 5, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + [15829] = 10, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(870), 1, + ACTIONS(901), 1, aux_sym_variable_identifier_token1, - ACTIONS(894), 1, + ACTIONS(903), 1, anon_sym_RPAREN, STATE(405), 1, sym_comment, - STATE(557), 1, + STATE(581), 1, sym_function_parameter, - STATE(626), 1, + STATE(686), 1, sym_function_parameters, - STATE(630), 1, + STATE(687), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - ACTIONS(868), 3, + ACTIONS(899), 3, anon_sym_constant, anon_sym_private, anon_sym_public, - [15326] = 5, + [15863] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(878), 1, + ACTIONS(907), 1, anon_sym_finalize, STATE(406), 1, sym_comment, - STATE(467), 1, + STATE(446), 1, sym_finalizer, - ACTIONS(896), 9, + ACTIONS(905), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26393,88 +28565,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15350] = 10, + [15887] = 10, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(870), 1, + ACTIONS(901), 1, aux_sym_variable_identifier_token1, - ACTIONS(898), 1, + ACTIONS(909), 1, anon_sym_RPAREN, STATE(407), 1, sym_comment, - STATE(557), 1, + STATE(581), 1, sym_function_parameter, - STATE(624), 1, + STATE(684), 1, sym_function_parameters, - STATE(630), 1, + STATE(687), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - ACTIONS(868), 3, + ACTIONS(899), 3, anon_sym_constant, anon_sym_private, anon_sym_public, - [15384] = 10, + [15921] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(907), 1, + anon_sym_finalize, + STATE(408), 1, + sym_comment, + STATE(466), 1, + sym_finalizer, + ACTIONS(911), 9, + anon_sym_const, + anon_sym_function, + anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, + anon_sym_transition, + anon_sym_AT, + anon_sym_RBRACE, + [15945] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(907), 1, + anon_sym_finalize, + STATE(409), 1, + sym_comment, + STATE(447), 1, + sym_finalizer, + ACTIONS(913), 9, + anon_sym_const, + anon_sym_function, + anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, + anon_sym_transition, + anon_sym_AT, + anon_sym_RBRACE, + [15969] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(870), 1, + ACTIONS(901), 1, aux_sym_variable_identifier_token1, - ACTIONS(900), 1, + ACTIONS(915), 1, anon_sym_RPAREN, - STATE(408), 1, + STATE(410), 1, sym_comment, - STATE(557), 1, + STATE(581), 1, sym_function_parameter, - STATE(630), 1, - sym_identifier, - STATE(675), 1, + STATE(637), 1, sym_function_parameters, - STATE(145), 2, + STATE(687), 1, + sym_identifier, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - ACTIONS(868), 3, + ACTIONS(899), 3, anon_sym_constant, anon_sym_private, anon_sym_public, - [15418] = 10, + [16003] = 10, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(870), 1, + ACTIONS(901), 1, aux_sym_variable_identifier_token1, - ACTIONS(902), 1, + ACTIONS(917), 1, anon_sym_RPAREN, - STATE(409), 1, + STATE(411), 1, sym_comment, - STATE(557), 1, + STATE(581), 1, sym_function_parameter, - STATE(630), 1, - sym_identifier, - STATE(677), 1, + STATE(666), 1, sym_function_parameters, - STATE(145), 2, + STATE(687), 1, + sym_identifier, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - ACTIONS(868), 3, + ACTIONS(899), 3, anon_sym_constant, anon_sym_private, anon_sym_public, - [15452] = 5, + [16037] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(878), 1, + ACTIONS(907), 1, anon_sym_finalize, - STATE(410), 1, + STATE(412), 1, sym_comment, - STATE(447), 1, + STATE(448), 1, sym_finalizer, - ACTIONS(904), 9, + ACTIONS(919), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26484,35 +28694,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15476] = 5, + [16061] = 10, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(878), 1, - anon_sym_finalize, - STATE(411), 1, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(901), 1, + aux_sym_variable_identifier_token1, + ACTIONS(921), 1, + anon_sym_RPAREN, + STATE(413), 1, sym_comment, - STATE(452), 1, - sym_finalizer, - ACTIONS(906), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [15500] = 5, + STATE(581), 1, + sym_function_parameter, + STATE(665), 1, + sym_function_parameters, + STATE(687), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + ACTIONS(899), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + [16095] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(878), 1, + ACTIONS(907), 1, anon_sym_finalize, - STATE(412), 1, + STATE(414), 1, sym_comment, - STATE(463), 1, + STATE(481), 1, sym_finalizer, - ACTIONS(908), 9, + ACTIONS(923), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26522,16 +28737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15524] = 5, + [16119] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(878), 1, + ACTIONS(907), 1, anon_sym_finalize, - STATE(413), 1, + STATE(415), 1, sym_comment, - STATE(468), 1, + STATE(471), 1, sym_finalizer, - ACTIONS(910), 9, + ACTIONS(925), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26541,16 +28756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15548] = 5, + [16143] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(878), 1, + ACTIONS(907), 1, anon_sym_finalize, - STATE(414), 1, + STATE(416), 1, sym_comment, - STATE(464), 1, + STATE(453), 1, sym_finalizer, - ACTIONS(912), 9, + ACTIONS(927), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26560,76 +28775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15572] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(870), 1, - aux_sym_variable_identifier_token1, - ACTIONS(914), 1, - anon_sym_RPAREN, - STATE(415), 1, - sym_comment, - STATE(557), 1, - sym_function_parameter, - STATE(628), 1, - sym_function_parameters, - STATE(630), 1, - sym_identifier, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - ACTIONS(868), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - [15606] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(870), 1, - aux_sym_variable_identifier_token1, - ACTIONS(916), 1, - anon_sym_RPAREN, - STATE(416), 1, - sym_comment, - STATE(616), 1, - sym_function_parameter, - STATE(630), 1, - sym_identifier, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - ACTIONS(868), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - [15637] = 3, + [16167] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(417), 1, - sym_comment, - ACTIONS(310), 10, - anon_sym_const, + ACTIONS(907), 1, anon_sym_finalize, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [15656] = 3, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(418), 1, + STATE(417), 1, sym_comment, - ACTIONS(298), 10, + STATE(458), 1, + sym_finalizer, + ACTIONS(929), 9, anon_sym_const, - anon_sym_finalize, anon_sym_function, anon_sym_inline, anon_sym_mapping, @@ -26638,122 +28794,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15675] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(870), 1, - aux_sym_variable_identifier_token1, - STATE(419), 1, - sym_comment, - STATE(577), 1, - sym_struct_component_declaration, - STATE(621), 1, - sym_identifier, - STATE(663), 1, - sym_struct_component_declarations, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - ACTIONS(918), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - [15706] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(870), 1, - aux_sym_variable_identifier_token1, - STATE(420), 1, - sym_comment, - STATE(577), 1, - sym_struct_component_declaration, - STATE(620), 1, - sym_struct_component_declarations, - STATE(621), 1, - sym_identifier, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - ACTIONS(918), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - [15737] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(870), 1, - aux_sym_variable_identifier_token1, - ACTIONS(920), 1, - anon_sym_RBRACE, - STATE(421), 1, - sym_comment, - STATE(581), 1, - sym_struct_component_declaration, - STATE(621), 1, - sym_identifier, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - ACTIONS(918), 3, - anon_sym_constant, - anon_sym_private, - anon_sym_public, - [15768] = 9, + [16191] = 10, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(870), 1, + ACTIONS(901), 1, aux_sym_variable_identifier_token1, - ACTIONS(922), 1, - anon_sym_RBRACE, - STATE(422), 1, + ACTIONS(931), 1, + anon_sym_RPAREN, + STATE(418), 1, sym_comment, STATE(581), 1, - sym_struct_component_declaration, - STATE(621), 1, + sym_function_parameter, + STATE(678), 1, + sym_function_parameters, + STATE(687), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - ACTIONS(918), 3, + ACTIONS(899), 3, anon_sym_constant, anon_sym_private, anon_sym_public, - [15799] = 9, + [16225] = 10, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(870), 1, + ACTIONS(901), 1, aux_sym_variable_identifier_token1, - ACTIONS(924), 1, + ACTIONS(933), 1, anon_sym_RPAREN, - STATE(423), 1, + STATE(419), 1, sym_comment, - STATE(616), 1, + STATE(581), 1, sym_function_parameter, - STATE(630), 1, + STATE(631), 1, + sym_function_parameters, + STATE(687), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - ACTIONS(868), 3, + ACTIONS(899), 3, anon_sym_constant, anon_sym_private, anon_sym_public, - [15830] = 3, + [16259] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(424), 1, + ACTIONS(907), 1, + anon_sym_finalize, + STATE(420), 1, sym_comment, - ACTIONS(926), 9, + STATE(474), 1, + sym_finalizer, + ACTIONS(935), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26763,12 +28861,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15848] = 3, + [16283] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(425), 1, + ACTIONS(907), 1, + anon_sym_finalize, + STATE(421), 1, sym_comment, - ACTIONS(928), 9, + STATE(437), 1, + sym_finalizer, + ACTIONS(937), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26778,12 +28880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15866] = 3, + [16307] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(426), 1, + ACTIONS(907), 1, + anon_sym_finalize, + STATE(422), 1, sym_comment, - ACTIONS(930), 9, + STATE(461), 1, + sym_finalizer, + ACTIONS(939), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26793,12 +28899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15884] = 3, + [16331] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(427), 1, + ACTIONS(907), 1, + anon_sym_finalize, + STATE(423), 1, sym_comment, - ACTIONS(932), 9, + STATE(459), 1, + sym_finalizer, + ACTIONS(941), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26808,48 +28918,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15902] = 8, + [16355] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(945), 1, + anon_sym_EQ, + STATE(424), 1, + sym_comment, + ACTIONS(943), 10, + anon_sym_in, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + [16377] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(870), 1, + ACTIONS(901), 1, aux_sym_variable_identifier_token1, - STATE(428), 1, + ACTIONS(949), 1, + anon_sym_RBRACE, + STATE(425), 1, sym_comment, - STATE(616), 1, - sym_function_parameter, - STATE(630), 1, + STATE(625), 1, + sym_struct_component_declaration, + STATE(682), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - ACTIONS(868), 3, + ACTIONS(947), 3, anon_sym_constant, anon_sym_private, anon_sym_public, - [15930] = 3, + [16408] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(429), 1, - sym_comment, - ACTIONS(934), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(901), 1, + aux_sym_variable_identifier_token1, + ACTIONS(951), 1, anon_sym_RBRACE, - [15948] = 3, + STATE(426), 1, + sym_comment, + STATE(625), 1, + sym_struct_component_declaration, + STATE(682), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + ACTIONS(947), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + [16439] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(430), 1, + STATE(427), 1, sym_comment, - ACTIONS(936), 9, + ACTIONS(296), 10, anon_sym_const, + anon_sym_finalize, anon_sym_function, anon_sym_inline, anon_sym_mapping, @@ -26858,58 +28996,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [15966] = 3, + [16458] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(431), 1, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(901), 1, + aux_sym_variable_identifier_token1, + STATE(428), 1, sym_comment, - ACTIONS(938), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [15984] = 3, + STATE(583), 1, + sym_struct_component_declaration, + STATE(679), 1, + sym_struct_component_declarations, + STATE(682), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + ACTIONS(947), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + [16489] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(432), 1, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(901), 1, + aux_sym_variable_identifier_token1, + ACTIONS(953), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_comment, - ACTIONS(940), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [16002] = 3, + STATE(629), 1, + sym_function_parameter, + STATE(687), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + ACTIONS(899), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + [16520] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(433), 1, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(901), 1, + aux_sym_variable_identifier_token1, + ACTIONS(955), 1, + anon_sym_RPAREN, + STATE(430), 1, sym_comment, - ACTIONS(942), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, - anon_sym_RBRACE, - [16020] = 3, + STATE(629), 1, + sym_function_parameter, + STATE(687), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + ACTIONS(899), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + [16551] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(434), 1, + STATE(431), 1, sym_comment, - ACTIONS(944), 9, + ACTIONS(282), 10, anon_sym_const, + anon_sym_finalize, anon_sym_function, anon_sym_inline, anon_sym_mapping, @@ -26918,32 +29078,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16038] = 8, + [16570] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(870), 1, + ACTIONS(901), 1, aux_sym_variable_identifier_token1, - STATE(435), 1, + STATE(432), 1, sym_comment, - STATE(581), 1, + STATE(583), 1, sym_struct_component_declaration, - STATE(621), 1, + STATE(681), 1, + sym_struct_component_declarations, + STATE(682), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - ACTIONS(918), 3, + ACTIONS(947), 3, anon_sym_constant, anon_sym_private, anon_sym_public, - [16066] = 3, + [16601] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(436), 1, + ACTIONS(959), 1, + anon_sym_EQ, + STATE(433), 1, + sym_comment, + ACTIONS(957), 8, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + [16621] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(963), 1, + anon_sym_EQ, + STATE(434), 1, + sym_comment, + ACTIONS(961), 8, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + [16641] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + STATE(435), 1, sym_comment, - ACTIONS(946), 9, + ACTIONS(965), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26953,12 +29147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16084] = 3, + [16659] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(437), 1, + STATE(436), 1, sym_comment, - ACTIONS(948), 9, + ACTIONS(967), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26968,12 +29162,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16102] = 3, + [16677] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(438), 1, + STATE(437), 1, sym_comment, - ACTIONS(950), 9, + ACTIONS(969), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26983,12 +29177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16120] = 3, + [16695] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(439), 1, + STATE(438), 1, sym_comment, - ACTIONS(952), 9, + ACTIONS(971), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -26998,14 +29192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16138] = 4, + [16713] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(956), 1, + ACTIONS(975), 1, anon_sym_EQ, - STATE(440), 1, + STATE(439), 1, sym_comment, - ACTIONS(954), 8, + ACTIONS(973), 8, anon_sym_in, anon_sym_RPAREN, anon_sym_LBRACE, @@ -27014,14 +29208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_EQ_GT, - [16158] = 4, + [16733] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(960), 1, + ACTIONS(979), 1, anon_sym_EQ, - STATE(441), 1, + STATE(440), 1, sym_comment, - ACTIONS(958), 8, + ACTIONS(977), 8, anon_sym_in, anon_sym_RPAREN, anon_sym_LBRACE, @@ -27030,14 +29224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_EQ_GT, - [16178] = 4, + [16753] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(964), 1, + ACTIONS(983), 1, anon_sym_EQ, - STATE(442), 1, + STATE(441), 1, sym_comment, - ACTIONS(962), 8, + ACTIONS(981), 8, anon_sym_in, anon_sym_RPAREN, anon_sym_LBRACE, @@ -27046,14 +29240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_EQ_GT, - [16198] = 4, + [16773] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(968), 1, + ACTIONS(987), 1, anon_sym_EQ, - STATE(443), 1, + STATE(442), 1, sym_comment, - ACTIONS(966), 8, + ACTIONS(985), 8, anon_sym_in, anon_sym_RPAREN, anon_sym_LBRACE, @@ -27062,14 +29256,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_EQ_GT, - [16218] = 4, + [16793] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(972), 1, + ACTIONS(991), 1, anon_sym_EQ, - STATE(444), 1, + STATE(443), 1, sym_comment, - ACTIONS(970), 8, + ACTIONS(989), 8, anon_sym_in, anon_sym_RPAREN, anon_sym_LBRACE, @@ -27078,28 +29272,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_EQ_GT, - [16238] = 4, + [16813] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(976), 1, - anon_sym_EQ, - STATE(445), 1, + STATE(444), 1, sym_comment, - ACTIONS(974), 8, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(993), 9, + anon_sym_const, + anon_sym_function, + anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, + anon_sym_transition, + anon_sym_AT, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - [16258] = 3, + [16831] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(901), 1, + aux_sym_variable_identifier_token1, + STATE(445), 1, + sym_comment, + STATE(629), 1, + sym_function_parameter, + STATE(687), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + ACTIONS(899), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + [16859] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(446), 1, sym_comment, - ACTIONS(978), 9, + ACTIONS(995), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27109,12 +29322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16276] = 3, + [16877] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(447), 1, sym_comment, - ACTIONS(980), 9, + ACTIONS(997), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27124,45 +29337,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16294] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(984), 1, - anon_sym_EQ, - STATE(448), 1, - sym_comment, - ACTIONS(982), 8, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - [16314] = 5, + [16895] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(988), 1, - anon_sym_EQ, - ACTIONS(990), 1, - anon_sym_DOT, - STATE(449), 1, - sym_comment, - ACTIONS(986), 7, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_LBRACE, + STATE(448), 1, + sym_comment, + ACTIONS(999), 9, + anon_sym_const, + anon_sym_function, + anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, + anon_sym_transition, + anon_sym_AT, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - [16336] = 3, + [16913] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(450), 1, + STATE(449), 1, sym_comment, - ACTIONS(992), 9, + ACTIONS(1001), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27172,12 +29367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16354] = 3, + [16931] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - STATE(451), 1, + STATE(450), 1, sym_comment, - ACTIONS(994), 9, + ACTIONS(1003), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27187,12 +29382,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16372] = 3, + [16949] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1007), 1, + anon_sym_EQ, + STATE(451), 1, + sym_comment, + ACTIONS(1005), 8, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + [16969] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(452), 1, sym_comment, - ACTIONS(996), 9, + ACTIONS(1009), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27202,12 +29413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16390] = 3, + [16987] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(453), 1, sym_comment, - ACTIONS(998), 9, + ACTIONS(1011), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27217,12 +29428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16408] = 3, + [17005] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(454), 1, sym_comment, - ACTIONS(1000), 9, + ACTIONS(1013), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27232,12 +29443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16426] = 3, + [17023] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(455), 1, sym_comment, - ACTIONS(1002), 9, + ACTIONS(1015), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27247,12 +29458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16444] = 3, + [17041] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(456), 1, sym_comment, - ACTIONS(1004), 9, + ACTIONS(1017), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27262,12 +29473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16462] = 3, + [17059] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(457), 1, sym_comment, - ACTIONS(1006), 9, + ACTIONS(1019), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27277,12 +29488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16480] = 3, + [17077] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(458), 1, sym_comment, - ACTIONS(1008), 9, + ACTIONS(1021), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27292,12 +29503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16498] = 3, + [17095] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(459), 1, sym_comment, - ACTIONS(1010), 9, + ACTIONS(1023), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27307,27 +29518,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16516] = 3, + [17113] = 5, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1027), 1, + anon_sym_EQ, + ACTIONS(1029), 1, + anon_sym_DOT, STATE(460), 1, sym_comment, - ACTIONS(1012), 9, - anon_sym_const, - anon_sym_function, - anon_sym_inline, - anon_sym_mapping, - anon_sym_record, - anon_sym_struct, - anon_sym_transition, - anon_sym_AT, + ACTIONS(1025), 7, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - [16534] = 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + [17135] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(461), 1, sym_comment, - ACTIONS(1014), 9, + ACTIONS(1031), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27337,12 +29550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16552] = 3, + [17153] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(462), 1, sym_comment, - ACTIONS(1016), 9, + ACTIONS(1033), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27352,12 +29565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16570] = 3, + [17171] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(463), 1, sym_comment, - ACTIONS(1018), 9, + ACTIONS(1035), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27367,12 +29580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16588] = 3, + [17189] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(464), 1, sym_comment, - ACTIONS(1020), 9, + ACTIONS(1037), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27382,12 +29595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16606] = 3, + [17207] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(465), 1, sym_comment, - ACTIONS(1022), 9, + ACTIONS(1039), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27397,12 +29610,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16624] = 3, + [17225] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(466), 1, sym_comment, - ACTIONS(1024), 9, + ACTIONS(1041), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27412,12 +29625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16642] = 3, + [17243] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(467), 1, sym_comment, - ACTIONS(1026), 9, + ACTIONS(1043), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27427,12 +29640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16660] = 3, + [17261] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(468), 1, sym_comment, - ACTIONS(1028), 9, + ACTIONS(1045), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27442,28 +29655,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16678] = 4, + [17279] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1032), 1, - anon_sym_EQ, STATE(469), 1, sym_comment, - ACTIONS(1030), 8, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(1047), 9, + anon_sym_const, + anon_sym_function, + anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, + anon_sym_transition, + anon_sym_AT, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - [16698] = 3, + [17297] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(470), 1, sym_comment, - ACTIONS(1034), 9, + ACTIONS(1049), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27473,12 +29685,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16716] = 3, + [17315] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(471), 1, sym_comment, - ACTIONS(1036), 9, + ACTIONS(1051), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27488,12 +29700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16734] = 3, + [17333] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(472), 1, sym_comment, - ACTIONS(1038), 9, + ACTIONS(1053), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27503,12 +29715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16752] = 3, + [17351] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(473), 1, sym_comment, - ACTIONS(1040), 9, + ACTIONS(1055), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27518,12 +29730,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16770] = 3, + [17369] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(474), 1, sym_comment, - ACTIONS(1042), 9, + ACTIONS(1057), 9, anon_sym_const, anon_sym_function, anon_sym_inline, @@ -27533,3683 +29745,3934 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transition, anon_sym_AT, anon_sym_RBRACE, - [16788] = 6, + [17387] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1046), 1, - aux_sym_constant_identifier_token2, STATE(475), 1, sym_comment, - STATE(483), 1, - aux_sym_constant_identifier_repeat1, - ACTIONS(1044), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - ACTIONS(225), 4, + ACTIONS(1059), 9, + anon_sym_const, anon_sym_function, anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, anon_sym_transition, anon_sym_AT, - [16811] = 4, + anon_sym_RBRACE, + [17405] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1050), 1, - anon_sym_EQ, STATE(476), 1, sym_comment, - ACTIONS(1048), 7, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(1061), 9, + anon_sym_const, + anon_sym_function, + anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, + anon_sym_transition, + anon_sym_AT, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - [16830] = 4, + [17423] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1054), 1, - anon_sym_EQ, STATE(477), 1, sym_comment, - ACTIONS(1052), 7, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(1063), 9, + anon_sym_const, + anon_sym_function, + anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, + anon_sym_transition, + anon_sym_AT, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - [16849] = 9, + [17441] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(176), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1056), 1, - sym_nonzero_decimal_digit, - ACTIONS(1058), 1, + ACTIONS(901), 1, aux_sym_variable_identifier_token1, - ACTIONS(1060), 1, - anon_sym_0, - STATE(255), 1, - sym_identifier, - STATE(264), 1, - sym_tuple_index, STATE(478), 1, sym_comment, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [16878] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(1064), 1, - anon_sym_EQ, - STATE(479), 1, - sym_comment, - ACTIONS(1062), 7, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - [16897] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(43), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1066), 1, - sym_nonzero_decimal_digit, - ACTIONS(1068), 1, - aux_sym_variable_identifier_token1, - ACTIONS(1070), 1, - anon_sym_0, - STATE(138), 1, + STATE(625), 1, + sym_struct_component_declaration, + STATE(682), 1, sym_identifier, - STATE(162), 1, - sym_tuple_index, - STATE(480), 1, - sym_comment, - STATE(141), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [16926] = 5, + ACTIONS(947), 3, + anon_sym_constant, + anon_sym_private, + anon_sym_public, + [17469] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1075), 1, - aux_sym_constant_identifier_token2, - ACTIONS(1072), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - STATE(481), 2, + STATE(479), 1, sym_comment, - aux_sym_constant_identifier_repeat1, - ACTIONS(232), 4, + ACTIONS(1065), 9, + anon_sym_const, anon_sym_function, anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, anon_sym_transition, anon_sym_AT, - [16947] = 6, + anon_sym_RBRACE, + [17487] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1046), 1, - aux_sym_constant_identifier_token2, - STATE(481), 1, - aux_sym_constant_identifier_repeat1, - STATE(482), 1, + STATE(480), 1, sym_comment, - ACTIONS(1044), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - ACTIONS(236), 4, + ACTIONS(1067), 9, + anon_sym_const, anon_sym_function, anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, anon_sym_transition, anon_sym_AT, - [16970] = 6, + anon_sym_RBRACE, + [17505] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1046), 1, - aux_sym_constant_identifier_token2, STATE(481), 1, - aux_sym_constant_identifier_repeat1, - STATE(483), 1, sym_comment, - ACTIONS(1044), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - ACTIONS(221), 4, + ACTIONS(1069), 9, + anon_sym_const, anon_sym_function, anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, anon_sym_transition, anon_sym_AT, - [16993] = 6, + anon_sym_RBRACE, + [17523] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1046), 1, - aux_sym_constant_identifier_token2, STATE(482), 1, - aux_sym_constant_identifier_repeat1, - STATE(484), 1, sym_comment, - ACTIONS(1044), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - ACTIONS(214), 4, + ACTIONS(1071), 9, + anon_sym_const, anon_sym_function, anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, anon_sym_transition, anon_sym_AT, - [17016] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1056), 1, - sym_nonzero_decimal_digit, - ACTIONS(1060), 1, - anon_sym_0, - ACTIONS(1078), 1, - aux_sym_variable_identifier_token1, - STATE(255), 1, - sym_identifier, - STATE(264), 1, - sym_tuple_index, - STATE(485), 1, - sym_comment, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [17045] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(1082), 1, - anon_sym_EQ, - STATE(486), 1, - sym_comment, - ACTIONS(1080), 7, - anon_sym_in, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - [17064] = 4, + [17541] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(241), 1, - aux_sym_constant_identifier_token2, - STATE(487), 1, + STATE(483), 1, sym_comment, - ACTIONS(243), 6, + ACTIONS(1073), 9, + anon_sym_const, anon_sym_function, anon_sym_inline, + anon_sym_mapping, + anon_sym_record, + anon_sym_struct, anon_sym_transition, - aux_sym_decimal_digit_token1, - anon_sym__, anon_sym_AT, - [17082] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, - aux_sym_variable_identifier_token1, - ACTIONS(1084), 1, - anon_sym_RBRACE, - STATE(488), 1, - sym_comment, - STATE(571), 1, - sym_identifier, - STATE(599), 1, - sym_struct_component_initializer, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [17108] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, - aux_sym_variable_identifier_token1, - ACTIONS(1086), 1, - anon_sym_LPAREN, - STATE(489), 1, - sym_comment, - STATE(619), 1, - sym_identifier, - STATE(665), 1, - sym_identifier_or_identifiers, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [17134] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, - aux_sym_variable_identifier_token1, - ACTIONS(1088), 1, anon_sym_RBRACE, - STATE(490), 1, - sym_comment, - STATE(571), 1, - sym_identifier, - STATE(599), 1, - sym_struct_component_initializer, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [17160] = 8, + [17559] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, ACTIONS(1078), 1, - aux_sym_variable_identifier_token1, - ACTIONS(1090), 1, - anon_sym_RBRACE, - STATE(491), 1, + aux_sym_constant_identifier_token2, + ACTIONS(1075), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + STATE(484), 2, sym_comment, - STATE(571), 1, - sym_identifier, - STATE(599), 1, - sym_struct_component_initializer, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [17186] = 8, + aux_sym_constant_identifier_repeat1, + ACTIONS(234), 4, + anon_sym_function, + anon_sym_inline, + anon_sym_transition, + anon_sym_AT, + [17580] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, - aux_sym_variable_identifier_token1, - ACTIONS(1092), 1, - anon_sym_RBRACE, - STATE(492), 1, + ACTIONS(1083), 1, + anon_sym_EQ, + STATE(485), 1, sym_comment, - STATE(571), 1, - sym_identifier, - STATE(599), 1, - sym_struct_component_initializer, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [17212] = 7, + ACTIONS(1081), 7, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + [17599] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(214), 1, - anon_sym_in, - ACTIONS(216), 1, - anon_sym_DOT, - ACTIONS(1096), 1, + ACTIONS(1087), 1, aux_sym_constant_identifier_token2, - STATE(493), 1, + STATE(484), 1, + aux_sym_constant_identifier_repeat1, + STATE(486), 1, sym_comment, - STATE(500), 1, + ACTIONS(1085), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + ACTIONS(240), 4, + anon_sym_function, + anon_sym_inline, + anon_sym_transition, + anon_sym_AT, + [17622] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1087), 1, + aux_sym_constant_identifier_token2, + STATE(484), 1, aux_sym_constant_identifier_repeat1, - ACTIONS(1094), 2, + STATE(487), 1, + sym_comment, + ACTIONS(1085), 2, aux_sym_decimal_digit_token1, anon_sym__, - [17235] = 7, + ACTIONS(251), 4, + anon_sym_function, + anon_sym_inline, + anon_sym_transition, + anon_sym_AT, + [17645] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1091), 1, + anon_sym_EQ, + STATE(488), 1, + sym_comment, + ACTIONS(1089), 7, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + [17664] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(195), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1093), 1, + sym_nonzero_decimal_digit, + ACTIONS(1095), 1, aux_sym_variable_identifier_token1, - STATE(494), 1, - sym_comment, - STATE(570), 1, - sym_struct_component_initializer, - STATE(571), 1, + ACTIONS(1097), 1, + anon_sym_0, + STATE(260), 1, sym_identifier, - STATE(145), 2, + STATE(265), 1, + sym_tuple_index, + STATE(489), 1, + sym_comment, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17258] = 5, + [17693] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(1101), 1, - aux_sym_constant_identifier_token2, - ACTIONS(232), 2, - anon_sym_in, - anon_sym_DOT, - ACTIONS(1098), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - STATE(495), 2, - sym_comment, - aux_sym_constant_identifier_repeat1, - [17277] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(1096), 1, - aux_sym_constant_identifier_token2, - STATE(496), 1, + anon_sym_EQ, + STATE(490), 1, sym_comment, - STATE(498), 1, - aux_sym_constant_identifier_repeat1, - ACTIONS(225), 2, + ACTIONS(1099), 7, anon_sym_in, - anon_sym_DOT, - ACTIONS(1094), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - [17298] = 6, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + [17712] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1096), 1, + ACTIONS(1087), 1, aux_sym_constant_identifier_token2, - STATE(497), 1, - sym_comment, - STATE(499), 1, + STATE(486), 1, aux_sym_constant_identifier_repeat1, - ACTIONS(214), 2, - anon_sym_in, - anon_sym_DOT, - ACTIONS(1094), 2, + STATE(491), 1, + sym_comment, + ACTIONS(1085), 2, aux_sym_decimal_digit_token1, anon_sym__, - [17319] = 6, + ACTIONS(258), 4, + anon_sym_function, + anon_sym_inline, + anon_sym_transition, + anon_sym_AT, + [17735] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1096), 1, + ACTIONS(1087), 1, aux_sym_constant_identifier_token2, - STATE(495), 1, + STATE(487), 1, aux_sym_constant_identifier_repeat1, - STATE(498), 1, + STATE(492), 1, sym_comment, - ACTIONS(221), 2, - anon_sym_in, - anon_sym_DOT, - ACTIONS(1094), 2, + ACTIONS(1085), 2, aux_sym_decimal_digit_token1, anon_sym__, - [17340] = 6, + ACTIONS(244), 4, + anon_sym_function, + anon_sym_inline, + anon_sym_transition, + anon_sym_AT, + [17758] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1096), 1, - aux_sym_constant_identifier_token2, - STATE(495), 1, - aux_sym_constant_identifier_repeat1, - STATE(499), 1, + ACTIONS(1105), 1, + anon_sym_EQ, + STATE(493), 1, sym_comment, - ACTIONS(236), 2, + ACTIONS(1103), 7, anon_sym_in, - anon_sym_DOT, - ACTIONS(1094), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - [17361] = 7, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + [17777] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(236), 1, - anon_sym_in, - ACTIONS(238), 1, - anon_sym_DOT, - ACTIONS(1096), 1, - aux_sym_constant_identifier_token2, - STATE(495), 1, - aux_sym_constant_identifier_repeat1, - STATE(500), 1, + ACTIONS(1109), 1, + anon_sym_EQ, + STATE(494), 1, sym_comment, - ACTIONS(1094), 2, - aux_sym_decimal_digit_token1, - anon_sym__, - [17384] = 7, + ACTIONS(1107), 7, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + [17796] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1093), 1, + sym_nonzero_decimal_digit, + ACTIONS(1097), 1, + anon_sym_0, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(501), 1, - sym_comment, - STATE(571), 1, + STATE(260), 1, sym_identifier, - STATE(599), 1, - sym_struct_component_initializer, - STATE(145), 2, + STATE(265), 1, + sym_tuple_index, + STATE(495), 1, + sym_comment, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17407] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(1106), 1, - anon_sym_AT, - STATE(543), 1, - sym_annotation, - STATE(502), 2, - sym_comment, - aux_sym_function_declaration_repeat1, - ACTIONS(1104), 3, - anon_sym_function, - anon_sym_inline, - anon_sym_transition, - [17426] = 6, + [17825] = 9, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(11), 1, - anon_sym_assert, - ACTIONS(13), 1, - anon_sym_assert_eq, - ACTIONS(15), 1, - anon_sym_assert_neq, - STATE(503), 1, + ACTIONS(129), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1113), 1, + sym_nonzero_decimal_digit, + ACTIONS(1115), 1, + aux_sym_variable_identifier_token1, + ACTIONS(1117), 1, + anon_sym_0, + STATE(168), 1, + sym_identifier, + STATE(234), 1, + sym_tuple_index, + STATE(496), 1, sym_comment, - STATE(684), 3, - sym_assert_call, - sym_assert_equal_call, - sym_assert_not_equal_call, - [17447] = 8, + STATE(165), 2, + sym_constant_identifier, + sym_variable_identifier, + [17854] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(814), 1, - anon_sym_AT, - ACTIONS(1109), 1, - anon_sym_function, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, ACTIONS(1111), 1, - anon_sym_inline, - ACTIONS(1113), 1, - anon_sym_transition, - STATE(502), 1, - aux_sym_function_declaration_repeat1, - STATE(504), 1, + aux_sym_variable_identifier_token1, + ACTIONS(1119), 1, + anon_sym_RBRACE, + STATE(497), 1, sym_comment, - STATE(543), 1, - sym_annotation, - [17472] = 7, + STATE(575), 1, + sym_identifier, + STATE(611), 1, + sym_struct_component_initializer, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [17880] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - ACTIONS(1115), 1, - anon_sym_RPAREN, - STATE(505), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + STATE(498), 1, sym_comment, - STATE(589), 1, + STATE(635), 1, + sym_identifier_or_identifiers, + STATE(636), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17495] = 7, + [17906] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(506), 1, + ACTIONS(1123), 1, + anon_sym_RBRACE, + STATE(499), 1, sym_comment, - STATE(558), 1, - sym_struct_component_initializer, - STATE(571), 1, + STATE(575), 1, sym_identifier, - STATE(145), 2, + STATE(611), 1, + sym_struct_component_initializer, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17518] = 6, + [17932] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(507), 1, + ACTIONS(1125), 1, + anon_sym_RBRACE, + STATE(500), 1, sym_comment, - STATE(659), 1, + STATE(575), 1, sym_identifier, - STATE(145), 2, + STATE(611), 1, + sym_struct_component_initializer, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17538] = 6, + [17958] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(508), 1, + ACTIONS(1127), 1, + anon_sym_RBRACE, + STATE(501), 1, sym_comment, - STATE(645), 1, + STATE(575), 1, sym_identifier, - STATE(145), 2, + STATE(611), 1, + sym_struct_component_initializer, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17558] = 5, + [17984] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1117), 1, - anon_sym_DOT, - STATE(509), 1, + ACTIONS(260), 1, + aux_sym_constant_identifier_token2, + STATE(502), 1, sym_comment, - STATE(519), 1, + ACTIONS(262), 6, + anon_sym_function, + anon_sym_inline, + anon_sym_transition, + aux_sym_decimal_digit_token1, + anon_sym__, + anon_sym_AT, + [18002] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1131), 1, + aux_sym_constant_identifier_token2, + STATE(503), 1, + sym_comment, + STATE(510), 1, aux_sym_constant_identifier_repeat1, - ACTIONS(523), 3, + ACTIONS(251), 2, + anon_sym_in, + anon_sym_DOT, + ACTIONS(1129), 2, aux_sym_decimal_digit_token1, + anon_sym__, + [18023] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1131), 1, aux_sym_constant_identifier_token2, + STATE(503), 1, + aux_sym_constant_identifier_repeat1, + STATE(504), 1, + sym_comment, + ACTIONS(244), 2, + anon_sym_in, + anon_sym_DOT, + ACTIONS(1129), 2, + aux_sym_decimal_digit_token1, anon_sym__, - [17576] = 6, + [18044] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(43), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1068), 1, - aux_sym_variable_identifier_token1, - STATE(136), 1, - sym_identifier, + ACTIONS(1131), 1, + aux_sym_constant_identifier_token2, + STATE(505), 1, + sym_comment, STATE(510), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(240), 2, + anon_sym_in, + anon_sym_DOT, + ACTIONS(1129), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + [18065] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(244), 1, + anon_sym_in, + ACTIONS(246), 1, + anon_sym_DOT, + ACTIONS(1131), 1, + aux_sym_constant_identifier_token2, + STATE(506), 1, sym_comment, - STATE(141), 2, - sym_constant_identifier, - sym_variable_identifier, - [17596] = 5, + STATE(507), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(1129), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + [18088] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1119), 1, - anon_sym_DASH, - STATE(511), 1, + ACTIONS(251), 1, + anon_sym_in, + ACTIONS(253), 1, + anon_sym_DOT, + ACTIONS(1131), 1, + aux_sym_constant_identifier_token2, + STATE(507), 1, sym_comment, - STATE(679), 1, - sym_group_coordinate, - ACTIONS(154), 3, + STATE(510), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(1129), 2, + aux_sym_decimal_digit_token1, anon_sym__, - sym__numeral, - anon_sym_PLUS, - [17614] = 6, + [18111] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(845), 1, + anon_sym_AT, + ACTIONS(1133), 1, + anon_sym_function, + ACTIONS(1135), 1, + anon_sym_inline, + ACTIONS(1137), 1, + anon_sym_transition, + STATE(508), 1, + sym_comment, + STATE(512), 1, + aux_sym_function_declaration_repeat1, + STATE(549), 1, + sym_annotation, + [18136] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(176), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1058), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(256), 1, - sym_identifier, - STATE(512), 1, + STATE(509), 1, sym_comment, - STATE(145), 2, + STATE(575), 1, + sym_identifier, + STATE(611), 1, + sym_struct_component_initializer, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17634] = 7, + [18159] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(606), 1, - anon_sym_LPAREN, - ACTIONS(986), 1, - anon_sym_COLON_COLON, - ACTIONS(990), 1, + ACTIONS(1142), 1, + aux_sym_constant_identifier_token2, + ACTIONS(234), 2, + anon_sym_in, anon_sym_DOT, - ACTIONS(1121), 1, - anon_sym_LBRACE, - STATE(291), 1, - sym_function_arguments, - STATE(513), 1, + ACTIONS(1139), 2, + aux_sym_decimal_digit_token1, + anon_sym__, + STATE(510), 2, sym_comment, - [17656] = 6, + aux_sym_constant_identifier_repeat1, + [18178] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(514), 1, + STATE(511), 1, sym_comment, - STATE(589), 1, + STATE(575), 1, sym_identifier, - STATE(145), 2, + STATE(589), 1, + sym_struct_component_initializer, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17676] = 6, + [18201] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1147), 1, + anon_sym_AT, + STATE(549), 1, + sym_annotation, + STATE(512), 2, + sym_comment, + aux_sym_function_declaration_repeat1, + ACTIONS(1145), 3, + anon_sym_function, + anon_sym_inline, + anon_sym_transition, + [18220] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(400), 1, - sym_identifier, - STATE(515), 1, + ACTIONS(1150), 1, + anon_sym_RPAREN, + STATE(513), 1, sym_comment, - STATE(145), 2, + STATE(598), 1, + sym_identifier, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17696] = 6, + [18243] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(31), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(151), 1, - sym_branch, - STATE(516), 1, + ACTIONS(97), 1, + anon_sym_assert, + ACTIONS(99), 1, + anon_sym_assert_eq, + ACTIONS(101), 1, + anon_sym_assert_neq, + STATE(514), 1, sym_comment, - STATE(166), 2, - sym_block, - sym_conditional_statement, - [17716] = 4, + STATE(632), 3, + sym_assert_call, + sym_assert_equal_call, + sym_assert_not_equal_call, + [18264] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(241), 1, + ACTIONS(1131), 1, aux_sym_constant_identifier_token2, - STATE(517), 1, + STATE(505), 1, + aux_sym_constant_identifier_repeat1, + STATE(515), 1, sym_comment, - ACTIONS(243), 4, + ACTIONS(258), 2, anon_sym_in, + anon_sym_DOT, + ACTIONS(1129), 2, aux_sym_decimal_digit_token1, anon_sym__, - anon_sym_DOT, - [17732] = 6, + [18285] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(518), 1, + STATE(516), 1, sym_comment, - STATE(672), 1, + STATE(575), 1, sym_identifier, - STATE(145), 2, + STATE(576), 1, + sym_struct_component_initializer, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17752] = 5, + [18308] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1123), 1, - anon_sym_DOT, - STATE(154), 1, - aux_sym_constant_identifier_repeat1, - STATE(519), 1, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1111), 1, + aux_sym_variable_identifier_token1, + STATE(517), 1, sym_comment, - ACTIONS(523), 3, - aux_sym_decimal_digit_token1, - aux_sym_constant_identifier_token2, - anon_sym__, - [17770] = 6, + STATE(669), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18328] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(597), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1125), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(400), 1, + STATE(424), 1, sym_identifier, - STATE(520), 1, + STATE(518), 1, sym_comment, - STATE(141), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17790] = 6, + [18348] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(521), 1, + STATE(519), 1, sym_comment, - STATE(671), 1, + STATE(598), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17810] = 6, + [18368] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1152), 1, + anon_sym_DASH, + STATE(520), 1, + sym_comment, + STATE(668), 1, + sym_group_coordinate, + ACTIONS(169), 3, + anon_sym__, + sym__numeral, + anon_sym_PLUS, + [18386] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(522), 1, + STATE(521), 1, sym_comment, - STATE(669), 1, + STATE(633), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17830] = 7, + [18406] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(986), 1, - anon_sym_COLON_COLON, - ACTIONS(990), 1, - anon_sym_DOT, - ACTIONS(1127), 1, - anon_sym_LBRACE, - STATE(171), 1, - sym_function_arguments, - STATE(523), 1, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1111), 1, + aux_sym_variable_identifier_token1, + STATE(522), 1, sym_comment, - [17852] = 7, + STATE(607), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18426] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, anon_sym_import, ACTIONS(7), 1, anon_sym_program, - STATE(524), 1, + STATE(523), 1, sym_comment, - STATE(556), 1, + STATE(559), 1, aux_sym_source_file_repeat1, - STATE(584), 1, + STATE(610), 1, sym_import_declaration, - STATE(688), 1, + STATE(714), 1, sym_program_declaration, - [17874] = 5, + [18448] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1119), 1, - anon_sym_DASH, - STATE(525), 1, + ACTIONS(1154), 1, + anon_sym_DOT, + STATE(524), 1, sym_comment, - STATE(622), 1, - sym_group_coordinate, - ACTIONS(154), 3, + STATE(528), 1, + aux_sym_constant_identifier_repeat1, + ACTIONS(395), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, anon_sym__, - sym__numeral, - anon_sym_PLUS, - [17892] = 6, + [18466] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(129), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1115), 1, aux_sym_variable_identifier_token1, - STATE(526), 1, - sym_comment, - STATE(662), 1, + STATE(190), 1, sym_identifier, - STATE(145), 2, + STATE(525), 1, + sym_comment, + STATE(165), 2, sym_constant_identifier, sym_variable_identifier, - [17912] = 6, + [18486] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, - STATE(527), 1, + STATE(526), 1, sym_comment, - STATE(661), 1, + STATE(670), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17932] = 6, + [18506] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, - aux_sym_variable_identifier_token1, + ACTIONS(1152), 1, + anon_sym_DASH, + STATE(527), 1, + sym_comment, + STATE(694), 1, + sym_group_coordinate, + ACTIONS(169), 3, + anon_sym__, + sym__numeral, + anon_sym_PLUS, + [18524] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1156), 1, + anon_sym_DOT, + STATE(201), 1, + aux_sym_constant_identifier_repeat1, STATE(528), 1, sym_comment, - STATE(660), 1, - sym_identifier, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [17952] = 6, + ACTIONS(395), 3, + aux_sym_decimal_digit_token1, + aux_sym_constant_identifier_token2, + anon_sym__, + [18542] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, - aux_sym_variable_identifier_token1, + ACTIONS(385), 1, + anon_sym_LPAREN, + ACTIONS(1025), 1, + anon_sym_COLON_COLON, + ACTIONS(1029), 1, + anon_sym_DOT, + ACTIONS(1158), 1, + anon_sym_LBRACE, + STATE(221), 1, + sym_function_arguments, STATE(529), 1, sym_comment, - STATE(658), 1, - sym_identifier, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [17972] = 6, + [18564] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, STATE(530), 1, sym_comment, - STATE(656), 1, + STATE(673), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [17992] = 6, + [18584] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, - aux_sym_variable_identifier_token1, + ACTIONS(260), 1, + aux_sym_constant_identifier_token2, STATE(531), 1, sym_comment, - STATE(655), 1, - sym_identifier, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [18012] = 6, + ACTIONS(262), 4, + anon_sym_in, + aux_sym_decimal_digit_token1, + anon_sym__, + anon_sym_DOT, + [18600] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, STATE(532), 1, sym_comment, - STATE(654), 1, + STATE(698), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [18032] = 6, + [18620] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1129), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1131), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, STATE(533), 1, sym_comment, - STATE(539), 1, + STATE(690), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [18052] = 6, + [18640] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, STATE(534), 1, sym_comment, - STATE(646), 1, + STATE(691), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [18072] = 6, + [18660] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(167), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1111), 1, aux_sym_variable_identifier_token1, STATE(535), 1, sym_comment, - STATE(647), 1, + STATE(692), 1, sym_identifier, - STATE(145), 2, + STATE(171), 2, sym_constant_identifier, sym_variable_identifier, - [18092] = 6, + [18680] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, - aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, - aux_sym_variable_identifier_token1, - STATE(256), 1, - sym_identifier, + ACTIONS(117), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_LBRACE, + STATE(140), 1, + sym_branch, STATE(536), 1, sym_comment, - STATE(145), 2, - sym_constant_identifier, - sym_variable_identifier, - [18112] = 6, + STATE(154), 2, + sym_block, + sym_conditional_statement, + [18700] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(152), 1, + ACTIONS(387), 1, aux_sym_constant_identifier_token1, - ACTIONS(1078), 1, + ACTIONS(1160), 1, aux_sym_variable_identifier_token1, + STATE(424), 1, + sym_identifier, STATE(537), 1, sym_comment, - STATE(591), 1, - sym_identifier, - STATE(145), 2, + STATE(165), 2, sym_constant_identifier, sym_variable_identifier, - [18132] = 6, + [18720] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - ACTIONS(1135), 1, - anon_sym_DASH_GT, - STATE(242), 1, - sym_return_arrow, - STATE(431), 1, - sym_block, + ACTIONS(195), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1095), 1, + aux_sym_variable_identifier_token1, + STATE(259), 1, + sym_identifier, STATE(538), 1, sym_comment, - [18151] = 3, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18740] = 6, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1111), 1, + aux_sym_variable_identifier_token1, STATE(539), 1, sym_comment, - ACTIONS(1137), 4, - anon_sym_function, - anon_sym_inline, - anon_sym_transition, - anon_sym_AT, - [18164] = 6, + STATE(703), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18760] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - ACTIONS(1135), 1, - anon_sym_DASH_GT, - STATE(231), 1, - sym_return_arrow, - STATE(473), 1, - sym_block, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1111), 1, + aux_sym_variable_identifier_token1, STATE(540), 1, sym_comment, - [18183] = 6, + STATE(702), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18780] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - ACTIONS(1139), 1, - anon_sym_DASH_GT, - STATE(143), 1, - sym_return_arrow, - STATE(446), 1, - sym_block, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1111), 1, + aux_sym_variable_identifier_token1, STATE(541), 1, sym_comment, - [18202] = 6, + STATE(701), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18800] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - ACTIONS(1135), 1, - anon_sym_DASH_GT, - STATE(228), 1, - sym_return_arrow, - STATE(424), 1, - sym_block, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1111), 1, + aux_sym_variable_identifier_token1, STATE(542), 1, sym_comment, - [18221] = 3, - ACTIONS(3), 1, - aux_sym_comment_token1, - STATE(543), 1, - sym_comment, - ACTIONS(1141), 4, - anon_sym_function, - anon_sym_inline, - anon_sym_transition, - anon_sym_AT, - [18234] = 6, + STATE(700), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18820] = 7, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(606), 1, + ACTIONS(637), 1, anon_sym_LPAREN, - ACTIONS(986), 1, + ACTIONS(1025), 1, anon_sym_COLON_COLON, - ACTIONS(990), 1, + ACTIONS(1029), 1, anon_sym_DOT, - STATE(291), 1, + ACTIONS(1162), 1, + anon_sym_LBRACE, + STATE(288), 1, sym_function_arguments, + STATE(543), 1, + sym_comment, + [18842] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1111), 1, + aux_sym_variable_identifier_token1, + STATE(259), 1, + sym_identifier, STATE(544), 1, sym_comment, - [18253] = 6, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18862] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(276), 1, - anon_sym_LPAREN, - ACTIONS(986), 1, - anon_sym_COLON_COLON, - ACTIONS(990), 1, - anon_sym_DOT, - STATE(171), 1, - sym_function_arguments, + ACTIONS(1164), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1166), 1, + aux_sym_variable_identifier_token1, STATE(545), 1, sym_comment, - [18272] = 6, + STATE(557), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18882] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - ACTIONS(1139), 1, - anon_sym_DASH_GT, - STATE(142), 1, - sym_return_arrow, - STATE(412), 1, - sym_block, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1111), 1, + aux_sym_variable_identifier_token1, STATE(546), 1, sym_comment, - [18291] = 6, + STATE(695), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18902] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - ACTIONS(1135), 1, - anon_sym_DASH_GT, - STATE(241), 1, - sym_return_arrow, - STATE(454), 1, - sym_block, + ACTIONS(167), 1, + aux_sym_constant_identifier_token1, + ACTIONS(1111), 1, + aux_sym_variable_identifier_token1, STATE(547), 1, sym_comment, - [18310] = 6, + STATE(696), 1, + sym_identifier, + STATE(171), 2, + sym_constant_identifier, + sym_variable_identifier, + [18922] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - ACTIONS(1139), 1, + ACTIONS(1170), 1, anon_sym_DASH_GT, - STATE(135), 1, + STATE(133), 1, sym_return_arrow, - STATE(404), 1, + STATE(415), 1, sym_block, STATE(548), 1, sym_comment, - [18329] = 6, + [18941] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - ACTIONS(1135), 1, - anon_sym_DASH_GT, - STATE(236), 1, - sym_return_arrow, - STATE(466), 1, - sym_block, STATE(549), 1, sym_comment, - [18348] = 6, + ACTIONS(1172), 4, + anon_sym_function, + anon_sym_inline, + anon_sym_transition, + anon_sym_AT, + [18954] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - ACTIONS(1135), 1, + ACTIONS(1174), 1, anon_sym_DASH_GT, - STATE(225), 1, + STATE(188), 1, sym_return_arrow, - STATE(425), 1, + STATE(473), 1, sym_block, STATE(550), 1, sym_comment, - [18367] = 6, + [18973] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - ACTIONS(1139), 1, + ACTIONS(1170), 1, anon_sym_DASH_GT, - STATE(140), 1, + STATE(134), 1, sym_return_arrow, - STATE(414), 1, + STATE(416), 1, sym_block, STATE(551), 1, sym_comment, - [18386] = 6, + [18992] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - ACTIONS(1139), 1, + ACTIONS(1174), 1, anon_sym_DASH_GT, - STATE(137), 1, + STATE(180), 1, sym_return_arrow, - STATE(413), 1, + STATE(462), 1, sym_block, STATE(552), 1, sym_comment, - [18405] = 6, + [19011] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - ACTIONS(1135), 1, + ACTIONS(1170), 1, anon_sym_DASH_GT, - STATE(244), 1, + STATE(135), 1, sym_return_arrow, - STATE(470), 1, + STATE(408), 1, sym_block, STATE(553), 1, sym_comment, - [18424] = 6, + [19030] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - ACTIONS(1135), 1, + ACTIONS(1174), 1, anon_sym_DASH_GT, - STATE(230), 1, + STATE(164), 1, sym_return_arrow, - STATE(474), 1, + STATE(480), 1, sym_block, STATE(554), 1, sym_comment, - [18443] = 6, + [19049] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - ACTIONS(1139), 1, + ACTIONS(1174), 1, anon_sym_DASH_GT, - STATE(139), 1, + STATE(169), 1, sym_return_arrow, - STATE(434), 1, + STATE(436), 1, sym_block, STATE(555), 1, sym_comment, - [18462] = 5, + [19068] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1143), 1, - anon_sym_import, - ACTIONS(1146), 1, - anon_sym_program, - STATE(584), 1, - sym_import_declaration, - STATE(556), 2, + ACTIONS(1168), 1, + anon_sym_LBRACE, + ACTIONS(1174), 1, + anon_sym_DASH_GT, + STATE(177), 1, + sym_return_arrow, + STATE(475), 1, + sym_block, + STATE(556), 1, sym_comment, - aux_sym_source_file_repeat1, - [18479] = 5, + [19087] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1148), 1, - anon_sym_RPAREN, - ACTIONS(1150), 1, - anon_sym_COMMA, STATE(557), 1, sym_comment, - STATE(576), 1, - aux_sym_function_parameters_repeat1, - [18495] = 5, + ACTIONS(1176), 4, + anon_sym_function, + anon_sym_inline, + anon_sym_transition, + anon_sym_AT, + [19100] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1152), 1, - anon_sym_RBRACE, - ACTIONS(1154), 1, + ACTIONS(1180), 1, anon_sym_COMMA, - STATE(558), 1, + ACTIONS(1178), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(558), 2, sym_comment, - STATE(565), 1, - aux_sym_struct_expression_repeat1, - [18511] = 4, + aux_sym_function_arguments_repeat1, + [19115] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1156), 1, - anon_sym_RPAREN, - ACTIONS(1158), 1, - anon_sym_COMMA, + ACTIONS(1183), 1, + anon_sym_import, + ACTIONS(1186), 1, + anon_sym_program, + STATE(610), 1, + sym_import_declaration, STATE(559), 2, sym_comment, - aux_sym_function_parameters_repeat1, - [18525] = 4, + aux_sym_source_file_repeat1, + [19132] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1161), 1, - anon_sym_RPAREN, - ACTIONS(1163), 1, - anon_sym_COMMA, - STATE(560), 2, + ACTIONS(1168), 1, + anon_sym_LBRACE, + ACTIONS(1170), 1, + anon_sym_DASH_GT, + STATE(132), 1, + sym_return_arrow, + STATE(457), 1, + sym_block, + STATE(560), 1, sym_comment, - aux_sym_identifier_or_identifiers_repeat1, - [18539] = 5, + [19151] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1166), 1, - anon_sym_RPAREN, - ACTIONS(1168), 1, - anon_sym_COMMA, + ACTIONS(637), 1, + anon_sym_LPAREN, + ACTIONS(1025), 1, + anon_sym_COLON_COLON, + ACTIONS(1029), 1, + anon_sym_DOT, + STATE(288), 1, + sym_function_arguments, STATE(561), 1, sym_comment, - STATE(574), 1, - aux_sym_function_arguments_repeat1, - [18555] = 4, + [19170] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1170), 1, - anon_sym_RBRACE, - ACTIONS(1172), 1, - anon_sym_COMMA, - STATE(562), 2, + ACTIONS(1168), 1, + anon_sym_LBRACE, + ACTIONS(1174), 1, + anon_sym_DASH_GT, + STATE(179), 1, + sym_return_arrow, + STATE(465), 1, + sym_block, + STATE(562), 1, sym_comment, - aux_sym_struct_expression_repeat1, - [18569] = 5, + [19189] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1175), 1, - anon_sym_RPAREN, - ACTIONS(1177), 1, - anon_sym_COMMA, + ACTIONS(385), 1, + anon_sym_LPAREN, + ACTIONS(1025), 1, + anon_sym_COLON_COLON, + ACTIONS(1029), 1, + anon_sym_DOT, + STATE(221), 1, + sym_function_arguments, STATE(563), 1, sym_comment, - STATE(575), 1, - aux_sym_tuple_type_repeat1, - [18585] = 5, + [19208] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1084), 1, - anon_sym_RBRACE, - ACTIONS(1179), 1, - anon_sym_COMMA, - STATE(562), 1, - aux_sym_struct_expression_repeat1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + ACTIONS(1174), 1, + anon_sym_DASH_GT, + STATE(181), 1, + sym_return_arrow, + STATE(477), 1, + sym_block, STATE(564), 1, sym_comment, - [18601] = 5, + [19227] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1088), 1, - anon_sym_RBRACE, - ACTIONS(1181), 1, - anon_sym_COMMA, - STATE(562), 1, - aux_sym_struct_expression_repeat1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + ACTIONS(1170), 1, + anon_sym_DASH_GT, + STATE(136), 1, + sym_return_arrow, + STATE(422), 1, + sym_block, STATE(565), 1, sym_comment, - [18617] = 4, + [19246] = 6, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1183), 1, - anon_sym_RBRACE, - ACTIONS(1185), 1, - anon_sym_COMMA, - STATE(566), 2, + ACTIONS(1168), 1, + anon_sym_LBRACE, + ACTIONS(1174), 1, + anon_sym_DASH_GT, + STATE(176), 1, + sym_return_arrow, + STATE(454), 1, + sym_block, + STATE(566), 1, sym_comment, - aux_sym_struct_component_declarations_repeat1, - [18631] = 5, + [19265] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + ACTIONS(1170), 1, + anon_sym_DASH_GT, + STATE(137), 1, + sym_return_arrow, + STATE(444), 1, + sym_block, + STATE(567), 1, + sym_comment, + [19284] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(1188), 1, anon_sym_RPAREN, ACTIONS(1190), 1, anon_sym_COMMA, - STATE(567), 1, + STATE(568), 2, sym_comment, - STATE(574), 1, - aux_sym_function_arguments_repeat1, - [18647] = 5, + aux_sym_function_parameters_repeat1, + [19298] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1192), 1, + ACTIONS(1193), 1, anon_sym_RPAREN, - ACTIONS(1194), 1, + ACTIONS(1195), 1, anon_sym_COMMA, - STATE(568), 1, - sym_comment, - STATE(574), 1, + STATE(558), 1, aux_sym_function_arguments_repeat1, - [18663] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(1196), 1, - aux_sym_variable_identifier_token1, STATE(569), 1, sym_comment, - STATE(690), 1, - sym_this_program_id, - STATE(693), 1, - sym_program_name_literal, - [18679] = 5, + [19314] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1198), 1, + ACTIONS(1197), 1, anon_sym_RBRACE, - ACTIONS(1200), 1, + ACTIONS(1199), 1, anon_sym_COMMA, - STATE(564), 1, - aux_sym_struct_expression_repeat1, - STATE(570), 1, + STATE(570), 2, sym_comment, - [18695] = 4, + aux_sym_struct_component_declarations_repeat1, + [19328] = 5, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1202), 1, + anon_sym_RPAREN, ACTIONS(1204), 1, - anon_sym_COLON, + anon_sym_COMMA, + STATE(558), 1, + aux_sym_function_arguments_repeat1, STATE(571), 1, sym_comment, - ACTIONS(1202), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [18709] = 5, + [19344] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1196), 1, - aux_sym_variable_identifier_token1, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(1206), 1, + anon_sym_RBRACK, + STATE(558), 1, + aux_sym_function_arguments_repeat1, STATE(572), 1, sym_comment, - STATE(694), 1, - sym_program_id, - STATE(698), 1, - sym_program_name_literal, - [18725] = 5, + [19360] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(920), 1, - anon_sym_RBRACE, - ACTIONS(1206), 1, - anon_sym_COMMA, - STATE(566), 1, - aux_sym_struct_component_declarations_repeat1, + ACTIONS(1208), 1, + aux_sym_variable_identifier_token1, STATE(573), 1, sym_comment, - [18741] = 4, + STATE(717), 1, + sym_program_id, + STATE(718), 1, + sym_program_name_literal, + [19376] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(1208), 1, - anon_sym_RPAREN, - ACTIONS(1210), 1, - anon_sym_COMMA, - STATE(574), 2, + aux_sym_variable_identifier_token1, + STATE(574), 1, sym_comment, - aux_sym_function_arguments_repeat1, - [18755] = 4, + STATE(715), 1, + sym_this_program_id, + STATE(716), 1, + sym_program_name_literal, + [19392] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1213), 1, - anon_sym_RPAREN, - ACTIONS(1215), 1, - anon_sym_COMMA, - STATE(575), 2, + ACTIONS(1212), 1, + anon_sym_COLON, + STATE(575), 1, sym_comment, - aux_sym_tuple_type_repeat1, - [18769] = 5, + ACTIONS(1210), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [19406] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(916), 1, - anon_sym_RPAREN, - ACTIONS(1218), 1, + ACTIONS(1214), 1, + anon_sym_RBRACE, + ACTIONS(1216), 1, anon_sym_COMMA, - STATE(559), 1, - aux_sym_function_parameters_repeat1, STATE(576), 1, sym_comment, - [18785] = 5, + STATE(590), 1, + aux_sym_struct_expression_repeat1, + [19422] = 4, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1218), 1, + anon_sym_RPAREN, ACTIONS(1220), 1, - anon_sym_RBRACE, - ACTIONS(1222), 1, anon_sym_COMMA, - STATE(573), 1, - aux_sym_struct_component_declarations_repeat1, - STATE(577), 1, + STATE(577), 2, sym_comment, - [18801] = 5, + aux_sym_tuple_type_repeat1, + [19436] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1224), 1, + ACTIONS(1223), 1, anon_sym_RPAREN, - ACTIONS(1226), 1, + ACTIONS(1225), 1, anon_sym_COMMA, - STATE(574), 1, - aux_sym_function_arguments_repeat1, + STATE(577), 1, + aux_sym_tuple_type_repeat1, STATE(578), 1, sym_comment, - [18817] = 5, + [19452] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1228), 1, - anon_sym_RPAREN, - ACTIONS(1230), 1, + ACTIONS(1119), 1, + anon_sym_RBRACE, + ACTIONS(1227), 1, anon_sym_COMMA, - STATE(560), 1, - aux_sym_identifier_or_identifiers_repeat1, STATE(579), 1, sym_comment, - [18833] = 4, + STATE(585), 1, + aux_sym_struct_expression_repeat1, + [19468] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(429), 1, - sym_block, + ACTIONS(1229), 1, + anon_sym_RPAREN, + ACTIONS(1231), 1, + anon_sym_COMMA, + STATE(558), 1, + aux_sym_function_arguments_repeat1, STATE(580), 1, sym_comment, - [18846] = 3, + [19484] = 5, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1233), 1, + anon_sym_RPAREN, + ACTIONS(1235), 1, + anon_sym_COMMA, STATE(581), 1, sym_comment, - ACTIONS(1183), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [18857] = 4, + STATE(587), 1, + aux_sym_function_parameters_repeat1, + [19500] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(204), 1, - anon_sym_RPARENgroup, - ACTIONS(1232), 1, - sym__numeral, - STATE(582), 1, + ACTIONS(1237), 1, + anon_sym_RPAREN, + ACTIONS(1239), 1, + anon_sym_COMMA, + STATE(582), 2, sym_comment, - [18870] = 4, + aux_sym_identifier_or_identifiers_repeat1, + [19514] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(399), 1, - sym_block, + ACTIONS(1242), 1, + anon_sym_RBRACE, + ACTIONS(1244), 1, + anon_sym_COMMA, STATE(583), 1, sym_comment, - [18883] = 3, + STATE(584), 1, + aux_sym_struct_component_declarations_repeat1, + [19530] = 5, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(951), 1, + anon_sym_RBRACE, + ACTIONS(1246), 1, + anon_sym_COMMA, + STATE(570), 1, + aux_sym_struct_component_declarations_repeat1, STATE(584), 1, sym_comment, - ACTIONS(1234), 2, - anon_sym_import, - anon_sym_program, - [18894] = 4, + [19546] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(401), 1, - sym_block, - STATE(585), 1, + ACTIONS(1248), 1, + anon_sym_RBRACE, + ACTIONS(1250), 1, + anon_sym_COMMA, + STATE(585), 2, sym_comment, - [18907] = 4, + aux_sym_struct_expression_repeat1, + [19560] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(459), 1, - sym_block, + ACTIONS(1253), 1, + anon_sym_RPAREN, + ACTIONS(1255), 1, + anon_sym_COMMA, + STATE(582), 1, + aux_sym_identifier_or_identifiers_repeat1, STATE(586), 1, sym_comment, - [18920] = 4, + [19576] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_block, + ACTIONS(953), 1, + anon_sym_RPAREN, + ACTIONS(1257), 1, + anon_sym_COMMA, + STATE(568), 1, + aux_sym_function_parameters_repeat1, STATE(587), 1, sym_comment, - [18933] = 4, + [19592] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(403), 1, - sym_block, + ACTIONS(1259), 1, + anon_sym_RPAREN, + ACTIONS(1261), 1, + anon_sym_COMMA, + STATE(558), 1, + aux_sym_function_arguments_repeat1, STATE(588), 1, sym_comment, - [18946] = 3, + [19608] = 5, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(1265), 1, + anon_sym_COMMA, + STATE(579), 1, + aux_sym_struct_expression_repeat1, STATE(589), 1, sym_comment, - ACTIONS(1161), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [18957] = 4, + [19624] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(606), 1, - anon_sym_LPAREN, + ACTIONS(1125), 1, + anon_sym_RBRACE, + ACTIONS(1267), 1, + anon_sym_COMMA, + STATE(585), 1, + aux_sym_struct_expression_repeat1, STATE(590), 1, sym_comment, - STATE(635), 1, - sym_function_arguments, - [18970] = 4, + [19640] = 5, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1236), 1, + ACTIONS(705), 1, anon_sym_COMMA, - STATE(579), 1, - aux_sym_identifier_or_identifiers_repeat1, + ACTIONS(1269), 1, + anon_sym_RBRACK, + STATE(558), 1, + aux_sym_function_arguments_repeat1, STATE(591), 1, sym_comment, - [18983] = 4, + [19656] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(402), 1, - sym_block, + ACTIONS(223), 1, + anon_sym_RPARENgroup, + ACTIONS(1271), 1, + sym__numeral, STATE(592), 1, sym_comment, - [18996] = 3, + [19669] = 4, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(463), 1, + sym_block, STATE(593), 1, sym_comment, - ACTIONS(1238), 2, - anon_sym_import, - anon_sym_program, - [19007] = 4, + [19682] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1240), 1, - anon_sym_SLASH, - ACTIONS(1242), 1, - anon_sym_SEMI, + ACTIONS(1273), 1, + anon_sym_COMMA, + STATE(578), 1, + aux_sym_tuple_type_repeat1, STATE(594), 1, sym_comment, - [19020] = 4, + [19695] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - STATE(457), 1, + STATE(423), 1, sym_block, STATE(595), 1, sym_comment, - [19033] = 4, + [19708] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(453), 1, - sym_block, + ACTIONS(637), 1, + anon_sym_LPAREN, STATE(596), 1, sym_comment, - [19046] = 4, + STATE(697), 1, + sym_function_arguments, + [19721] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - STATE(398), 1, + STATE(472), 1, sym_block, STATE(597), 1, sym_comment, - [19059] = 4, + [19734] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(406), 1, - sym_block, STATE(598), 1, sym_comment, - [19072] = 3, + ACTIONS(1237), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [19745] = 3, ACTIONS(3), 1, aux_sym_comment_token1, STATE(599), 1, sym_comment, - ACTIONS(1170), 2, - anon_sym_RBRACE, + ACTIONS(1275), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [19083] = 3, + [19756] = 4, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_block, STATE(600), 1, sym_comment, - ACTIONS(1244), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [19094] = 4, + [19769] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - STATE(450), 1, + STATE(409), 1, sym_block, STATE(601), 1, sym_comment, - [19107] = 4, + [19782] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - STATE(439), 1, + STATE(482), 1, sym_block, STATE(602), 1, sym_comment, - [19120] = 3, + [19795] = 4, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(483), 1, + sym_block, STATE(603), 1, sym_comment, - ACTIONS(1246), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [19131] = 4, + [19808] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1248), 1, - anon_sym_COMMA, - STATE(563), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(406), 1, + sym_block, STATE(604), 1, sym_comment, - [19144] = 3, + [19821] = 4, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_block, STATE(605), 1, sym_comment, - ACTIONS(204), 2, - anon_sym_COMMA, - anon_sym_RPARENgroup, - [19155] = 4, + [19834] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(451), 1, - sym_block, + ACTIONS(637), 1, + anon_sym_LPAREN, STATE(606), 1, sym_comment, - [19168] = 4, + STATE(674), 1, + sym_function_arguments, + [19847] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(461), 1, - sym_block, + ACTIONS(1277), 1, + anon_sym_COMMA, + STATE(586), 1, + aux_sym_identifier_or_identifiers_repeat1, STATE(607), 1, sym_comment, - [19181] = 4, + [19860] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(410), 1, - sym_block, + ACTIONS(1279), 1, + anon_sym_SLASH, + ACTIONS(1281), 1, + anon_sym_SEMI, STATE(608), 1, sym_comment, - [19194] = 4, + [19873] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(458), 1, - sym_block, STATE(609), 1, sym_comment, - [19207] = 4, + ACTIONS(1283), 2, + anon_sym_import, + anon_sym_program, + [19884] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(426), 1, - sym_block, STATE(610), 1, sym_comment, - [19220] = 4, + ACTIONS(1285), 2, + anon_sym_import, + anon_sym_program, + [19895] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, - anon_sym_LBRACE, - STATE(411), 1, - sym_block, STATE(611), 1, sym_comment, - [19233] = 3, + ACTIONS(1248), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [19906] = 4, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(467), 1, + sym_block, STATE(612), 1, sym_comment, - ACTIONS(1213), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [19244] = 3, + [19919] = 4, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(414), 1, + sym_block, STATE(613), 1, sym_comment, - ACTIONS(1250), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [19255] = 3, + [19932] = 4, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(452), 1, + sym_block, STATE(614), 1, sym_comment, - ACTIONS(1252), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [19266] = 4, + [19945] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(606), 1, - anon_sym_LPAREN, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_block, STATE(615), 1, sym_comment, - STATE(664), 1, - sym_function_arguments, - [19279] = 3, + [19958] = 4, ACTIONS(3), 1, aux_sym_comment_token1, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(417), 1, + sym_block, STATE(616), 1, sym_comment, - ACTIONS(1156), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [19290] = 4, + [19971] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1133), 1, + ACTIONS(1168), 1, anon_sym_LBRACE, - STATE(456), 1, + STATE(420), 1, sym_block, STATE(617), 1, sym_comment, - [19303] = 3, + [19984] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1254), 1, - anon_sym_EQ_GT, STATE(618), 1, sym_comment, - [19313] = 3, + ACTIONS(1218), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [19995] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1256), 1, - anon_sym_COLON, STATE(619), 1, sym_comment, - [19323] = 3, + ACTIONS(1287), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [20006] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1258), 1, - anon_sym_RBRACE, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_block, STATE(620), 1, sym_comment, - [19333] = 3, + [20019] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1260), 1, - anon_sym_COLON, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(470), 1, + sym_block, STATE(621), 1, sym_comment, - [19343] = 3, + [20032] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1262), 1, - anon_sym_RPARENgroup, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_block, STATE(622), 1, sym_comment, - [19353] = 3, + [20045] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1264), 1, - anon_sym_SEMI, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(469), 1, + sym_block, STATE(623), 1, sym_comment, - [19363] = 3, + [20058] = 4, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1266), 1, - anon_sym_RPAREN, + ACTIONS(1168), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_block, STATE(624), 1, sym_comment, - [19373] = 3, + [20071] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1268), 1, - anon_sym_in, STATE(625), 1, sym_comment, - [19383] = 3, + ACTIONS(1197), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [20082] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1270), 1, - anon_sym_RPAREN, STATE(626), 1, sym_comment, - [19393] = 3, + ACTIONS(1289), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [20093] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1272), 1, - anon_sym_SEMI, STATE(627), 1, sym_comment, - [19403] = 3, + ACTIONS(1291), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [20104] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1274), 1, - anon_sym_RPAREN, STATE(628), 1, sym_comment, - [19413] = 3, + ACTIONS(223), 2, + anon_sym_COMMA, + anon_sym_RPARENgroup, + [20115] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1276), 1, - anon_sym_SLASH, STATE(629), 1, sym_comment, - [19423] = 3, + ACTIONS(1188), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [20126] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1278), 1, - anon_sym_COLON, + ACTIONS(1293), 1, + anon_sym_DOT, STATE(630), 1, sym_comment, - [19433] = 3, + [20136] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1280), 1, - aux_sym_address_literal_token1, + ACTIONS(1295), 1, + anon_sym_RPAREN, STATE(631), 1, sym_comment, - [19443] = 3, + [20146] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1282), 1, - anon_sym_EQ, + ACTIONS(1297), 1, + anon_sym_SEMI, STATE(632), 1, sym_comment, - [19453] = 3, + [20156] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1284), 1, - anon_sym_COLON_COLON, + ACTIONS(1299), 1, + anon_sym_LPAREN, STATE(633), 1, sym_comment, - [19463] = 3, + [20166] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1286), 1, - anon_sym_DOT, + ACTIONS(1301), 1, + anon_sym_finalize, STATE(634), 1, sym_comment, - [19473] = 3, + [20176] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1288), 1, - anon_sym_SEMI, + ACTIONS(1303), 1, + anon_sym_COLON, STATE(635), 1, sym_comment, - [19483] = 3, + [20186] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1290), 1, - anon_sym_height, + ACTIONS(1305), 1, + anon_sym_COLON, STATE(636), 1, sym_comment, - [19493] = 3, + [20196] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1292), 1, - anon_sym_caller, + ACTIONS(1307), 1, + anon_sym_RPAREN, STATE(637), 1, sym_comment, - [19503] = 3, + [20206] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1294), 1, - anon_sym_SLASH, + ACTIONS(1309), 1, + anon_sym_COMMA, STATE(638), 1, sym_comment, - [19513] = 3, + [20216] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1296), 1, - anon_sym_SEMI, + ACTIONS(1311), 1, + anon_sym_caller, STATE(639), 1, sym_comment, - [19523] = 3, + [20226] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1298), 1, - anon_sym_SEMI, + ACTIONS(1313), 1, + anon_sym_height, STATE(640), 1, sym_comment, - [19533] = 3, + [20236] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1300), 1, - anon_sym_COLON, + ACTIONS(1315), 1, + anon_sym_RBRACK, STATE(641), 1, sym_comment, - [19543] = 3, + [20246] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1302), 1, - anon_sym_RPAREN, + ACTIONS(1317), 1, + anon_sym_SLASH, STATE(642), 1, sym_comment, - [19553] = 3, + [20256] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1304), 1, - anon_sym_SEMI, + ACTIONS(1319), 1, + aux_sym_address_literal_token1, STATE(643), 1, sym_comment, - [19563] = 3, + [20266] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1306), 1, - anon_sym_RPAREN, + ACTIONS(1321), 1, + aux_sym_signature_literal_token1, STATE(644), 1, sym_comment, - [19573] = 3, + [20276] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1308), 1, - anon_sym_LPAREN, + ACTIONS(1323), 1, + anon_sym_SEMI, STATE(645), 1, sym_comment, - [19583] = 3, + [20286] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1310), 1, - anon_sym_LPAREN, + ACTIONS(1325), 1, + anon_sym_COLON_COLON, STATE(646), 1, sym_comment, - [19593] = 3, + [20296] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1312), 1, - anon_sym_LPAREN, + ACTIONS(1327), 1, + anon_sym_SEMI, STATE(647), 1, sym_comment, - [19603] = 3, + [20306] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1314), 1, - ts_builtin_sym_end, + ACTIONS(1329), 1, + anon_sym_height, STATE(648), 1, sym_comment, - [19613] = 3, + [20316] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1316), 1, - anon_sym_SEMI, + ACTIONS(1331), 1, + anon_sym_caller, STATE(649), 1, sym_comment, - [19623] = 3, + [20326] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1318), 1, - anon_sym_height, + ACTIONS(1333), 1, + anon_sym_SEMI, STATE(650), 1, sym_comment, - [19633] = 3, + [20336] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1320), 1, - anon_sym_caller, + ACTIONS(1335), 1, + anon_sym_DOT, STATE(651), 1, sym_comment, - [19643] = 3, + [20346] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(856), 1, - anon_sym_RPARENgroup, + ACTIONS(1337), 1, + anon_sym_LPAREN, STATE(652), 1, sym_comment, - [19653] = 3, + [20356] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1322), 1, - anon_sym_COMMA, + ACTIONS(1339), 1, + anon_sym_LPAREN, STATE(653), 1, sym_comment, - [19663] = 3, + [20366] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1324), 1, + ACTIONS(1341), 1, anon_sym_LPAREN, STATE(654), 1, sym_comment, - [19673] = 3, + [20376] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1326), 1, - anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_DOT, STATE(655), 1, sym_comment, - [19683] = 3, + [20386] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1328), 1, - anon_sym_LBRACE, + ACTIONS(1345), 1, + anon_sym_COLON_COLON, STATE(656), 1, sym_comment, - [19693] = 3, + [20396] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1330), 1, - anon_sym_RPAREN, + ACTIONS(1347), 1, + anon_sym_COLON_COLON, STATE(657), 1, sym_comment, - [19703] = 3, + [20406] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1332), 1, - anon_sym_COLON, + ACTIONS(1349), 1, + anon_sym_COLON_COLON, STATE(658), 1, sym_comment, - [19713] = 3, + [20416] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1334), 1, - anon_sym_COLON, + ACTIONS(1351), 1, + aux_sym_signature_literal_token1, STATE(659), 1, sym_comment, - [19723] = 3, + [20426] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1336), 1, - anon_sym_LPAREN, + ACTIONS(1353), 1, + aux_sym_address_literal_token1, STATE(660), 1, sym_comment, - [19733] = 3, + [20436] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1338), 1, - anon_sym_LPAREN, + ACTIONS(1355), 1, + anon_sym_DOT, STATE(661), 1, sym_comment, - [19743] = 3, + [20446] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1340), 1, - anon_sym_COLON, + ACTIONS(1357), 1, + anon_sym_DOT, STATE(662), 1, sym_comment, - [19753] = 3, + [20456] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1342), 1, - anon_sym_RBRACE, + ACTIONS(1359), 1, + sym__numeral, STATE(663), 1, sym_comment, - [19763] = 3, + [20466] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1344), 1, + ACTIONS(1361), 1, anon_sym_SEMI, STATE(664), 1, sym_comment, - [19773] = 3, + [20476] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1346), 1, - anon_sym_COLON, + ACTIONS(1363), 1, + anon_sym_RPAREN, STATE(665), 1, sym_comment, - [19783] = 3, + [20486] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1348), 1, - anon_sym_finalize, + ACTIONS(1365), 1, + anon_sym_RPAREN, STATE(666), 1, sym_comment, - [19793] = 3, + [20496] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1350), 1, - ts_builtin_sym_end, + ACTIONS(1367), 1, + anon_sym_SEMI, STATE(667), 1, sym_comment, - [19803] = 3, + [20506] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1352), 1, - anon_sym_record, + ACTIONS(1369), 1, + anon_sym_RPARENgroup, STATE(668), 1, sym_comment, - [19813] = 3, + [20516] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1354), 1, + ACTIONS(1371), 1, anon_sym_COLON, STATE(669), 1, sym_comment, - [19823] = 3, + [20526] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1356), 1, - anon_sym_EQ, + ACTIONS(1373), 1, + anon_sym_COLON, STATE(670), 1, sym_comment, - [19833] = 3, + [20536] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1358), 1, - anon_sym_LPAREN, + ACTIONS(1375), 1, + anon_sym_in, STATE(671), 1, sym_comment, - [19843] = 3, + [20546] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1360), 1, - anon_sym_COLON, + ACTIONS(1377), 1, + anon_sym_EQ, STATE(672), 1, sym_comment, - [19853] = 3, + [20556] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1362), 1, - anon_sym_RPAREN, + ACTIONS(1379), 1, + anon_sym_COLON, STATE(673), 1, sym_comment, - [19863] = 3, + [20566] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1364), 1, - anon_sym_DOT, + ACTIONS(1381), 1, + anon_sym_SEMI, STATE(674), 1, sym_comment, - [19873] = 3, + [20576] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1366), 1, - anon_sym_RPAREN, + ACTIONS(1383), 1, + anon_sym_record, STATE(675), 1, sym_comment, - [19883] = 3, + [20586] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1368), 1, - anon_sym_LBRACE, + ACTIONS(1385), 1, + anon_sym_SEMI, STATE(676), 1, sym_comment, - [19893] = 3, + [20596] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1370), 1, - anon_sym_RPAREN, + ACTIONS(1387), 1, + anon_sym_finalize, STATE(677), 1, sym_comment, - [19903] = 3, + [20606] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1372), 1, - sym_aleo_literal, + ACTIONS(1389), 1, + anon_sym_RPAREN, STATE(678), 1, sym_comment, - [19913] = 3, + [20616] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1374), 1, - anon_sym_RPARENgroup, + ACTIONS(1391), 1, + anon_sym_RBRACE, STATE(679), 1, sym_comment, - [19923] = 3, + [20626] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1376), 1, - anon_sym_DOT, + ACTIONS(887), 1, + anon_sym_RPARENgroup, STATE(680), 1, sym_comment, - [19933] = 3, + [20636] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1378), 1, - sym_leo_literal, + ACTIONS(1393), 1, + anon_sym_RBRACE, STATE(681), 1, sym_comment, - [19943] = 3, + [20646] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1380), 1, - anon_sym_DOT, + ACTIONS(1395), 1, + anon_sym_COLON, STATE(682), 1, sym_comment, - [19953] = 3, + [20656] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1382), 1, - anon_sym_COLON, + ACTIONS(1397), 1, + anon_sym_EQ_GT, STATE(683), 1, sym_comment, - [19963] = 3, + [20666] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1384), 1, - anon_sym_SEMI, + ACTIONS(1399), 1, + anon_sym_RPAREN, STATE(684), 1, sym_comment, - [19973] = 3, + [20676] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1386), 1, - aux_sym_address_literal_token1, + ACTIONS(1401), 1, + anon_sym_COLON, STATE(685), 1, sym_comment, - [19983] = 3, + [20686] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1388), 1, - anon_sym_COLON_COLON, + ACTIONS(1403), 1, + anon_sym_RPAREN, STATE(686), 1, sym_comment, - [19993] = 3, + [20696] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1390), 1, - anon_sym_COLON_COLON, + ACTIONS(1405), 1, + anon_sym_COLON, STATE(687), 1, sym_comment, - [20003] = 3, + [20706] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1392), 1, - ts_builtin_sym_end, + ACTIONS(1407), 1, + anon_sym_EQ, STATE(688), 1, sym_comment, - [20013] = 3, + [20716] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1394), 1, - anon_sym_finalize, + ACTIONS(1409), 1, + anon_sym_SLASH, STATE(689), 1, sym_comment, - [20023] = 3, + [20726] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1396), 1, - anon_sym_LBRACE, + ACTIONS(1411), 1, + anon_sym_LPAREN, STATE(690), 1, sym_comment, - [20033] = 3, + [20736] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1398), 1, - anon_sym_COLON_COLON, + ACTIONS(1413), 1, + anon_sym_LPAREN, STATE(691), 1, sym_comment, - [20043] = 3, + [20746] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1400), 1, - anon_sym_DOT, + ACTIONS(1415), 1, + anon_sym_LPAREN, STATE(692), 1, sym_comment, - [20053] = 3, + [20756] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1402), 1, - anon_sym_DOT, + ACTIONS(1417), 1, + ts_builtin_sym_end, STATE(693), 1, sym_comment, - [20063] = 3, + [20766] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1404), 1, - anon_sym_SEMI, + ACTIONS(1419), 1, + anon_sym_RPARENgroup, STATE(694), 1, sym_comment, - [20073] = 3, + [20776] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1406), 1, - anon_sym_DOT, + ACTIONS(1421), 1, + anon_sym_LPAREN, STATE(695), 1, sym_comment, - [20083] = 3, + [20786] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1408), 1, - anon_sym_DOT, + ACTIONS(1423), 1, + anon_sym_LBRACE, STATE(696), 1, sym_comment, - [20093] = 3, + [20796] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1410), 1, - anon_sym_COLON_COLON, + ACTIONS(1425), 1, + anon_sym_SEMI, STATE(697), 1, sym_comment, - [20103] = 3, + [20806] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1412), 1, - anon_sym_DOT, + ACTIONS(1427), 1, + anon_sym_LBRACE, STATE(698), 1, sym_comment, - [20113] = 3, + [20816] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1414), 1, - anon_sym_DOT, + ACTIONS(1429), 1, + anon_sym_SEMI, STATE(699), 1, sym_comment, - [20123] = 3, + [20826] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1416), 1, - anon_sym_LPAREN, + ACTIONS(1431), 1, + anon_sym_COLON, STATE(700), 1, sym_comment, - [20133] = 3, + [20836] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1418), 1, + ACTIONS(1433), 1, anon_sym_LPAREN, STATE(701), 1, sym_comment, - [20143] = 3, + [20846] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1420), 1, - anon_sym_SEMI, + ACTIONS(1435), 1, + anon_sym_LPAREN, STATE(702), 1, sym_comment, - [20153] = 3, + [20856] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1422), 1, - ts_builtin_sym_end, + ACTIONS(1437), 1, + anon_sym_COLON, STATE(703), 1, sym_comment, - [20163] = 3, + [20866] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1424), 1, - anon_sym_COMMA, + ACTIONS(1439), 1, + ts_builtin_sym_end, STATE(704), 1, sym_comment, - [20173] = 3, + [20876] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1426), 1, - ts_builtin_sym_end, + ACTIONS(1441), 1, + anon_sym_LBRACE, STATE(705), 1, sym_comment, - [20183] = 3, + [20886] = 3, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1428), 1, - anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_COLON_COLON, STATE(706), 1, sym_comment, - [20193] = 1, - ACTIONS(1430), 1, + [20896] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1445), 1, + anon_sym_DOT, + STATE(707), 1, + sym_comment, + [20906] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1447), 1, + anon_sym_RPAREN, + STATE(708), 1, + sym_comment, + [20916] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1449), 1, + sym_aleo_literal, + STATE(709), 1, + sym_comment, + [20926] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1451), 1, + anon_sym_DOT, + STATE(710), 1, + sym_comment, + [20936] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1453), 1, + anon_sym_DOT, + STATE(711), 1, + sym_comment, + [20946] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1455), 1, + anon_sym_SEMI, + STATE(712), 1, + sym_comment, + [20956] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1457), 1, + sym_leo_literal, + STATE(713), 1, + sym_comment, + [20966] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1459), 1, + ts_builtin_sym_end, + STATE(714), 1, + sym_comment, + [20976] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(715), 1, + sym_comment, + [20986] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1463), 1, + anon_sym_DOT, + STATE(716), 1, + sym_comment, + [20996] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1465), 1, + anon_sym_SEMI, + STATE(717), 1, + sym_comment, + [21006] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1467), 1, + anon_sym_DOT, + STATE(718), 1, + sym_comment, + [21016] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1469), 1, + anon_sym_RPAREN, + STATE(719), 1, + sym_comment, + [21026] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1471), 1, + ts_builtin_sym_end, + STATE(720), 1, + sym_comment, + [21036] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1473), 1, + anon_sym_COMMA, + STATE(721), 1, + sym_comment, + [21046] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1475), 1, + ts_builtin_sym_end, + STATE(722), 1, + sym_comment, + [21056] = 3, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(1477), 1, + anon_sym_COLON, + STATE(723), 1, + sym_comment, + [21066] = 1, + ACTIONS(1479), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(123)] = 0, - [SMALL_STATE(124)] = 60, - [SMALL_STATE(125)] = 118, - [SMALL_STATE(126)] = 176, - [SMALL_STATE(127)] = 232, - [SMALL_STATE(128)] = 292, - [SMALL_STATE(129)] = 345, - [SMALL_STATE(130)] = 401, - [SMALL_STATE(131)] = 457, - [SMALL_STATE(132)] = 513, - [SMALL_STATE(133)] = 567, - [SMALL_STATE(134)] = 619, - [SMALL_STATE(135)] = 675, - [SMALL_STATE(136)] = 754, - [SMALL_STATE(137)] = 807, - [SMALL_STATE(138)] = 886, - [SMALL_STATE(139)] = 939, - [SMALL_STATE(140)] = 1018, - [SMALL_STATE(141)] = 1097, - [SMALL_STATE(142)] = 1146, - [SMALL_STATE(143)] = 1225, - [SMALL_STATE(144)] = 1304, - [SMALL_STATE(145)] = 1352, - [SMALL_STATE(146)] = 1400, - [SMALL_STATE(147)] = 1448, - [SMALL_STATE(148)] = 1496, - [SMALL_STATE(149)] = 1544, - [SMALL_STATE(150)] = 1592, - [SMALL_STATE(151)] = 1686, - [SMALL_STATE(152)] = 1736, - [SMALL_STATE(153)] = 1783, - [SMALL_STATE(154)] = 1830, - [SMALL_STATE(155)] = 1879, - [SMALL_STATE(156)] = 1926, - [SMALL_STATE(157)] = 1973, - [SMALL_STATE(158)] = 2020, - [SMALL_STATE(159)] = 2069, - [SMALL_STATE(160)] = 2116, - [SMALL_STATE(161)] = 2163, - [SMALL_STATE(162)] = 2210, - [SMALL_STATE(163)] = 2257, - [SMALL_STATE(164)] = 2308, - [SMALL_STATE(165)] = 2355, - [SMALL_STATE(166)] = 2402, - [SMALL_STATE(167)] = 2449, - [SMALL_STATE(168)] = 2500, - [SMALL_STATE(169)] = 2583, - [SMALL_STATE(170)] = 2668, - [SMALL_STATE(171)] = 2747, - [SMALL_STATE(172)] = 2794, - [SMALL_STATE(173)] = 2841, - [SMALL_STATE(174)] = 2888, - [SMALL_STATE(175)] = 2937, - [SMALL_STATE(176)] = 2984, - [SMALL_STATE(177)] = 3031, - [SMALL_STATE(178)] = 3078, - [SMALL_STATE(179)] = 3157, - [SMALL_STATE(180)] = 3204, - [SMALL_STATE(181)] = 3251, - [SMALL_STATE(182)] = 3338, - [SMALL_STATE(183)] = 3385, - [SMALL_STATE(184)] = 3432, - [SMALL_STATE(185)] = 3479, - [SMALL_STATE(186)] = 3526, - [SMALL_STATE(187)] = 3573, - [SMALL_STATE(188)] = 3644, - [SMALL_STATE(189)] = 3691, - [SMALL_STATE(190)] = 3762, - [SMALL_STATE(191)] = 3809, - [SMALL_STATE(192)] = 3856, - [SMALL_STATE(193)] = 3927, - [SMALL_STATE(194)] = 3974, - [SMALL_STATE(195)] = 4021, - [SMALL_STATE(196)] = 4092, - [SMALL_STATE(197)] = 4139, - [SMALL_STATE(198)] = 4204, - [SMALL_STATE(199)] = 4251, - [SMALL_STATE(200)] = 4304, - [SMALL_STATE(201)] = 4371, - [SMALL_STATE(202)] = 4418, - [SMALL_STATE(203)] = 4495, - [SMALL_STATE(204)] = 4542, - [SMALL_STATE(205)] = 4589, - [SMALL_STATE(206)] = 4636, - [SMALL_STATE(207)] = 4683, - [SMALL_STATE(208)] = 4734, - [SMALL_STATE(209)] = 4785, - [SMALL_STATE(210)] = 4854, - [SMALL_STATE(211)] = 4903, - [SMALL_STATE(212)] = 4964, - [SMALL_STATE(213)] = 5011, - [SMALL_STATE(214)] = 5060, - [SMALL_STATE(215)] = 5107, - [SMALL_STATE(216)] = 5154, - [SMALL_STATE(217)] = 5205, - [SMALL_STATE(218)] = 5256, - [SMALL_STATE(219)] = 5307, - [SMALL_STATE(220)] = 5360, - [SMALL_STATE(221)] = 5417, - [SMALL_STATE(222)] = 5494, - [SMALL_STATE(223)] = 5551, - [SMALL_STATE(224)] = 5612, - [SMALL_STATE(225)] = 5659, - [SMALL_STATE(226)] = 5733, - [SMALL_STATE(227)] = 5807, - [SMALL_STATE(228)] = 5881, - [SMALL_STATE(229)] = 5955, - [SMALL_STATE(230)] = 6029, - [SMALL_STATE(231)] = 6103, - [SMALL_STATE(232)] = 6177, - [SMALL_STATE(233)] = 6251, - [SMALL_STATE(234)] = 6325, - [SMALL_STATE(235)] = 6399, - [SMALL_STATE(236)] = 6473, - [SMALL_STATE(237)] = 6547, - [SMALL_STATE(238)] = 6593, - [SMALL_STATE(239)] = 6667, - [SMALL_STATE(240)] = 6741, - [SMALL_STATE(241)] = 6815, - [SMALL_STATE(242)] = 6889, - [SMALL_STATE(243)] = 6963, - [SMALL_STATE(244)] = 7009, - [SMALL_STATE(245)] = 7083, - [SMALL_STATE(246)] = 7157, - [SMALL_STATE(247)] = 7231, - [SMALL_STATE(248)] = 7305, - [SMALL_STATE(249)] = 7379, - [SMALL_STATE(250)] = 7453, - [SMALL_STATE(251)] = 7527, - [SMALL_STATE(252)] = 7576, - [SMALL_STATE(253)] = 7625, - [SMALL_STATE(254)] = 7672, - [SMALL_STATE(255)] = 7716, - [SMALL_STATE(256)] = 7762, - [SMALL_STATE(257)] = 7808, - [SMALL_STATE(258)] = 7857, - [SMALL_STATE(259)] = 7906, - [SMALL_STATE(260)] = 7947, - [SMALL_STATE(261)] = 7994, - [SMALL_STATE(262)] = 8041, - [SMALL_STATE(263)] = 8086, - [SMALL_STATE(264)] = 8127, - [SMALL_STATE(265)] = 8167, - [SMALL_STATE(266)] = 8207, - [SMALL_STATE(267)] = 8247, - [SMALL_STATE(268)] = 8289, - [SMALL_STATE(269)] = 8329, - [SMALL_STATE(270)] = 8369, - [SMALL_STATE(271)] = 8409, - [SMALL_STATE(272)] = 8449, - [SMALL_STATE(273)] = 8489, - [SMALL_STATE(274)] = 8529, - [SMALL_STATE(275)] = 8569, - [SMALL_STATE(276)] = 8609, - [SMALL_STATE(277)] = 8649, - [SMALL_STATE(278)] = 8689, - [SMALL_STATE(279)] = 8729, - [SMALL_STATE(280)] = 8769, - [SMALL_STATE(281)] = 8809, - [SMALL_STATE(282)] = 8851, - [SMALL_STATE(283)] = 8891, - [SMALL_STATE(284)] = 8931, - [SMALL_STATE(285)] = 8971, - [SMALL_STATE(286)] = 9011, - [SMALL_STATE(287)] = 9051, - [SMALL_STATE(288)] = 9091, - [SMALL_STATE(289)] = 9131, - [SMALL_STATE(290)] = 9171, - [SMALL_STATE(291)] = 9211, - [SMALL_STATE(292)] = 9251, - [SMALL_STATE(293)] = 9291, - [SMALL_STATE(294)] = 9336, - [SMALL_STATE(295)] = 9381, - [SMALL_STATE(296)] = 9420, - [SMALL_STATE(297)] = 9482, - [SMALL_STATE(298)] = 9544, - [SMALL_STATE(299)] = 9620, - [SMALL_STATE(300)] = 9668, - [SMALL_STATE(301)] = 9720, - [SMALL_STATE(302)] = 9772, - [SMALL_STATE(303)] = 9832, - [SMALL_STATE(304)] = 9874, - [SMALL_STATE(305)] = 9922, - [SMALL_STATE(306)] = 9962, - [SMALL_STATE(307)] = 10002, - [SMALL_STATE(308)] = 10060, - [SMALL_STATE(309)] = 10116, - [SMALL_STATE(310)] = 10158, - [SMALL_STATE(311)] = 10200, - [SMALL_STATE(312)] = 10272, - [SMALL_STATE(313)] = 10346, - [SMALL_STATE(314)] = 10414, - [SMALL_STATE(315)] = 10482, - [SMALL_STATE(316)] = 10544, - [SMALL_STATE(317)] = 10606, - [SMALL_STATE(318)] = 10643, - [SMALL_STATE(319)] = 10680, - [SMALL_STATE(320)] = 10717, - [SMALL_STATE(321)] = 10754, - [SMALL_STATE(322)] = 10833, - [SMALL_STATE(323)] = 10912, - [SMALL_STATE(324)] = 10991, - [SMALL_STATE(325)] = 11070, - [SMALL_STATE(326)] = 11144, - [SMALL_STATE(327)] = 11180, - [SMALL_STATE(328)] = 11216, - [SMALL_STATE(329)] = 11292, - [SMALL_STATE(330)] = 11368, - [SMALL_STATE(331)] = 11444, - [SMALL_STATE(332)] = 11480, - [SMALL_STATE(333)] = 11556, - [SMALL_STATE(334)] = 11632, - [SMALL_STATE(335)] = 11708, - [SMALL_STATE(336)] = 11784, - [SMALL_STATE(337)] = 11858, - [SMALL_STATE(338)] = 11934, - [SMALL_STATE(339)] = 12010, - [SMALL_STATE(340)] = 12082, - [SMALL_STATE(341)] = 12120, - [SMALL_STATE(342)] = 12164, - [SMALL_STATE(343)] = 12208, - [SMALL_STATE(344)] = 12256, - [SMALL_STATE(345)] = 12304, - [SMALL_STATE(346)] = 12360, - [SMALL_STATE(347)] = 12398, - [SMALL_STATE(348)] = 12452, - [SMALL_STATE(349)] = 12504, - [SMALL_STATE(350)] = 12542, - [SMALL_STATE(351)] = 12610, - [SMALL_STATE(352)] = 12680, - [SMALL_STATE(353)] = 12744, - [SMALL_STATE(354)] = 12808, - [SMALL_STATE(355)] = 12866, - [SMALL_STATE(356)] = 12942, - [SMALL_STATE(357)] = 13000, - [SMALL_STATE(358)] = 13058, - [SMALL_STATE(359)] = 13116, - [SMALL_STATE(360)] = 13159, - [SMALL_STATE(361)] = 13222, - [SMALL_STATE(362)] = 13257, - [SMALL_STATE(363)] = 13314, - [SMALL_STATE(364)] = 13387, - [SMALL_STATE(365)] = 13460, - [SMALL_STATE(366)] = 13533, - [SMALL_STATE(367)] = 13604, - [SMALL_STATE(368)] = 13677, - [SMALL_STATE(369)] = 13714, - [SMALL_STATE(370)] = 13771, - [SMALL_STATE(371)] = 13806, - [SMALL_STATE(372)] = 13863, - [SMALL_STATE(373)] = 13936, - [SMALL_STATE(374)] = 14009, - [SMALL_STATE(375)] = 14062, - [SMALL_STATE(376)] = 14125, - [SMALL_STATE(377)] = 14198, - [SMALL_STATE(378)] = 14255, - [SMALL_STATE(379)] = 14306, - [SMALL_STATE(380)] = 14349, - [SMALL_STATE(381)] = 14396, - [SMALL_STATE(382)] = 14443, - [SMALL_STATE(383)] = 14512, - [SMALL_STATE(384)] = 14567, - [SMALL_STATE(385)] = 14604, - [SMALL_STATE(386)] = 14641, - [SMALL_STATE(387)] = 14708, - [SMALL_STATE(388)] = 14740, - [SMALL_STATE(389)] = 14795, - [SMALL_STATE(390)] = 14848, - [SMALL_STATE(391)] = 14903, - [SMALL_STATE(392)] = 14932, - [SMALL_STATE(393)] = 14965, - [SMALL_STATE(394)] = 14998, - [SMALL_STATE(395)] = 15028, - [SMALL_STATE(396)] = 15058, - [SMALL_STATE(397)] = 15092, - [SMALL_STATE(398)] = 15126, - [SMALL_STATE(399)] = 15150, - [SMALL_STATE(400)] = 15174, - [SMALL_STATE(401)] = 15196, - [SMALL_STATE(402)] = 15220, - [SMALL_STATE(403)] = 15244, - [SMALL_STATE(404)] = 15268, - [SMALL_STATE(405)] = 15292, - [SMALL_STATE(406)] = 15326, - [SMALL_STATE(407)] = 15350, - [SMALL_STATE(408)] = 15384, - [SMALL_STATE(409)] = 15418, - [SMALL_STATE(410)] = 15452, - [SMALL_STATE(411)] = 15476, - [SMALL_STATE(412)] = 15500, - [SMALL_STATE(413)] = 15524, - [SMALL_STATE(414)] = 15548, - [SMALL_STATE(415)] = 15572, - [SMALL_STATE(416)] = 15606, - [SMALL_STATE(417)] = 15637, - [SMALL_STATE(418)] = 15656, - [SMALL_STATE(419)] = 15675, - [SMALL_STATE(420)] = 15706, - [SMALL_STATE(421)] = 15737, - [SMALL_STATE(422)] = 15768, - [SMALL_STATE(423)] = 15799, - [SMALL_STATE(424)] = 15830, - [SMALL_STATE(425)] = 15848, - [SMALL_STATE(426)] = 15866, - [SMALL_STATE(427)] = 15884, - [SMALL_STATE(428)] = 15902, - [SMALL_STATE(429)] = 15930, - [SMALL_STATE(430)] = 15948, - [SMALL_STATE(431)] = 15966, - [SMALL_STATE(432)] = 15984, - [SMALL_STATE(433)] = 16002, - [SMALL_STATE(434)] = 16020, - [SMALL_STATE(435)] = 16038, - [SMALL_STATE(436)] = 16066, - [SMALL_STATE(437)] = 16084, - [SMALL_STATE(438)] = 16102, - [SMALL_STATE(439)] = 16120, - [SMALL_STATE(440)] = 16138, - [SMALL_STATE(441)] = 16158, - [SMALL_STATE(442)] = 16178, - [SMALL_STATE(443)] = 16198, - [SMALL_STATE(444)] = 16218, - [SMALL_STATE(445)] = 16238, - [SMALL_STATE(446)] = 16258, - [SMALL_STATE(447)] = 16276, - [SMALL_STATE(448)] = 16294, - [SMALL_STATE(449)] = 16314, - [SMALL_STATE(450)] = 16336, - [SMALL_STATE(451)] = 16354, - [SMALL_STATE(452)] = 16372, - [SMALL_STATE(453)] = 16390, - [SMALL_STATE(454)] = 16408, - [SMALL_STATE(455)] = 16426, - [SMALL_STATE(456)] = 16444, - [SMALL_STATE(457)] = 16462, - [SMALL_STATE(458)] = 16480, - [SMALL_STATE(459)] = 16498, - [SMALL_STATE(460)] = 16516, - [SMALL_STATE(461)] = 16534, - [SMALL_STATE(462)] = 16552, - [SMALL_STATE(463)] = 16570, - [SMALL_STATE(464)] = 16588, - [SMALL_STATE(465)] = 16606, - [SMALL_STATE(466)] = 16624, - [SMALL_STATE(467)] = 16642, - [SMALL_STATE(468)] = 16660, - [SMALL_STATE(469)] = 16678, - [SMALL_STATE(470)] = 16698, - [SMALL_STATE(471)] = 16716, - [SMALL_STATE(472)] = 16734, - [SMALL_STATE(473)] = 16752, - [SMALL_STATE(474)] = 16770, - [SMALL_STATE(475)] = 16788, - [SMALL_STATE(476)] = 16811, - [SMALL_STATE(477)] = 16830, - [SMALL_STATE(478)] = 16849, - [SMALL_STATE(479)] = 16878, - [SMALL_STATE(480)] = 16897, - [SMALL_STATE(481)] = 16926, - [SMALL_STATE(482)] = 16947, - [SMALL_STATE(483)] = 16970, - [SMALL_STATE(484)] = 16993, - [SMALL_STATE(485)] = 17016, - [SMALL_STATE(486)] = 17045, - [SMALL_STATE(487)] = 17064, - [SMALL_STATE(488)] = 17082, - [SMALL_STATE(489)] = 17108, - [SMALL_STATE(490)] = 17134, - [SMALL_STATE(491)] = 17160, - [SMALL_STATE(492)] = 17186, - [SMALL_STATE(493)] = 17212, - [SMALL_STATE(494)] = 17235, - [SMALL_STATE(495)] = 17258, - [SMALL_STATE(496)] = 17277, - [SMALL_STATE(497)] = 17298, - [SMALL_STATE(498)] = 17319, - [SMALL_STATE(499)] = 17340, - [SMALL_STATE(500)] = 17361, - [SMALL_STATE(501)] = 17384, - [SMALL_STATE(502)] = 17407, - [SMALL_STATE(503)] = 17426, - [SMALL_STATE(504)] = 17447, - [SMALL_STATE(505)] = 17472, - [SMALL_STATE(506)] = 17495, - [SMALL_STATE(507)] = 17518, - [SMALL_STATE(508)] = 17538, - [SMALL_STATE(509)] = 17558, - [SMALL_STATE(510)] = 17576, - [SMALL_STATE(511)] = 17596, - [SMALL_STATE(512)] = 17614, - [SMALL_STATE(513)] = 17634, - [SMALL_STATE(514)] = 17656, - [SMALL_STATE(515)] = 17676, - [SMALL_STATE(516)] = 17696, - [SMALL_STATE(517)] = 17716, - [SMALL_STATE(518)] = 17732, - [SMALL_STATE(519)] = 17752, - [SMALL_STATE(520)] = 17770, - [SMALL_STATE(521)] = 17790, - [SMALL_STATE(522)] = 17810, - [SMALL_STATE(523)] = 17830, - [SMALL_STATE(524)] = 17852, - [SMALL_STATE(525)] = 17874, - [SMALL_STATE(526)] = 17892, - [SMALL_STATE(527)] = 17912, - [SMALL_STATE(528)] = 17932, - [SMALL_STATE(529)] = 17952, - [SMALL_STATE(530)] = 17972, - [SMALL_STATE(531)] = 17992, - [SMALL_STATE(532)] = 18012, - [SMALL_STATE(533)] = 18032, - [SMALL_STATE(534)] = 18052, - [SMALL_STATE(535)] = 18072, - [SMALL_STATE(536)] = 18092, - [SMALL_STATE(537)] = 18112, - [SMALL_STATE(538)] = 18132, - [SMALL_STATE(539)] = 18151, - [SMALL_STATE(540)] = 18164, - [SMALL_STATE(541)] = 18183, - [SMALL_STATE(542)] = 18202, - [SMALL_STATE(543)] = 18221, - [SMALL_STATE(544)] = 18234, - [SMALL_STATE(545)] = 18253, - [SMALL_STATE(546)] = 18272, - [SMALL_STATE(547)] = 18291, - [SMALL_STATE(548)] = 18310, - [SMALL_STATE(549)] = 18329, - [SMALL_STATE(550)] = 18348, - [SMALL_STATE(551)] = 18367, - [SMALL_STATE(552)] = 18386, - [SMALL_STATE(553)] = 18405, - [SMALL_STATE(554)] = 18424, - [SMALL_STATE(555)] = 18443, - [SMALL_STATE(556)] = 18462, - [SMALL_STATE(557)] = 18479, - [SMALL_STATE(558)] = 18495, - [SMALL_STATE(559)] = 18511, - [SMALL_STATE(560)] = 18525, - [SMALL_STATE(561)] = 18539, - [SMALL_STATE(562)] = 18555, - [SMALL_STATE(563)] = 18569, - [SMALL_STATE(564)] = 18585, - [SMALL_STATE(565)] = 18601, - [SMALL_STATE(566)] = 18617, - [SMALL_STATE(567)] = 18631, - [SMALL_STATE(568)] = 18647, - [SMALL_STATE(569)] = 18663, - [SMALL_STATE(570)] = 18679, - [SMALL_STATE(571)] = 18695, - [SMALL_STATE(572)] = 18709, - [SMALL_STATE(573)] = 18725, - [SMALL_STATE(574)] = 18741, - [SMALL_STATE(575)] = 18755, - [SMALL_STATE(576)] = 18769, - [SMALL_STATE(577)] = 18785, - [SMALL_STATE(578)] = 18801, - [SMALL_STATE(579)] = 18817, - [SMALL_STATE(580)] = 18833, - [SMALL_STATE(581)] = 18846, - [SMALL_STATE(582)] = 18857, - [SMALL_STATE(583)] = 18870, - [SMALL_STATE(584)] = 18883, - [SMALL_STATE(585)] = 18894, - [SMALL_STATE(586)] = 18907, - [SMALL_STATE(587)] = 18920, - [SMALL_STATE(588)] = 18933, - [SMALL_STATE(589)] = 18946, - [SMALL_STATE(590)] = 18957, - [SMALL_STATE(591)] = 18970, - [SMALL_STATE(592)] = 18983, - [SMALL_STATE(593)] = 18996, - [SMALL_STATE(594)] = 19007, - [SMALL_STATE(595)] = 19020, - [SMALL_STATE(596)] = 19033, - [SMALL_STATE(597)] = 19046, - [SMALL_STATE(598)] = 19059, - [SMALL_STATE(599)] = 19072, - [SMALL_STATE(600)] = 19083, - [SMALL_STATE(601)] = 19094, - [SMALL_STATE(602)] = 19107, - [SMALL_STATE(603)] = 19120, - [SMALL_STATE(604)] = 19131, - [SMALL_STATE(605)] = 19144, - [SMALL_STATE(606)] = 19155, - [SMALL_STATE(607)] = 19168, - [SMALL_STATE(608)] = 19181, - [SMALL_STATE(609)] = 19194, - [SMALL_STATE(610)] = 19207, - [SMALL_STATE(611)] = 19220, - [SMALL_STATE(612)] = 19233, - [SMALL_STATE(613)] = 19244, - [SMALL_STATE(614)] = 19255, - [SMALL_STATE(615)] = 19266, - [SMALL_STATE(616)] = 19279, - [SMALL_STATE(617)] = 19290, - [SMALL_STATE(618)] = 19303, - [SMALL_STATE(619)] = 19313, - [SMALL_STATE(620)] = 19323, - [SMALL_STATE(621)] = 19333, - [SMALL_STATE(622)] = 19343, - [SMALL_STATE(623)] = 19353, - [SMALL_STATE(624)] = 19363, - [SMALL_STATE(625)] = 19373, - [SMALL_STATE(626)] = 19383, - [SMALL_STATE(627)] = 19393, - [SMALL_STATE(628)] = 19403, - [SMALL_STATE(629)] = 19413, - [SMALL_STATE(630)] = 19423, - [SMALL_STATE(631)] = 19433, - [SMALL_STATE(632)] = 19443, - [SMALL_STATE(633)] = 19453, - [SMALL_STATE(634)] = 19463, - [SMALL_STATE(635)] = 19473, - [SMALL_STATE(636)] = 19483, - [SMALL_STATE(637)] = 19493, - [SMALL_STATE(638)] = 19503, - [SMALL_STATE(639)] = 19513, - [SMALL_STATE(640)] = 19523, - [SMALL_STATE(641)] = 19533, - [SMALL_STATE(642)] = 19543, - [SMALL_STATE(643)] = 19553, - [SMALL_STATE(644)] = 19563, - [SMALL_STATE(645)] = 19573, - [SMALL_STATE(646)] = 19583, - [SMALL_STATE(647)] = 19593, - [SMALL_STATE(648)] = 19603, - [SMALL_STATE(649)] = 19613, - [SMALL_STATE(650)] = 19623, - [SMALL_STATE(651)] = 19633, - [SMALL_STATE(652)] = 19643, - [SMALL_STATE(653)] = 19653, - [SMALL_STATE(654)] = 19663, - [SMALL_STATE(655)] = 19673, - [SMALL_STATE(656)] = 19683, - [SMALL_STATE(657)] = 19693, - [SMALL_STATE(658)] = 19703, - [SMALL_STATE(659)] = 19713, - [SMALL_STATE(660)] = 19723, - [SMALL_STATE(661)] = 19733, - [SMALL_STATE(662)] = 19743, - [SMALL_STATE(663)] = 19753, - [SMALL_STATE(664)] = 19763, - [SMALL_STATE(665)] = 19773, - [SMALL_STATE(666)] = 19783, - [SMALL_STATE(667)] = 19793, - [SMALL_STATE(668)] = 19803, - [SMALL_STATE(669)] = 19813, - [SMALL_STATE(670)] = 19823, - [SMALL_STATE(671)] = 19833, - [SMALL_STATE(672)] = 19843, - [SMALL_STATE(673)] = 19853, - [SMALL_STATE(674)] = 19863, - [SMALL_STATE(675)] = 19873, - [SMALL_STATE(676)] = 19883, - [SMALL_STATE(677)] = 19893, - [SMALL_STATE(678)] = 19903, - [SMALL_STATE(679)] = 19913, - [SMALL_STATE(680)] = 19923, - [SMALL_STATE(681)] = 19933, - [SMALL_STATE(682)] = 19943, - [SMALL_STATE(683)] = 19953, - [SMALL_STATE(684)] = 19963, - [SMALL_STATE(685)] = 19973, - [SMALL_STATE(686)] = 19983, - [SMALL_STATE(687)] = 19993, - [SMALL_STATE(688)] = 20003, - [SMALL_STATE(689)] = 20013, - [SMALL_STATE(690)] = 20023, - [SMALL_STATE(691)] = 20033, - [SMALL_STATE(692)] = 20043, - [SMALL_STATE(693)] = 20053, - [SMALL_STATE(694)] = 20063, - [SMALL_STATE(695)] = 20073, - [SMALL_STATE(696)] = 20083, - [SMALL_STATE(697)] = 20093, - [SMALL_STATE(698)] = 20103, - [SMALL_STATE(699)] = 20113, - [SMALL_STATE(700)] = 20123, - [SMALL_STATE(701)] = 20133, - [SMALL_STATE(702)] = 20143, - [SMALL_STATE(703)] = 20153, - [SMALL_STATE(704)] = 20163, - [SMALL_STATE(705)] = 20173, - [SMALL_STATE(706)] = 20183, - [SMALL_STATE(707)] = 20193, + [SMALL_STATE(125)] = 0, + [SMALL_STATE(126)] = 56, + [SMALL_STATE(127)] = 114, + [SMALL_STATE(128)] = 174, + [SMALL_STATE(129)] = 234, + [SMALL_STATE(130)] = 292, + [SMALL_STATE(131)] = 345, + [SMALL_STATE(132)] = 401, + [SMALL_STATE(133)] = 487, + [SMALL_STATE(134)] = 573, + [SMALL_STATE(135)] = 659, + [SMALL_STATE(136)] = 745, + [SMALL_STATE(137)] = 831, + [SMALL_STATE(138)] = 917, + [SMALL_STATE(139)] = 973, + [SMALL_STATE(140)] = 1024, + [SMALL_STATE(141)] = 1077, + [SMALL_STATE(142)] = 1128, + [SMALL_STATE(143)] = 1179, + [SMALL_STATE(144)] = 1235, + [SMALL_STATE(145)] = 1285, + [SMALL_STATE(146)] = 1369, + [SMALL_STATE(147)] = 1419, + [SMALL_STATE(148)] = 1469, + [SMALL_STATE(149)] = 1523, + [SMALL_STATE(150)] = 1573, + [SMALL_STATE(151)] = 1623, + [SMALL_STATE(152)] = 1673, + [SMALL_STATE(153)] = 1757, + [SMALL_STATE(154)] = 1807, + [SMALL_STATE(155)] = 1857, + [SMALL_STATE(156)] = 1909, + [SMALL_STATE(157)] = 1959, + [SMALL_STATE(158)] = 2009, + [SMALL_STATE(159)] = 2059, + [SMALL_STATE(160)] = 2109, + [SMALL_STATE(161)] = 2159, + [SMALL_STATE(162)] = 2209, + [SMALL_STATE(163)] = 2259, + [SMALL_STATE(164)] = 2315, + [SMALL_STATE(165)] = 2396, + [SMALL_STATE(166)] = 2445, + [SMALL_STATE(167)] = 2526, + [SMALL_STATE(168)] = 2607, + [SMALL_STATE(169)] = 2660, + [SMALL_STATE(170)] = 2741, + [SMALL_STATE(171)] = 2822, + [SMALL_STATE(172)] = 2871, + [SMALL_STATE(173)] = 2952, + [SMALL_STATE(174)] = 3033, + [SMALL_STATE(175)] = 3114, + [SMALL_STATE(176)] = 3195, + [SMALL_STATE(177)] = 3276, + [SMALL_STATE(178)] = 3357, + [SMALL_STATE(179)] = 3438, + [SMALL_STATE(180)] = 3519, + [SMALL_STATE(181)] = 3600, + [SMALL_STATE(182)] = 3681, + [SMALL_STATE(183)] = 3762, + [SMALL_STATE(184)] = 3843, + [SMALL_STATE(185)] = 3924, + [SMALL_STATE(186)] = 4005, + [SMALL_STATE(187)] = 4086, + [SMALL_STATE(188)] = 4167, + [SMALL_STATE(189)] = 4248, + [SMALL_STATE(190)] = 4329, + [SMALL_STATE(191)] = 4382, + [SMALL_STATE(192)] = 4463, + [SMALL_STATE(193)] = 4544, + [SMALL_STATE(194)] = 4596, + [SMALL_STATE(195)] = 4648, + [SMALL_STATE(196)] = 4700, + [SMALL_STATE(197)] = 4748, + [SMALL_STATE(198)] = 4802, + [SMALL_STATE(199)] = 4854, + [SMALL_STATE(200)] = 4908, + [SMALL_STATE(201)] = 5002, + [SMALL_STATE(202)] = 5052, + [SMALL_STATE(203)] = 5100, + [SMALL_STATE(204)] = 5147, + [SMALL_STATE(205)] = 5216, + [SMALL_STATE(206)] = 5267, + [SMALL_STATE(207)] = 5318, + [SMALL_STATE(208)] = 5401, + [SMALL_STATE(209)] = 5486, + [SMALL_STATE(210)] = 5533, + [SMALL_STATE(211)] = 5580, + [SMALL_STATE(212)] = 5627, + [SMALL_STATE(213)] = 5706, + [SMALL_STATE(214)] = 5785, + [SMALL_STATE(215)] = 5856, + [SMALL_STATE(216)] = 5943, + [SMALL_STATE(217)] = 5990, + [SMALL_STATE(218)] = 6037, + [SMALL_STATE(219)] = 6086, + [SMALL_STATE(220)] = 6133, + [SMALL_STATE(221)] = 6180, + [SMALL_STATE(222)] = 6227, + [SMALL_STATE(223)] = 6298, + [SMALL_STATE(224)] = 6345, + [SMALL_STATE(225)] = 6392, + [SMALL_STATE(226)] = 6441, + [SMALL_STATE(227)] = 6488, + [SMALL_STATE(228)] = 6559, + [SMALL_STATE(229)] = 6606, + [SMALL_STATE(230)] = 6653, + [SMALL_STATE(231)] = 6724, + [SMALL_STATE(232)] = 6771, + [SMALL_STATE(233)] = 6836, + [SMALL_STATE(234)] = 6903, + [SMALL_STATE(235)] = 6950, + [SMALL_STATE(236)] = 7011, + [SMALL_STATE(237)] = 7072, + [SMALL_STATE(238)] = 7129, + [SMALL_STATE(239)] = 7186, + [SMALL_STATE(240)] = 7237, + [SMALL_STATE(241)] = 7286, + [SMALL_STATE(242)] = 7333, + [SMALL_STATE(243)] = 7380, + [SMALL_STATE(244)] = 7427, + [SMALL_STATE(245)] = 7474, + [SMALL_STATE(246)] = 7521, + [SMALL_STATE(247)] = 7568, + [SMALL_STATE(248)] = 7615, + [SMALL_STATE(249)] = 7662, + [SMALL_STATE(250)] = 7709, + [SMALL_STATE(251)] = 7756, + [SMALL_STATE(252)] = 7803, + [SMALL_STATE(253)] = 7850, + [SMALL_STATE(254)] = 7897, + [SMALL_STATE(255)] = 7946, + [SMALL_STATE(256)] = 7992, + [SMALL_STATE(257)] = 8042, + [SMALL_STATE(258)] = 8090, + [SMALL_STATE(259)] = 8140, + [SMALL_STATE(260)] = 8187, + [SMALL_STATE(261)] = 8234, + [SMALL_STATE(262)] = 8279, + [SMALL_STATE(263)] = 8321, + [SMALL_STATE(264)] = 8363, + [SMALL_STATE(265)] = 8404, + [SMALL_STATE(266)] = 8445, + [SMALL_STATE(267)] = 8486, + [SMALL_STATE(268)] = 8527, + [SMALL_STATE(269)] = 8574, + [SMALL_STATE(270)] = 8615, + [SMALL_STATE(271)] = 8656, + [SMALL_STATE(272)] = 8697, + [SMALL_STATE(273)] = 8738, + [SMALL_STATE(274)] = 8783, + [SMALL_STATE(275)] = 8824, + [SMALL_STATE(276)] = 8865, + [SMALL_STATE(277)] = 8906, + [SMALL_STATE(278)] = 8947, + [SMALL_STATE(279)] = 8988, + [SMALL_STATE(280)] = 9029, + [SMALL_STATE(281)] = 9070, + [SMALL_STATE(282)] = 9111, + [SMALL_STATE(283)] = 9158, + [SMALL_STATE(284)] = 9199, + [SMALL_STATE(285)] = 9240, + [SMALL_STATE(286)] = 9281, + [SMALL_STATE(287)] = 9322, + [SMALL_STATE(288)] = 9363, + [SMALL_STATE(289)] = 9404, + [SMALL_STATE(290)] = 9447, + [SMALL_STATE(291)] = 9496, + [SMALL_STATE(292)] = 9537, + [SMALL_STATE(293)] = 9586, + [SMALL_STATE(294)] = 9627, + [SMALL_STATE(295)] = 9670, + [SMALL_STATE(296)] = 9711, + [SMALL_STATE(297)] = 9752, + [SMALL_STATE(298)] = 9793, + [SMALL_STATE(299)] = 9834, + [SMALL_STATE(300)] = 9874, + [SMALL_STATE(301)] = 9914, + [SMALL_STATE(302)] = 9954, + [SMALL_STATE(303)] = 9994, + [SMALL_STATE(304)] = 10034, + [SMALL_STATE(305)] = 10077, + [SMALL_STATE(306)] = 10140, + [SMALL_STATE(307)] = 10193, + [SMALL_STATE(308)] = 10270, + [SMALL_STATE(309)] = 10331, + [SMALL_STATE(310)] = 10390, + [SMALL_STATE(311)] = 10435, + [SMALL_STATE(312)] = 10492, + [SMALL_STATE(313)] = 10555, + [SMALL_STATE(314)] = 10618, + [SMALL_STATE(315)] = 10659, + [SMALL_STATE(316)] = 10712, + [SMALL_STATE(317)] = 10753, + [SMALL_STATE(318)] = 10802, + [SMALL_STATE(319)] = 10851, + [SMALL_STATE(320)] = 10894, + [SMALL_STATE(321)] = 10937, + [SMALL_STATE(322)] = 11010, + [SMALL_STATE(323)] = 11085, + [SMALL_STATE(324)] = 11154, + [SMALL_STATE(325)] = 11223, + [SMALL_STATE(326)] = 11286, + [SMALL_STATE(327)] = 11331, + [SMALL_STATE(328)] = 11410, + [SMALL_STATE(329)] = 11489, + [SMALL_STATE(330)] = 11568, + [SMALL_STATE(331)] = 11643, + [SMALL_STATE(332)] = 11722, + [SMALL_STATE(333)] = 11759, + [SMALL_STATE(334)] = 11807, + [SMALL_STATE(335)] = 11851, + [SMALL_STATE(336)] = 11923, + [SMALL_STATE(337)] = 11997, + [SMALL_STATE(338)] = 12053, + [SMALL_STATE(339)] = 12129, + [SMALL_STATE(340)] = 12183, + [SMALL_STATE(341)] = 12259, + [SMALL_STATE(342)] = 12307, + [SMALL_STATE(343)] = 12371, + [SMALL_STATE(344)] = 12447, + [SMALL_STATE(345)] = 12505, + [SMALL_STATE(346)] = 12569, + [SMALL_STATE(347)] = 12613, + [SMALL_STATE(348)] = 12683, + [SMALL_STATE(349)] = 12751, + [SMALL_STATE(350)] = 12827, + [SMALL_STATE(351)] = 12879, + [SMALL_STATE(352)] = 12937, + [SMALL_STATE(353)] = 12971, + [SMALL_STATE(354)] = 13009, + [SMALL_STATE(355)] = 13067, + [SMALL_STATE(356)] = 13143, + [SMALL_STATE(357)] = 13219, + [SMALL_STATE(358)] = 13257, + [SMALL_STATE(359)] = 13333, + [SMALL_STATE(360)] = 13369, + [SMALL_STATE(361)] = 13407, + [SMALL_STATE(362)] = 13483, + [SMALL_STATE(363)] = 13541, + [SMALL_STATE(364)] = 13617, + [SMALL_STATE(365)] = 13653, + [SMALL_STATE(366)] = 13689, + [SMALL_STATE(367)] = 13765, + [SMALL_STATE(368)] = 13841, + [SMALL_STATE(369)] = 13917, + [SMALL_STATE(370)] = 13990, + [SMALL_STATE(371)] = 14027, + [SMALL_STATE(372)] = 14062, + [SMALL_STATE(373)] = 14135, + [SMALL_STATE(374)] = 14170, + [SMALL_STATE(375)] = 14243, + [SMALL_STATE(376)] = 14316, + [SMALL_STATE(377)] = 14389, + [SMALL_STATE(378)] = 14460, + [SMALL_STATE(379)] = 14497, + [SMALL_STATE(380)] = 14570, + [SMALL_STATE(381)] = 14607, + [SMALL_STATE(382)] = 14680, + [SMALL_STATE(383)] = 14747, + [SMALL_STATE(384)] = 14816, + [SMALL_STATE(385)] = 14879, + [SMALL_STATE(386)] = 14942, + [SMALL_STATE(387)] = 14999, + [SMALL_STATE(388)] = 15042, + [SMALL_STATE(389)] = 15085, + [SMALL_STATE(390)] = 15142, + [SMALL_STATE(391)] = 15189, + [SMALL_STATE(392)] = 15246, + [SMALL_STATE(393)] = 15293, + [SMALL_STATE(394)] = 15348, + [SMALL_STATE(395)] = 15401, + [SMALL_STATE(396)] = 15458, + [SMALL_STATE(397)] = 15509, + [SMALL_STATE(398)] = 15564, + [SMALL_STATE(399)] = 15595, + [SMALL_STATE(400)] = 15650, + [SMALL_STATE(401)] = 15703, + [SMALL_STATE(402)] = 15736, + [SMALL_STATE(403)] = 15769, + [SMALL_STATE(404)] = 15799, + [SMALL_STATE(405)] = 15829, + [SMALL_STATE(406)] = 15863, + [SMALL_STATE(407)] = 15887, + [SMALL_STATE(408)] = 15921, + [SMALL_STATE(409)] = 15945, + [SMALL_STATE(410)] = 15969, + [SMALL_STATE(411)] = 16003, + [SMALL_STATE(412)] = 16037, + [SMALL_STATE(413)] = 16061, + [SMALL_STATE(414)] = 16095, + [SMALL_STATE(415)] = 16119, + [SMALL_STATE(416)] = 16143, + [SMALL_STATE(417)] = 16167, + [SMALL_STATE(418)] = 16191, + [SMALL_STATE(419)] = 16225, + [SMALL_STATE(420)] = 16259, + [SMALL_STATE(421)] = 16283, + [SMALL_STATE(422)] = 16307, + [SMALL_STATE(423)] = 16331, + [SMALL_STATE(424)] = 16355, + [SMALL_STATE(425)] = 16377, + [SMALL_STATE(426)] = 16408, + [SMALL_STATE(427)] = 16439, + [SMALL_STATE(428)] = 16458, + [SMALL_STATE(429)] = 16489, + [SMALL_STATE(430)] = 16520, + [SMALL_STATE(431)] = 16551, + [SMALL_STATE(432)] = 16570, + [SMALL_STATE(433)] = 16601, + [SMALL_STATE(434)] = 16621, + [SMALL_STATE(435)] = 16641, + [SMALL_STATE(436)] = 16659, + [SMALL_STATE(437)] = 16677, + [SMALL_STATE(438)] = 16695, + [SMALL_STATE(439)] = 16713, + [SMALL_STATE(440)] = 16733, + [SMALL_STATE(441)] = 16753, + [SMALL_STATE(442)] = 16773, + [SMALL_STATE(443)] = 16793, + [SMALL_STATE(444)] = 16813, + [SMALL_STATE(445)] = 16831, + [SMALL_STATE(446)] = 16859, + [SMALL_STATE(447)] = 16877, + [SMALL_STATE(448)] = 16895, + [SMALL_STATE(449)] = 16913, + [SMALL_STATE(450)] = 16931, + [SMALL_STATE(451)] = 16949, + [SMALL_STATE(452)] = 16969, + [SMALL_STATE(453)] = 16987, + [SMALL_STATE(454)] = 17005, + [SMALL_STATE(455)] = 17023, + [SMALL_STATE(456)] = 17041, + [SMALL_STATE(457)] = 17059, + [SMALL_STATE(458)] = 17077, + [SMALL_STATE(459)] = 17095, + [SMALL_STATE(460)] = 17113, + [SMALL_STATE(461)] = 17135, + [SMALL_STATE(462)] = 17153, + [SMALL_STATE(463)] = 17171, + [SMALL_STATE(464)] = 17189, + [SMALL_STATE(465)] = 17207, + [SMALL_STATE(466)] = 17225, + [SMALL_STATE(467)] = 17243, + [SMALL_STATE(468)] = 17261, + [SMALL_STATE(469)] = 17279, + [SMALL_STATE(470)] = 17297, + [SMALL_STATE(471)] = 17315, + [SMALL_STATE(472)] = 17333, + [SMALL_STATE(473)] = 17351, + [SMALL_STATE(474)] = 17369, + [SMALL_STATE(475)] = 17387, + [SMALL_STATE(476)] = 17405, + [SMALL_STATE(477)] = 17423, + [SMALL_STATE(478)] = 17441, + [SMALL_STATE(479)] = 17469, + [SMALL_STATE(480)] = 17487, + [SMALL_STATE(481)] = 17505, + [SMALL_STATE(482)] = 17523, + [SMALL_STATE(483)] = 17541, + [SMALL_STATE(484)] = 17559, + [SMALL_STATE(485)] = 17580, + [SMALL_STATE(486)] = 17599, + [SMALL_STATE(487)] = 17622, + [SMALL_STATE(488)] = 17645, + [SMALL_STATE(489)] = 17664, + [SMALL_STATE(490)] = 17693, + [SMALL_STATE(491)] = 17712, + [SMALL_STATE(492)] = 17735, + [SMALL_STATE(493)] = 17758, + [SMALL_STATE(494)] = 17777, + [SMALL_STATE(495)] = 17796, + [SMALL_STATE(496)] = 17825, + [SMALL_STATE(497)] = 17854, + [SMALL_STATE(498)] = 17880, + [SMALL_STATE(499)] = 17906, + [SMALL_STATE(500)] = 17932, + [SMALL_STATE(501)] = 17958, + [SMALL_STATE(502)] = 17984, + [SMALL_STATE(503)] = 18002, + [SMALL_STATE(504)] = 18023, + [SMALL_STATE(505)] = 18044, + [SMALL_STATE(506)] = 18065, + [SMALL_STATE(507)] = 18088, + [SMALL_STATE(508)] = 18111, + [SMALL_STATE(509)] = 18136, + [SMALL_STATE(510)] = 18159, + [SMALL_STATE(511)] = 18178, + [SMALL_STATE(512)] = 18201, + [SMALL_STATE(513)] = 18220, + [SMALL_STATE(514)] = 18243, + [SMALL_STATE(515)] = 18264, + [SMALL_STATE(516)] = 18285, + [SMALL_STATE(517)] = 18308, + [SMALL_STATE(518)] = 18328, + [SMALL_STATE(519)] = 18348, + [SMALL_STATE(520)] = 18368, + [SMALL_STATE(521)] = 18386, + [SMALL_STATE(522)] = 18406, + [SMALL_STATE(523)] = 18426, + [SMALL_STATE(524)] = 18448, + [SMALL_STATE(525)] = 18466, + [SMALL_STATE(526)] = 18486, + [SMALL_STATE(527)] = 18506, + [SMALL_STATE(528)] = 18524, + [SMALL_STATE(529)] = 18542, + [SMALL_STATE(530)] = 18564, + [SMALL_STATE(531)] = 18584, + [SMALL_STATE(532)] = 18600, + [SMALL_STATE(533)] = 18620, + [SMALL_STATE(534)] = 18640, + [SMALL_STATE(535)] = 18660, + [SMALL_STATE(536)] = 18680, + [SMALL_STATE(537)] = 18700, + [SMALL_STATE(538)] = 18720, + [SMALL_STATE(539)] = 18740, + [SMALL_STATE(540)] = 18760, + [SMALL_STATE(541)] = 18780, + [SMALL_STATE(542)] = 18800, + [SMALL_STATE(543)] = 18820, + [SMALL_STATE(544)] = 18842, + [SMALL_STATE(545)] = 18862, + [SMALL_STATE(546)] = 18882, + [SMALL_STATE(547)] = 18902, + [SMALL_STATE(548)] = 18922, + [SMALL_STATE(549)] = 18941, + [SMALL_STATE(550)] = 18954, + [SMALL_STATE(551)] = 18973, + [SMALL_STATE(552)] = 18992, + [SMALL_STATE(553)] = 19011, + [SMALL_STATE(554)] = 19030, + [SMALL_STATE(555)] = 19049, + [SMALL_STATE(556)] = 19068, + [SMALL_STATE(557)] = 19087, + [SMALL_STATE(558)] = 19100, + [SMALL_STATE(559)] = 19115, + [SMALL_STATE(560)] = 19132, + [SMALL_STATE(561)] = 19151, + [SMALL_STATE(562)] = 19170, + [SMALL_STATE(563)] = 19189, + [SMALL_STATE(564)] = 19208, + [SMALL_STATE(565)] = 19227, + [SMALL_STATE(566)] = 19246, + [SMALL_STATE(567)] = 19265, + [SMALL_STATE(568)] = 19284, + [SMALL_STATE(569)] = 19298, + [SMALL_STATE(570)] = 19314, + [SMALL_STATE(571)] = 19328, + [SMALL_STATE(572)] = 19344, + [SMALL_STATE(573)] = 19360, + [SMALL_STATE(574)] = 19376, + [SMALL_STATE(575)] = 19392, + [SMALL_STATE(576)] = 19406, + [SMALL_STATE(577)] = 19422, + [SMALL_STATE(578)] = 19436, + [SMALL_STATE(579)] = 19452, + [SMALL_STATE(580)] = 19468, + [SMALL_STATE(581)] = 19484, + [SMALL_STATE(582)] = 19500, + [SMALL_STATE(583)] = 19514, + [SMALL_STATE(584)] = 19530, + [SMALL_STATE(585)] = 19546, + [SMALL_STATE(586)] = 19560, + [SMALL_STATE(587)] = 19576, + [SMALL_STATE(588)] = 19592, + [SMALL_STATE(589)] = 19608, + [SMALL_STATE(590)] = 19624, + [SMALL_STATE(591)] = 19640, + [SMALL_STATE(592)] = 19656, + [SMALL_STATE(593)] = 19669, + [SMALL_STATE(594)] = 19682, + [SMALL_STATE(595)] = 19695, + [SMALL_STATE(596)] = 19708, + [SMALL_STATE(597)] = 19721, + [SMALL_STATE(598)] = 19734, + [SMALL_STATE(599)] = 19745, + [SMALL_STATE(600)] = 19756, + [SMALL_STATE(601)] = 19769, + [SMALL_STATE(602)] = 19782, + [SMALL_STATE(603)] = 19795, + [SMALL_STATE(604)] = 19808, + [SMALL_STATE(605)] = 19821, + [SMALL_STATE(606)] = 19834, + [SMALL_STATE(607)] = 19847, + [SMALL_STATE(608)] = 19860, + [SMALL_STATE(609)] = 19873, + [SMALL_STATE(610)] = 19884, + [SMALL_STATE(611)] = 19895, + [SMALL_STATE(612)] = 19906, + [SMALL_STATE(613)] = 19919, + [SMALL_STATE(614)] = 19932, + [SMALL_STATE(615)] = 19945, + [SMALL_STATE(616)] = 19958, + [SMALL_STATE(617)] = 19971, + [SMALL_STATE(618)] = 19984, + [SMALL_STATE(619)] = 19995, + [SMALL_STATE(620)] = 20006, + [SMALL_STATE(621)] = 20019, + [SMALL_STATE(622)] = 20032, + [SMALL_STATE(623)] = 20045, + [SMALL_STATE(624)] = 20058, + [SMALL_STATE(625)] = 20071, + [SMALL_STATE(626)] = 20082, + [SMALL_STATE(627)] = 20093, + [SMALL_STATE(628)] = 20104, + [SMALL_STATE(629)] = 20115, + [SMALL_STATE(630)] = 20126, + [SMALL_STATE(631)] = 20136, + [SMALL_STATE(632)] = 20146, + [SMALL_STATE(633)] = 20156, + [SMALL_STATE(634)] = 20166, + [SMALL_STATE(635)] = 20176, + [SMALL_STATE(636)] = 20186, + [SMALL_STATE(637)] = 20196, + [SMALL_STATE(638)] = 20206, + [SMALL_STATE(639)] = 20216, + [SMALL_STATE(640)] = 20226, + [SMALL_STATE(641)] = 20236, + [SMALL_STATE(642)] = 20246, + [SMALL_STATE(643)] = 20256, + [SMALL_STATE(644)] = 20266, + [SMALL_STATE(645)] = 20276, + [SMALL_STATE(646)] = 20286, + [SMALL_STATE(647)] = 20296, + [SMALL_STATE(648)] = 20306, + [SMALL_STATE(649)] = 20316, + [SMALL_STATE(650)] = 20326, + [SMALL_STATE(651)] = 20336, + [SMALL_STATE(652)] = 20346, + [SMALL_STATE(653)] = 20356, + [SMALL_STATE(654)] = 20366, + [SMALL_STATE(655)] = 20376, + [SMALL_STATE(656)] = 20386, + [SMALL_STATE(657)] = 20396, + [SMALL_STATE(658)] = 20406, + [SMALL_STATE(659)] = 20416, + [SMALL_STATE(660)] = 20426, + [SMALL_STATE(661)] = 20436, + [SMALL_STATE(662)] = 20446, + [SMALL_STATE(663)] = 20456, + [SMALL_STATE(664)] = 20466, + [SMALL_STATE(665)] = 20476, + [SMALL_STATE(666)] = 20486, + [SMALL_STATE(667)] = 20496, + [SMALL_STATE(668)] = 20506, + [SMALL_STATE(669)] = 20516, + [SMALL_STATE(670)] = 20526, + [SMALL_STATE(671)] = 20536, + [SMALL_STATE(672)] = 20546, + [SMALL_STATE(673)] = 20556, + [SMALL_STATE(674)] = 20566, + [SMALL_STATE(675)] = 20576, + [SMALL_STATE(676)] = 20586, + [SMALL_STATE(677)] = 20596, + [SMALL_STATE(678)] = 20606, + [SMALL_STATE(679)] = 20616, + [SMALL_STATE(680)] = 20626, + [SMALL_STATE(681)] = 20636, + [SMALL_STATE(682)] = 20646, + [SMALL_STATE(683)] = 20656, + [SMALL_STATE(684)] = 20666, + [SMALL_STATE(685)] = 20676, + [SMALL_STATE(686)] = 20686, + [SMALL_STATE(687)] = 20696, + [SMALL_STATE(688)] = 20706, + [SMALL_STATE(689)] = 20716, + [SMALL_STATE(690)] = 20726, + [SMALL_STATE(691)] = 20736, + [SMALL_STATE(692)] = 20746, + [SMALL_STATE(693)] = 20756, + [SMALL_STATE(694)] = 20766, + [SMALL_STATE(695)] = 20776, + [SMALL_STATE(696)] = 20786, + [SMALL_STATE(697)] = 20796, + [SMALL_STATE(698)] = 20806, + [SMALL_STATE(699)] = 20816, + [SMALL_STATE(700)] = 20826, + [SMALL_STATE(701)] = 20836, + [SMALL_STATE(702)] = 20846, + [SMALL_STATE(703)] = 20856, + [SMALL_STATE(704)] = 20866, + [SMALL_STATE(705)] = 20876, + [SMALL_STATE(706)] = 20886, + [SMALL_STATE(707)] = 20896, + [SMALL_STATE(708)] = 20906, + [SMALL_STATE(709)] = 20916, + [SMALL_STATE(710)] = 20926, + [SMALL_STATE(711)] = 20936, + [SMALL_STATE(712)] = 20946, + [SMALL_STATE(713)] = 20956, + [SMALL_STATE(714)] = 20966, + [SMALL_STATE(715)] = 20976, + [SMALL_STATE(716)] = 20986, + [SMALL_STATE(717)] = 20996, + [SMALL_STATE(718)] = 21006, + [SMALL_STATE(719)] = 21016, + [SMALL_STATE(720)] = 21026, + [SMALL_STATE(721)] = 21036, + [SMALL_STATE(722)] = 21046, + [SMALL_STATE(723)] = 21056, + [SMALL_STATE(724)] = 21066, }; 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(707), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(440), - [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(700), - [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(701), - [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(706), - [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(695), - [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(441), - [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(674), - [82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(442), - [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(507), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(443), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(444), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(109), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(489), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(11), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(445), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(696), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(448), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(125), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(123), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(394), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(206), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(631), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(49), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(10), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7), - [136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_coordinate, 1), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_identifier, 1), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_identifier, 1), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_identifier, 1), REDUCE(sym_program_name_literal, 1), - [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_identifier, 2), - [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_identifier, 2), - [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_identifier, 1), - [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_identifier, 1), - [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(128), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), - [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_identifier, 2), - [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_identifier, 2), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_identifier, 2), REDUCE(sym_program_name_literal, 2), - [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_identifier_repeat1, 1), - [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 1), - [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_index, 1), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_index, 1), - [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_index_repeat1, 2), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_index_repeat1, 2), SHIFT_REPEAT(148), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_index_repeat1, 2), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), - [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_index, 2), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_index, 2), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_constant, 3), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_constant, 3), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_component_expression, 3, .production_id = 9), - [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_expression, 3, .production_id = 9), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_index_repeat1, 1), - [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_index_repeat1, 1), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branch, 3, .production_id = 12), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branch, 3, .production_id = 12), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decimal_digit, 1), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_digit, 1), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 1), - [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 1), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, .production_id = 30), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, .production_id = 30), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(243), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_height, 3), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_height, 3), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_self_caller, 3), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_caller, 3), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 12), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 12), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_expression, 3, .production_id = 12), - [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 2), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, .production_id = 8), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, .production_id = 8), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_component_expression, 3, .production_id = 9), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_component_expression, 3, .production_id = 9), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 13), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 13), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, .production_id = 12), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, .production_id = 12), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 1), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 3), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 3), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 14), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 14), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 15), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 15), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 16), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 16), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_free_function_call, 2), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_free_function_call, 2), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 6, .production_id = 12), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 6, .production_id = 12), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2, .production_id = 7), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2, .production_id = 7), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 9, .production_id = 40), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 9, .production_id = 40), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 6), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 6), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 5, .production_id = 27), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 5, .production_id = 27), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 10, .production_id = 42), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 10, .production_id = 42), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 34), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 34), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, .production_id = 9), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, .production_id = 9), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 5), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 5), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 4, .production_id = 27), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 4, .production_id = 27), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 4, .production_id = 12), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 4, .production_id = 12), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 17), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 17), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, .production_id = 27), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, .production_id = 27), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_literal, 2), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_literal, 2), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_affine_group_literal, 5), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_affine_group_literal, 5), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_call, 4, .production_id = 9), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_call, 4, .production_id = 9), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scalar_literal, 2), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scalar_literal, 2), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 18), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 18), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signed_literal, 2), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_literal, 2), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_identifier, 2), REDUCE(sym_program_name_literal, 2), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 19), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 19), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_function_call, 4), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_function_call, 4), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 4), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 4), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 3, .production_id = 12), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3, .production_id = 12), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, .production_id = 27), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, .production_id = 27), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 20), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 20), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_expression, 1), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 21), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 21), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_product_group_literal, 2), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_product_group_literal, 2), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 23), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 23), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 5), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 5), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_identifier, 1), REDUCE(sym_program_name_literal, 1), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 22), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 22), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_literal, 2), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_literal, 2), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_index_repeat1, 2), SHIFT_REPEAT(263), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(286), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(286), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_expression, 3, .production_id = 12), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_expression, 1), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_if, 1), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_if, 1), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_else, 1), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_else, 1), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2, .production_id = 12), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_initializer, 3, .production_id = 29), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_arrow, 1), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_arrow, 1), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(526), - [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(527), - [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(528), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(529), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(530), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(531), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(532), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(533), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_coordinate, 2), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 8, .production_id = 25), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 33), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locator, 3), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locator, 3), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 32), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 8, .production_id = 26), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 31), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 7, .production_id = 11), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 8, .production_id = 24), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 10, .production_id = 35), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 7, .production_id = 10), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 6, .production_id = 4), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 6, .production_id = 6), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 5, .production_id = 3), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_declarations, 2), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_declarations, 3), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 6, .production_id = 2), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 5), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 2), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 7, .production_id = 8), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 7, .production_id = 2), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_item, 1), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 6, .production_id = 5), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 1), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapping_declaration, 7), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 5, .production_id = 3), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 10, .production_id = 31), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 10, .production_id = 32), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 10, .production_id = 33), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 2), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_type, 1), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_type, 1), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_type, 1), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_type, 1), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_type, 1), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_type, 1), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_type, 1), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_group_type, 1), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_type, 1), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signed_type, 1), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scalar_type, 1), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scalar_type, 1), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 6, .production_id = 4), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 11, .production_id = 35), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_type, 1), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_type, 1), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 1), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 1), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 8, .production_id = 2), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 7, .production_id = 37), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 8, .production_id = 10), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 5), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 5), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 26), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 8, .production_id = 38), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 8, .production_id = 5), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 8, .production_id = 39), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 9, .production_id = 5), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, .production_id = 5), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 9, .production_id = 41), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 25), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 7, .production_id = 4), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 6, .production_id = 3), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 8, .production_id = 11), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 7, .production_id = 5), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 24), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 7, .production_id = 6), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 3), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 3), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 2), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 2), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 5, .production_id = 2), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 2), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(487), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(487), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(517), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(517), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), SHIFT_REPEAT(533), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_name_literal, 1), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_name_literal, 2), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 1), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(572), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 1), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(428), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_or_identifiers_repeat1, 2), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_or_identifiers_repeat1, 2), SHIFT_REPEAT(514), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_expression_repeat1, 2), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_expression_repeat1, 2), SHIFT_REPEAT(501), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_component_declarations_repeat1, 2), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_component_declarations_repeat1, 2), SHIFT_REPEAT(435), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_initializer, 1), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2, .production_id = 28), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2, .production_id = 28), SHIFT_REPEAT(24), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(226), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_declarations, 1), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_id, 3, .production_id = 1), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_id, 3, .production_id = 1), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_declaration, 4), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_declaration, 3), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_or_identifiers, 1), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_not_equal_call, 7, .production_id = 36), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_equal_call, 7, .production_id = 36), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_or_identifiers, 5), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_not_equal_call, 6, .production_id = 36), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_declaration, 5), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_equal_call, 6, .production_id = 36), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_declaration, 4), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_program_id, 3, .production_id = 1), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_or_identifiers, 4), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_type, 1), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_call, 4, .production_id = 29), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1426] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [9] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(439), + [12] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(654), + [15] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(653), + [18] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(652), + [21] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(710), + [24] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(440), + [27] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(651), + [30] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(441), + [33] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(526), + [36] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(442), + [39] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(433), + [42] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(95), + [45] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(498), + [48] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(11), + [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(443), + [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(711), + [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(451), + [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(129), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(127), + [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(403), + [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(226), + [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(643), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(644), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(104), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(9), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(98), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5), + [90] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(658), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_coordinate, 1), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(130), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), + [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_identifier, 2), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_identifier, 2), + [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_identifier, 1), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_identifier, 1), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_identifier, 1), REDUCE(sym_program_name_literal, 1), + [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_identifier, 2), + [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_identifier, 2), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_identifier, 2), REDUCE(sym_program_name_literal, 2), + [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_identifier, 1), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_identifier, 1), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_identifier_repeat1, 1), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 1), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 1), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 1), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branch, 3, .production_id = 12), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branch, 3, .production_id = 12), + [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_index, 1), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_index, 1), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, .production_id = 9), + [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, .production_id = 9), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 9, .production_id = 40), + [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 9, .production_id = 40), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 10, .production_id = 42), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 10, .production_id = 42), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_index_repeat1, 2), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_index_repeat1, 2), SHIFT_REPEAT(202), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_index_repeat1, 2), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 6, .production_id = 12), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 6, .production_id = 12), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 3), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 3), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, .production_id = 12), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, .production_id = 12), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, .production_id = 30), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, .production_id = 30), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 5), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 5), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, .production_id = 8), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, .production_id = 8), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 1), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_index, 2), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_index, 2), + [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_component_expression, 3, .production_id = 9), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_expression, 3, .production_id = 9), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_constant, 3), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_constant, 3), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_index_repeat1, 1), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_index_repeat1, 1), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_identifier, 1), REDUCE(sym_program_name_literal, 1), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_identifier, 2), REDUCE(sym_program_name_literal, 2), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(249), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decimal_digit, 1), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_digit, 1), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signed_literal, 2), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_literal, 2), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 20), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 20), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 13), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 13), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 14), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 14), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 15), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 15), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 5, .production_id = 27), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 5, .production_id = 27), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 5), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 5), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 6), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 6), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 16), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 16), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 17), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 17), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 34), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 34), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 2), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 12), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 12), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_expression, 3, .production_id = 12), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_self_caller, 3), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_caller, 3), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_height, 3), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_height, 3), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_free_function_call, 2), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_free_function_call, 2), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 4, .production_id = 27), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 4, .production_id = 27), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2, .production_id = 7), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2, .production_id = 7), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 4, .production_id = 12), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 4, .production_id = 12), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, .production_id = 27), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, .production_id = 27), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature_literal, 2), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature_literal, 2), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 18), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 18), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 19), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 19), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_component_expression, 3, .production_id = 9), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_component_expression, 3, .production_id = 9), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 21), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 21), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 22), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 22), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, .production_id = 23), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, .production_id = 23), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, .production_id = 27), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, .production_id = 27), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, .production_id = 27), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, .production_id = 27), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 3, .production_id = 12), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3, .production_id = 12), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_literal, 2), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_literal, 2), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 4), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 4), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_function_call, 4), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_function_call, 4), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scalar_literal, 2), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scalar_literal, 2), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_product_group_literal, 2), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_product_group_literal, 2), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_literal, 2), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_literal, 2), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_affine_group_literal, 5), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_affine_group_literal, 5), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_call, 4, .production_id = 9), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_call, 4, .production_id = 9), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_expression, 1), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_index_repeat1, 2), SHIFT_REPEAT(262), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(299), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(299), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_expression, 1), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_expression, 3, .production_id = 12), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_if, 1), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_if, 1), + [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_else, 1), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_else, 1), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2, .production_id = 12), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_initializer, 3, .production_id = 29), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_arrow, 1), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_arrow, 1), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(539), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(540), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(541), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(542), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(532), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(547), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(546), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), SHIFT_REPEAT(545), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 2), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_coordinate, 2), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 31), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 6, .production_id = 4), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 32), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 33), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 8, .production_id = 26), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 5, .production_id = 3), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 6, .production_id = 6), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 8, .production_id = 25), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 8, .production_id = 24), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 7, .production_id = 10), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 7, .production_id = 11), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 10, .production_id = 35), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locator, 3), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locator, 3), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_declarations, 3), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_declarations, 2), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_type, 1), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signed_type, 1), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 3), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 3), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 8, .production_id = 2), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 6, .production_id = 5), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 8, .production_id = 10), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 2), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_type, 1), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_type, 1), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_type, 1), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_type, 1), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_type, 1), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_type, 1), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_type, 1), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_group_type, 1), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scalar_type, 1), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scalar_type, 1), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 5, .production_id = 3), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 10, .production_id = 31), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 10, .production_id = 32), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 10, .production_id = 33), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 5), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 7, .production_id = 8), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_type, 1), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_type, 1), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 8, .production_id = 5), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 7, .production_id = 6), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 7, .production_id = 5), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_item, 1), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_declaration_repeat1, 1), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 6, .production_id = 4), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 25), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 11, .production_id = 35), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 1), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 1), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 8, .production_id = 11), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 5), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 7, .production_id = 37), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 2), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 5), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 7, .production_id = 4), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 8, .production_id = 38), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 8, .production_id = 39), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 2), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 6, .production_id = 3), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finalizer, 9, .production_id = 41), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 5, .production_id = 2), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 24), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 2), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 7, .production_id = 2), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 2), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapping_declaration, 7), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 6, .production_id = 2), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transition_declaration, 9, .production_id = 26), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_declaration, 9, .production_id = 5), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, .production_id = 5), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(502), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(502), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(531), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constant_identifier_repeat1, 2), SHIFT_REPEAT(531), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), SHIFT_REPEAT(545), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_name_literal, 1), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_name_literal, 2), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 1), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2, .production_id = 28), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2, .production_id = 28), SHIFT_REPEAT(45), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(573), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(445), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_component_declarations_repeat1, 2), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_component_declarations_repeat1, 2), SHIFT_REPEAT(478), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_initializer, 1), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(170), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 1), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_or_identifiers_repeat1, 2), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_or_identifiers_repeat1, 2), SHIFT_REPEAT(519), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_declarations, 1), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_expression_repeat1, 2), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_expression_repeat1, 2), SHIFT_REPEAT(509), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_program_id, 3, .production_id = 1), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_id, 3, .production_id = 1), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_declaration, 4), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_component_declaration, 3), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_or_identifiers, 1), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_call, 4, .production_id = 29), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_type, 1), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_not_equal_call, 7, .production_id = 36), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_equal_call, 7, .production_id = 36), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_or_identifiers, 4), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_declaration, 5), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_equal_call, 6, .production_id = 36), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program_declaration, 4), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_program_id, 3, .production_id = 1), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_not_equal_call, 6, .production_id = 36), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1475] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_or_identifiers, 5), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), }; #ifdef __cplusplus